View Single Post
  #27  
Old 02-20-2010, 12:52 AM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: FLV converters: Converting .FLV videos


Quote:
Originally Posted by hyc View Post
On Linux most of the current players can play FLV files directly. But sometimes I run across machines with outdated software, then I move the data into some other container. MP4 or MKV usually work.

Code:
ffmpeg -i somefile.flv -vcodec copy -acodec copy somefile.mkv
Takes just a few seconds because it transfers the raw data unchanged, only the file headers are modified.
ffmpeg does work well for moving from a flv container to a mkv container, but in my experience it doesn't work well for moving to a mp4 container; at least if you want to be able to ff/rew or skip through the resulting output file with any of the many media players I've tried.
Reply With Quote