windows - How to transcode video formats -
we're converting bunch of .rm files .mp4 , wondered best way is. here details:
- convert files h.264.
- keep filename add .mp4 end.
- also extract jpg image of video @ 5 seconds in each file , name original filename + .jpg.
this on windows system. there free tool recommend this? thank you.
ffmpeg pretty defacto standard app transcoding video.
convert h264/mp4:
ffmpeg.exe -i inputfile.rm -vcodec libx264 -s 320x240 -acodec libfaac outputfile.mp4
Comments
Post a Comment