View Single Post
  #1  
Old 09-03-2009, 01:15 PM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Repairing FLV files by remuxing them with freeware FLV Extract and mp4box


The index of the saved .flv file can be off. This may cause playability issues with some .flv players.

You can remux the file into a .mp4 file quickly without any transcoding, and the index will be correct.

Get FLV Extract and mp4box.

Using FLV Extract, drag the saved .flv file from GetFLV to the FLV Extract window. It will demux into video and audio files, ending in .264 and .aac

Then, use mp4box to remux those files into an .mp4, like this:

Code:
mp4box.exe -add "filename.264:fps=23.976" -add "filename.aac" "filename_output.mp4"
Where "filename" is the name of the .264 and .acc files. The output .mp4 will play properly and have the correct time length.
Reply With Quote