Open GoogleCodeExporter opened 8 years ago
I receive this problem too. My flv file does not have a video stream
Original comment by sid.ksha...@gmail.com
on 16 Feb 2011 at 3:46
The trick lies in creating in adding an audio stream on the Writer. This code
snippet works for me in extracting an audio stream from a flv and transcoding
it to an mp3.
IMediaReader reader = ToolFactory.makeReader(filename + ".flv");
IMediaWriter writer = ToolFactory.makeWriter(filename + ".mp3", reader);
int sampleRate = 22050;
int channels = 1;
writer.addAudioStream(0, 0, ICodec.ID.CODEC_ID_MP3, channels, sampleRate);
reader.addListener(writer);
while (reader.readPacket() == null)
;
(Please see my post
http://stackoverflow.com/questions/2760570/xuggle-codec-identification-fail/5027
039#5027039 )
Original comment by sid.ksha...@gmail.com
on 17 Feb 2011 at 9:23
Original issue reported on code.google.com by
williamt...@gmail.com
on 31 Aug 2009 at 5:17