View Single Post
  #26  
Old 02-19-2010, 06:37 PM
hyc hyc is offline
RTMPdump team
 
Join Date: Dec 2009
Posts: 169
hyc will become famous soon enoughhyc will become famous soon enough
Default

Re: FLV converters: Converting .FLV videos


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.
Reply With Quote