最近、SONYのHDR-XR520でとった映像をパソコンにおとして、動画をつくっています。 ffmpeg というパワフルなマルチメディアアプリをつかって、簡単にできます。 このソフトをつかえば、動画からJPG及びPNGファイル形式で画像をおとせます。 次回は動画をアップします。 Two pass encoding ffmpeg -y -i input.mts -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 1 -vpre fastfirstpass -an output.mp4 ffmpeg -y -i input.mts -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 説明 -y : overwrite file -i input.mts : input file, where input.mts is the file name -r 30000/1001 : frame rate (30000/1001 = 29.97 fps) -b 2M : bitrate, where 2M = 2 megabits -bt 4M : tolerance, where 4M = 4 megabits -vcodec libx264 : video codec using the x263 library -pass 1 or 2 : the pass number -vpre fastfirstpass or hq : the quality of the encoding -an : disables audio encoding -acodec libfaac : audio codec using the faac library -ac 2 : set the number of audio channels to 2 -ar 48000 : set the audio sampling frequency to 48000 Hz - ab 192k : set the audio bitrate to 192 kilobits outp...