up vote 1 down vote favorite
share [g+] share [fb]

How do I convert live streaming flv video to mp4?

link|improve this question
feedback

4 Answers

Capture the FLV with a capture application and encode it with an mp4 encoder.

link|improve this answer
feedback

I believe TVersity has this functionality.

link|improve this answer
feedback

Quicktime API has QTUtils.toOSType where third choice is mpg4

 ExportChoice[] choices = new ExportChoice[3];
 choices[0] = new ExportChoice("Quicktime Movie", StdQTConstants.kQTFileTypeMovie);
 choices[1] = new ExportChoice("AVI file", StdQTConstants.kQTFileTypeAVI);
 choices[2] = new ExportChoice("MPEG-4 file", QTUtils.toOSType("mpg4"));
 QTFile file = QTFile.standardGetFilePreview(QTFile.kStandardQTFileTypes);
 OpenMovieFile omFile = OpenMovieFile.asRead(file);
 Movie movie = Movie.fromFile(omFile);
 JComboBox exportCombo = new JComboBox(choices);
 JOptionPane.showMessageDialog (null, exportCombo, "Choose exporter",JOptionPane.PLAIN_MESSAGE);
ExportChoice choice = (ExportChoice)exportCombo.getSelectedItem();
MovieExporter exporter = new MovieExporter(choice.subtype);             
QTFile saveFile = new QTFile(new java.io.File("Untitled"));
movie.setProgressProc();
movie.convertToFile(null,saveFile,                                StdQTConstants.kQTFileTypeMovie,StdQTConstants.kMoviePlayer,                         IOConstants.smSystemScript,                              StdQTConstants.showUserSettingsDialog |                               StdQTConstants.movieToFileOnlyExport |                              StdQTConstants.movieFileSpecValid,                              exporter);
link|improve this answer
feedback

How about handbrake? It is a good and free encoding tool! I usually use Handbrake and ifunia media converter in combination, works great for me. Handbrake for straight convert and use ifunia for advanced converting and editing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown