From: Niamathullah s. <arm...@gm...> - 2010-01-11 06:43:29
|
Hello, how to play with "playbin". when i try to play the video with playbin i am getting this error "root@freescale ~$ gst-launch playbin uri=/root/yuvraj.mp4 Setting pipeline to PAUSED ... ERROR: Pipeline doesn't want to pause. ERROR: from element /GstPlayBinlaybin0: Invalid URI "/root/yuvraj.mp4". Additional debug info: gstplaybasebin.c(1674): gen_source_element (): /GstPlayBinlaybin0 Setting pipeline to NULL ... FREEING pipeline ... root@freescale ~$ " Now i am standng still. It is telling as invalid URI. But the video is in that PATH only. Then how to use this gen_source_element() function? how to implement it? please help me.. |
From: Michael S. <ms...@xi...> - 2010-01-11 07:02:56
|
On Sun, Jan 10, 2010 at 10:43 PM, Niamathullah sharief <arm...@gm...> wrote: > > Hello, > how to play with "playbin". when i try to play the video with > playbin i am getting this error > "root@freescale ~$ gst-launch playbin uri=/root/yuvraj.mp4 > Setting pipeline to PAUSED ... > ERROR: Pipeline doesn't want to pause. > ERROR: from element /GstPlayBinlaybin0: Invalid URI "/root/yuvraj.mp4". > Additional debug info: > gstplaybasebin.c(1674): gen_source_element (): /GstPlayBinlaybin0 > Setting pipeline to NULL ... > FREEING pipeline ... > root@freescale ~$ > " Now i am standng still. It is telling as invalid URI. But the video is in > that PATH only. Then how to use this gen_source_element() function? how to > implement it? please help me.. The 'uri' property needs a uri, not a file path. Use a file:// URI as the value of this property. Mike |
From: Niamathullah s. <arm...@gm...> - 2010-01-11 07:48:59
|
yes thank you. It is working fine. But it is playing from FB. may i know how to play this video in any window like xwindow or any other thing which is very easy. Please help me On Mon, Jan 11, 2010 at 12:32 PM, Michael Smith <ms...@xi...> wrote: > On Sun, Jan 10, 2010 at 10:43 PM, Niamathullah sharief > <arm...@gm...> wrote: > > > > Hello, > > how to play with "playbin". when i try to play the video with > > playbin i am getting this error > > "root@freescale ~$ gst-launch playbin uri=/root/yuvraj.mp4 > > Setting pipeline to PAUSED ... > > ERROR: Pipeline doesn't want to pause. > > ERROR: from element /GstPlayBinlaybin0: Invalid URI "/root/yuvraj.mp4". > > Additional debug info: > > gstplaybasebin.c(1674): gen_source_element (): /GstPlayBinlaybin0 > > Setting pipeline to NULL ... > > FREEING pipeline ... > > root@freescale ~$ > > " Now i am standng still. It is telling as invalid URI. But the video is > in > > that PATH only. Then how to use this gen_source_element() function? how > to > > implement it? please help me.. > > The 'uri' property needs a uri, not a file path. Use a file:// URI as > the value of this property. > > Mike > |
From: Stefan K. <en...@ho...> - 2010-01-18 20:36:07
|
Am 11.01.2010 09:48, schrieb Niamathullah sharief: > yes thank you. It is working fine. But it is playing from FB. may i know > how to play this video in any window like xwindow or any other thing > which is very easy. Please help me playbin takes the highes ranked videosink that is available and working. Apparently that is fbvideosink in your case. Run something simple as gst-launch videsttestsrc ! xvimagesink if you have a running x server with xvideo extension (check with xvinfo command). Stefan > > On Mon, Jan 11, 2010 at 12:32 PM, Michael Smith <ms...@xi... > <mailto:ms...@xi...>> wrote: > > On Sun, Jan 10, 2010 at 10:43 PM, Niamathullah sharief > <arm...@gm... <mailto:arm...@gm...>> wrote: > > > > Hello, > > how to play with "playbin". when i try to play the video with > > playbin i am getting this error > > "root@freescale ~$ gst-launch playbin uri=/root/yuvraj.mp4 > > Setting pipeline to PAUSED ... > > ERROR: Pipeline doesn't want to pause. > > ERROR: from element /GstPlayBinlaybin0: Invalid URI > "/root/yuvraj.mp4". > > Additional debug info: > > gstplaybasebin.c(1674): gen_source_element (): /GstPlayBinlaybin0 > > Setting pipeline to NULL ... > > FREEING pipeline ... > > root@freescale ~$ > > " Now i am standng still. It is telling as invalid URI. But the > video is in > > that PATH only. Then how to use this gen_source_element() > function? how to > > implement it? please help me.. > > The 'uri' property needs a uri, not a file path. Use a file:// URI as > the value of this property. > > Mike > > > > > ------------------------------------------------------------------------------ > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and easy > Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > > > > _______________________________________________ > Gstreamer-embedded mailing list > Gst...@li... > https://lists.sourceforge.net/lists/listinfo/gstreamer-embedded |