Hi
my name is George , I
am looking for a solution to extract 4 channel Audio from a rawdv File captured
with dvgrab (32000 khz 16 bit) gst-launch
filesrc location=test.dv ! dvdemux name=demux ! queue ! audioconvert ! audio/x-raw-int, depth=16, width=16, signed=true, channels=4,
endianness=1, rate=32000 ! filesink location=test.wav My first test didn´t work is there any one
how now to handle it. Thank you george ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Hi,
Georg von Kreisler schrieb: > Hi my name is George , > > > > I am looking for a solution to extract 4 channel Audio from a rawdv File > captured with dvgrab (32000 khz 16 bit) > > > > gst-launch filesrc location=test.dv ! dvdemux name=demux ! queue ! > audioconvert ! audio/x-raw-int, depth=16, width=16, signed=true, > channels=4, endianness=1, rate=32000 > ! filesink location=test.wav You've forgot wavenc. Can you try without conversion: gst-launch filesrc location=test.dv ! dvdemux .audio ! wavenc ! filesink location=test.wav Also tell us what happened and if possible put the file online somewhere. Stefan > > > > My first test didn´t work is there any one how now to handle it. > > > > Thank you > > george > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > > > ------------------------------------------------------------------------ > > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
On Sun, 2008-04-13 at 18:42 +0300, Stefan Kost wrote:
> Georg von Kreisler schrieb: > > I am looking for a solution to extract 4 channel Audio from a rawdv File > > captured with dvgrab (32000 khz 16 bit) > > > > gst-launch filesrc location=test.dv ! dvdemux name=demux ! queue ! > > audioconvert ! audio/x-raw-int, depth=16, width=16, signed=true, > > channels=4, endianness=1, rate=32000 > > ! filesink location=test.wav > > You've forgot wavenc. Can you try without conversion: > > gst-launch filesrc location=test.dv ! dvdemux .audio ! wavenc ! filesink > location=test.wav The wavenc element doesn't support more than 2 channels at the moment. vorbisenc and wavpackenc should support this though: .audio ! audioconvert ! vorbisenc ! oggmux ! filesink location=test.ogg .audio ! audioconvert ! wavpackenc ! filesink location=test.wp Cheers -Tim ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |