Goal: Use ffmpeg to convert .m4v to anything Windows Media Player 11 will play without additional codecs. Preferably not .avi and as close to original quality as the output format will allow. My target audio is conversation so quality is less important.
Tried: I went here: http://support.apple.com/kb/HT1425 and downloaded Sample_iPod.m4v. It's attached for your convenience. Doing my best to distill various ffmpeg cmd line examples, I tried this:
ffmpeg -i sample_iPod.mv4 -r 25 -f mpeg -vcodec mpeg2video -ar 48000 -b 500k -ab 128k -s 320x240 -y sample.mpeg
I get audio, but very jumbled video. No suprise, I'm new to this and need help with the ffmpeg args.
Thanks in advance for any replies.
+ Reply to Thread
Results 1 to 4 of 4
-
-
Windows Vista/7 will be able to playback the file without any additional codecs however XP won't without
MPEG2 decoder installation. Maybe convert to MPEG1Video? or even WMV
ffmpeg -i FILE -sameq -vcodec wmv2 -acodec wmav2 outfile.wmv
is the command i used on the file you uploaded. See attached. -
Changing to wmv appears to work. I can't explain why vob did not.
But I had neglected to mention that my target machine is a locked down XP that can't download or install anything.
My development XP machine did work with stock wmp 11 and:
ffmpeg -i sample_iPod.mv4 -r 25 -f mpeg -vcodec mpeg2video -s 320x240 -y sample.mpeg
But it also has Nero and Roxio suites installed. The same file on the target or with any other permutations I tried (mpeg1video/-acodec anything) either had jumbled video and/or no audio. Clearly there's a bunch I don't understand.
Thanks for the quick response!
Similar Threads
-
Convert/Mux .m2v and .wav into mpeg for DVD??
By Beavis in forum Video ConversionReplies: 2Last Post: 22nd Jul 2011, 14:46 -
Newbie - ffmpeg args for transcoding 1080p to 720p, etc.
By awatelet in forum Newbie / General discussionsReplies: 2Last Post: 28th Apr 2011, 13:21 -
How to convert subtitles in a m4v file
By roughsporty in forum MacReplies: 0Last Post: 19th Mar 2011, 04:16 -
Using ffmpeg command line to convert a .vob(DVD) to avi/mpeg
By alfo666 in forum Newbie / General discussionsReplies: 1Last Post: 13th Sep 2009, 03:14 -
How Do I Convert M4V to MP4
By streetracer096 in forum Newbie / General discussionsReplies: 3Last Post: 24th Jul 2007, 04:17