ogg pipeline

classic Classic list List threaded Threaded
4 messages Options
rk
Reply | Threaded
Open this post in threaded view
|

ogg pipeline

rk
Hi,

Can anybody let me know the correct pipeline to play the ogg(theora+vorbis) file.

Im using the following pipeline but it is givng the error.

$gst-launch filesrc location=<ogg file > ! qtdemux name=d d.video_00 ! queue !  theoradec ! xvimagesink d.audio_00 ! queue ! vorbisdec  ! audioconvert ! audioresample ! alsasink

(gst-launch-0.10:23114): GLib-WARNING **: g_set_prgname() called multiple times
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstQTDemux:d: This file is invalid and cannot be played.
Additional debug info:
qtdemux.c(420): gst_qtdemux_pull_atom (): /GstPipeline:pipeline0/GstQTDemux:d:
atom has bogus size 1332176723
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...


rgds,
KR

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: ogg pipeline

Sudarshan Bisht
Are you able to play this file with other players ? 

 -   If no then file has some problem.


And one more thing you can try just to narrow down the issue, use following pipeline;

 $gst-launch filesrc location=<ogg file > ! qtdemux name=d d.video_00 ! queue !  fakesink d.audio_00 ! queue !  fakesink 

Does this run without any error ?




On Fri, Dec 3, 2010 at 11:45 AM, rams k <[hidden email]> wrote:
Hi,

Can anybody let me know the correct pipeline to play the ogg(theora+vorbis) file.

Im using the following pipeline but it is givng the error.

$gst-launch filesrc location=<ogg file > ! qtdemux name=d d.video_00 ! queue !  theoradec ! xvimagesink d.audio_00 ! queue ! vorbisdec  ! audioconvert ! audioresample ! alsasink

(gst-launch-0.10:23114): GLib-WARNING **: g_set_prgname() called multiple times
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstQTDemux:d: This file is invalid and cannot be played.
Additional debug info:
qtdemux.c(420): gst_qtdemux_pull_atom (): /GstPipeline:pipeline0/GstQTDemux:d:
atom has bogus size 1332176723
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...


rgds,
KR

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel




--
Regards,

Sudarshan Bisht

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: ogg pipeline

michael smith-6-3
In reply to this post by rk
You have an ogg file. You're using a quicktime demuxer. It should not
be a surprise that it says that it's an invalid file.

Try this instead:
  gst-launch-0.10 playbin2 uri=file:///path/to/file.ogg

Mike


On Thu, Dec 2, 2010 at 10:15 PM, rams k <[hidden email]> wrote:

> Hi,
>
> Can anybody let me know the correct pipeline to play the ogg(theora+vorbis)
> file.
>
> Im using the following pipeline but it is givng the error.
>
> $gst-launch filesrc location=<ogg file > ! qtdemux name=d d.video_00 ! queue
> !  theoradec ! xvimagesink d.audio_00 ! queue ! vorbisdec  ! audioconvert !
> audioresample ! alsasink
>
> (gst-launch-0.10:23114): GLib-WARNING **: g_set_prgname() called multiple
> times
> Setting pipeline to PAUSED ...
> Pipeline is PREROLLING ...
> ERROR: from element /GstPipeline:pipeline0/GstQTDemux:d: This file is
> invalid and cannot be played.
> Additional debug info:
> qtdemux.c(420): gst_qtdemux_pull_atom ():
> /GstPipeline:pipeline0/GstQTDemux:d:
> atom has bogus size 1332176723
> ERROR: pipeline doesn't want to preroll.
> Setting pipeline to NULL ...
> Freeing pipeline ...
>
>
> rgds,
> KR
>
> ------------------------------------------------------------------------------
> What happens now with your Lotus Notes apps - do you make another costly
> upgrade, or settle for being marooned without product support? Time to move
> off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
> use, and manage than apps on traditional platforms. Sign up for the Lotus
> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>
>

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
rk
Reply | Threaded
Open this post in threaded view
|

Re: ogg pipeline

rk
Yes,I can play with playbin.
But ,I want to know the pipeline to play the ogg file using oggdemux,theoradec,and vorbisdec.

$gst-launch filesrc location=<oggfile> ! oggdemux name=d d.video_00 ! queue !  xvimagesink d.audio_00 ! queue !  alsasink

(gst-launch-0.10:24567): GLib-WARNING **: g_set_prgname() called multiple times
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstOggDemux:d: Internal data stream error.
Additional debug info:
gstoggdemux.c(3251): gst_ogg_demux_loop (): /GstPipeline:pipeline0/GstOggDemux:d:
stream stopped, reason not-linked
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...


rgds,
Rk

On Tue, Dec 7, 2010 at 12:58 AM, Michael Smith <[hidden email]> wrote:
You have an ogg file. You're using a quicktime demuxer. It should not
be a surprise that it says that it's an invalid file.

Try this instead:
 gst-launch-0.10 playbin2 uri=file:///path/to/file.ogg

Mike


On Thu, Dec 2, 2010 at 10:15 PM, rams k <[hidden email]> wrote:
> Hi,
>
> Can anybody let me know the correct pipeline to play the ogg(theora+vorbis)
> file.
>
> Im using the following pipeline but it is givng the error.
>
> $gst-launch filesrc location=<ogg file > ! qtdemux name=d d.video_00 ! queue
> !  theoradec ! xvimagesink d.audio_00 ! queue ! vorbisdec  ! audioconvert !
> audioresample ! alsasink
>
> (gst-launch-0.10:23114): GLib-WARNING **: g_set_prgname() called multiple
> times
> Setting pipeline to PAUSED ...
> Pipeline is PREROLLING ...
> ERROR: from element /GstPipeline:pipeline0/GstQTDemux:d: This file is
> invalid and cannot be played.
> Additional debug info:
> qtdemux.c(420): gst_qtdemux_pull_atom ():
> /GstPipeline:pipeline0/GstQTDemux:d:
> atom has bogus size 1332176723
> ERROR: pipeline doesn't want to preroll.
> Setting pipeline to NULL ...
> Freeing pipeline ...
>
>
> rgds,
> KR
>
> ------------------------------------------------------------------------------
> What happens now with your Lotus Notes apps - do you make another costly
> upgrade, or settle for being marooned without product support? Time to move
> off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
> use, and manage than apps on traditional platforms. Sign up for the Lotus
> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>
>

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to
best implement a security strategy that keeps consumers' information secure
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel