Does anyone know a simple way to convert a current mp4 video in a format readable by SGI media tools?










diegel wrote: Does anyone know a simple way to convert a current mp4 video in a format readable by SGI media tools?
Possibly, but I was not able to find a combination of options that work so far.hamei wrote: Mplayer/mencoder won't do that ?
diegel wrote: Does anyone know a simple way to convert a current mp4 video in a format readable by SGI media tools?
diegel wrote: Does anyone know a simple way to convert a current mp4 video in a format readable by SGI media tools?
silicium wrote: Can SGI Moviemaker create a short blank clip without former media, or someone share a sample, to examine it with ffmpeg or vlc on a linux box, then hopefully convert mp4 to the same format that Moviemaker will open ?
Code: Select all
#convert to Mjpeg video encoding and ac3 audio encoding, works in IRIX
>ffmpeg -i Blue_belt.mp4 -vcodec mjpeg -acodec ac3 Blue_belt.mov
#convert to MPEG-1 (works with discreet, but still shit)
>ffmpeg -i Blue_belt.mp4 Blue_belt.mpeg
#BEST SO FAR
#SGI RGB image format (defaults to pix_fmt = rgb24) 169MB mp4 = 12GB RGB files
>ffmpeg -i Blue_belt.mp4 -r 30 -f image2 -vcodec sgi dir/%06d.rgb
Code: Select all
#QuickTime mov with cinepak (slowww!!! fucking aborted this shit, try again later)
>ffmpeg -i Blue_belt.mp4 -vcodec cinepak Blue_belt.mov
#JPEG mov (sorta slow) with mp3 audio
>ffmpeg -i Blue_belt.mp4 -vcodec libopenjpeg -acodec libmp3lame Blue_belt.mov
#MOV RLE (good results?)
>ffmpeg -i Blue_belt.mp4 -vcodec qtrle -acodec libmp3lame Blue_belt.mov
#uncompressed avi?
>ffmpeg -i Blue_belt.mp4 -f rawvideo -vcodec rawvideo -pix_fmt rgb8 Blue_belt.avi
#uncompressed mov?
>ffmpeg -i Blue_belt.mp4 -f rawvideo -an Blue_belt.mov
Code: Select all
ffmpeg -i INPUT.mp4 -vn -c:a mp2 -b:a 224k sound.mp2
Code: Select all
ffmpeg -i INPUT.mp4 -c:v mpeg1video -f mpeg1video -vf scale=320:-1 -b:v 1150k -minrate 1150k -maxrate 1150k video.m1v
Code: Select all
mplex -r 1411 sound.mp2 video.m1v -o OUTPUT.mpg
Code: Select all
ffmpeg -i INPUT.mp4 -c:v mpeg1video -f mpeg1video -vf scale=320:-1,pad=320:240:0:30 -b:v 1150k -minrate 1150k -maxrate 1150k video.m1v