Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
(11) |
Feb
(32) |
Mar
(42) |
Apr
(3) |
May
(23) |
Jun
(5) |
Jul
(18) |
Aug
(14) |
Sep
(10) |
Oct
(9) |
Nov
(23) |
Dec
(42) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(137) |
Feb
(126) |
Mar
(247) |
Apr
(140) |
May
(232) |
Jun
(136) |
Jul
(61) |
Aug
(135) |
Sep
(135) |
Oct
(113) |
Nov
(46) |
Dec
(157) |
2002 |
Jan
(139) |
Feb
(127) |
Mar
(153) |
Apr
(174) |
May
(95) |
Jun
(115) |
Jul
(202) |
Aug
(123) |
Sep
(208) |
Oct
(114) |
Nov
(123) |
Dec
(91) |
2003 |
Jan
(296) |
Feb
(119) |
Mar
(112) |
Apr
(235) |
May
(205) |
Jun
(271) |
Jul
(219) |
Aug
(104) |
Sep
(149) |
Oct
(200) |
Nov
(242) |
Dec
(466) |
2004 |
Jan
(447) |
Feb
(300) |
Mar
(485) |
Apr
(267) |
May
(205) |
Jun
(183) |
Jul
(344) |
Aug
(176) |
Sep
(119) |
Oct
(140) |
Nov
(154) |
Dec
(152) |
2005 |
Jan
(209) |
Feb
(178) |
Mar
(128) |
Apr
(166) |
May
(163) |
Jun
(150) |
Jul
(191) |
Aug
(166) |
Sep
(212) |
Oct
(212) |
Nov
(240) |
Dec
(236) |
2006 |
Jan
(178) |
Feb
(184) |
Mar
(188) |
Apr
(189) |
May
(267) |
Jun
(198) |
Jul
(151) |
Aug
(212) |
Sep
(190) |
Oct
(180) |
Nov
(354) |
Dec
(199) |
2007 |
Jan
(211) |
Feb
(173) |
Mar
(182) |
Apr
(151) |
May
(233) |
Jun
(288) |
Jul
(213) |
Aug
(221) |
Sep
(320) |
Oct
(301) |
Nov
(193) |
Dec
(214) |
2008 |
Jan
(235) |
Feb
(254) |
Mar
(237) |
Apr
(232) |
May
(187) |
Jun
(239) |
Jul
(353) |
Aug
(362) |
Sep
(431) |
Oct
(423) |
Nov
(358) |
Dec
(351) |
2009 |
Jan
(408) |
Feb
(377) |
Mar
(547) |
Apr
(437) |
May
(483) |
Jun
(449) |
Jul
(309) |
Aug
(297) |
Sep
(279) |
Oct
(329) |
Nov
(336) |
Dec
(290) |
2010 |
Jan
(237) |
Feb
(296) |
Mar
(523) |
Apr
(515) |
May
(340) |
Jun
(474) |
Jul
(372) |
Aug
(427) |
Sep
(343) |
Oct
(396) |
Nov
(407) |
Dec
(512) |
2011 |
Jan
(515) |
Feb
(146) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(23) |
2
(12) |
3
(26) |
4
(7) |
5
(3) |
6
(2) |
7
(11) |
8
(33) |
9
(28) |
10
(17) |
11
(25) |
12
(13) |
13
(6) |
14
(28) |
15
(20) |
16
(15) |
17
(27) |
18
(13) |
19
(5) |
20
|
21
(16) |
22
(24) |
23
(25) |
24
(19) |
25
(24) |
26
(6) |
27
(5) |
28
(14) |
29
(12) |
30
(15) |
|
|
|
From: Luciana Fujii Pontello <luciana@ho...> - 2010-06-07 22:59:24
|
On Tue, 2010-05-25 at 13:01 -0700, scottmil wrote: > I would LOVE to see it. Is it posted somewhere it can be downloaded? > > Scott I only received your e-mail today, so I don't know if this will still be useful. The module I use to mix 2 pipelines in a picture-in-picture is in here: http://git.holoscopio.com/?p=sltv.git;a=blob;f=sltv/videomixer.py;hb=HEAD. It does others crazy things (I use it as if it was the input-selector also), but it should not be a problem if you don't link more stuff to it. Actually, I think if you go back in time you can get a simpler version like this: http://git.holoscopio.com/?p=sltv.git;a=blob;f=sltv/videomixer.py;h=91e8d0bdd59d1a0c1a3718cbc29ebe5018f16b33;hb=2cabc48c982650dd0d3f69499374fa2e46a11e31 I have a small test case in http://holoscopio.com/~fujii/testpip.py that is a good example and you can check the project repository to see how we use it for real. Regards, Luciana Fujii Holoscópio Tecnologia - http://holoscopio.com |
From: Loc Nguyen <loc.x.nguyen@or...> - 2010-06-07 22:51:48
|
On 6/6/2010 10:17 PM, gstreamer-devel-request@... wrote: > When the queue is asked to do a state change to READY, it first sets its > state to flushing and then it signals the item_add cond variable (see > gst_queue_src_activate_push(). This makes the task go into paused where > the core does a join on it. > Wim, Not knowing the full tear down sequence, I'm trying to fill in the holes here. Our original sequence was to set the pipeline state to null then unref it. From what you're saying, the queue is changing state to READY. I assume this is during setting the pipeline state to null and NOT during unref'ing. Am I reading this correctly in your explanation? During this operation to set the pipeline state to null, the pads are activated again (interesting)? This causes the queue to signal and flush, exiting the task function. Then by the time we unref the pipeline, the task function is no longer waiting on the queue, and the join succeeds. Is this correct? If I am understanding this correctly, then the problem is why are we still waiting in the gst_queue_loop(). I am sure it's the same task -- same function pointer address. We've come up with a theory (assuming my interpretation of your explanation is correct) on why this is happening. Here goes. We followed an example from the gstreamer manual that showed setting the pipeline's state to null then immediately unref the pipeline. The theory is that the pipeline hasn't reached null yet by the time we go to unref the pipeline. During unref, we finalize the pad and try to join the task. This occurs before the set to null state had a chance to activate the pad again, which would cause the wait in the queue loop to signal and exit. Since the pad got finalized, it no longer receives events, including the activate event. So the task is waiting, but the pad no longer accepts the event telling it to activate. Thus, the hang. Sound reasonable? We're theorizing that after setting the pipeline's state to null, we should not immediately unref it. Instead, we should wait for the state change then unref it. What do you think? Since sending out this first request, we've seen this hang on several more machines. -Loc |
From: Julien Isorce <julien.isorce@gm...> - 2010-06-07 21:19:22
|
2010/5/31 Eirel <hoshi63@...> > > Hi everybody! > > To complete a project I've got during my studies, I've got to use glmosaic > into a C++ code. The aim is to specified two video entries and to mix it > into an 3D opengl output, using a filter I've got specially written for > this > (which can be find in git as glfilterreflectedscreen). > But I can't find lots of example, and the only one (on git) doesn't work on > my pc. Hi What is the exact error ? trace ? Julien > I'll try it at home to see if the problem doesn't only comes because > of my computer but I hope it's not that. > > That's why each example and explication about the use of this element could > be fine to me. > > Thanks (and sorry for mistakes, I'm a french student and make some, I know > ^^') > -- > View this message in context: > http://gstreamer-devel.966125.n4.nabble.com/GLMosaic-tp2237324p2237324.html > Sent from the GStreamer-devel mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > gstreamer-devel mailing list > gstreamer-devel@... > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > |
From: Christopher Brooks <cab938@ma...> - 2010-06-07 20:27:50
|
Hi, We're using gstreamer in a project that's about to hit a 1.0 release. I know that there are a couple of pages in the wiki outlining who uses gstreamer, who do I talk to about getting our project added? Regards, Chris -- Christopher Brooks mail: Advanced Research in Intelligent Educational Systems (ARIES) Laboratory, Department of Computer Science, University of Saskatchewan 110 Science Place Saskatoon, SK S7N 5C9 email: cab938@... web: http://www.cs.usask.ca/~cab938 phone: 966-1442 |
From: sam tygier <samtygier@ya...> - 2010-06-07 19:40:52
|
hello after quite a lot of trial and error i managed to play a radio stream using: gst-launch-0.10 souphttpsrc location="http://media-ice.musicradio.com/XFMManchester"; ! decodebin ! pulsesink however the stream stutters occasionally, and i suspect that caching (or increasing the cache) would help. is there a way to do this? also i had a lot of trouble finding a stream address that would work. the website gives the stream address of http://mediaweb.musicradio.com/Playlist.asx?StreamID=9 this works for totem, but not for gst-launch. is there a way to get gst-launch to use the high level URLS, to save me hunting for the actuall stream URL. thanks sam |
From: Wes Miller <wmiller@sd...> - 2010-06-07 17:21:21
|
In an earlier thread Tim-Phillip Muller wrote: You could ... set up a buffer probe on the capsfilter's sink pad. Whenever a buffer is pushed through, your probe callback will be called and you can decide whether the buffer should be dropped or kept by returning TRUE or FALSE. I coded this approach up and sure enough it works, right up until I decide to discard a frame of data. I return false from the pad-probe and it stops being called, the rest of the data goes flying by, EOS goes down the pipe and I exit. The docs and Tim-Phillip say the data will be discarded on false, kept on true. There is no exact statement saying this refers to the individual frame, but that seems the proper interpretation. No doc suggests that the callback will be disconnected on a false return as would a false return from a bus callback. It this an error in interpretation or in the code. Wes Miller -- View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Wrong-pad-probe-behavior-on-returning-false-tp2246302p2246302.html Sent from the GStreamer-devel mailing list archive at Nabble.com. |
From: Wes Miller <wmiller@sd...> - 2010-06-07 15:25:29
|
I wish to hook a capsfilter element to a matroskamux element thus: ... ! capsfilter ! matroskamux ! .... I wish to do this in a C program. I see that cpasfilter's src element has an "always" pad and matroskamux's has "on-request" sink pads. I have made this work by using gst_element_link_filtered( capsfilt, mux, my-caps ) just as I'd use a gst_element_link() in the main(), not in a callback. Is this correct? Or should I do the link after the pipe is running? If so, what is it that i need to detect on the capsfilter's src pad? I tried the handoff signal but that apparently isn't emitted by capsfilter(). Wes Miller -- View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Hooking-ALWAYS-src-to-ON-REQUEST-sink-tp2246095p2246095.html Sent from the GStreamer-devel mailing list archive at Nabble.com. |
From: Stefan Kost <ensonic@ho...> - 2010-06-07 12:58:54
|
On 04.06.2010 08:09, gather bzbz wrote: > v4l2src seems to be broken in the latest plugins-good-0.10.23. None of the old v4l2src test pipelines return correctly. Also "gst-inspect v4l2src" gets stuck. Any ideas? > > > works fine here. does it hang with you camera unplugged too. what does v4l-info say about your camera. Does you camera work with other apps. Stefan |
From: ved kpl <ved.kpl@gm...> - 2010-06-07 05:37:18
|
Hi, I suppose "mpeg4decoder" is some proprietary plugin. Isolate the problem first, by not using it in the pipeline. Try the following and see what you get. gst-launch gnomevfssrc location=http://path/file.avi ! avidemux name=d d.video_00 ! fakesink -v Regards, Vikram On Mon, Jun 7, 2010 at 10:47 AM, sudarshan bisht <bisht.sudarshan@...> wrote: > Hi , > > Did you try using mpeg4videoparse between avidemux and mpeg4decoder ? > > On Mon, Jun 7, 2010 at 9:50 AM, Chen, Weian <weian.chen@...> wrote: >> >> >> >> Hi, >> >> >> >> I'm trying to view mpeg4 video files (in avi container) on network with >> GStreamer. Running the "gst-launch gnomevfssrc location=http://path/file.avi >> ! avidemux ! mpeg4decoder ! xvimagesink" prints out only text "RUNNING >> pipeline" and freezes and only the first frame appears on the screen. Does >> anybody here know what happened? And is it a known issue of avidemux? >> >> >> >> Thanks in advanced!! >> >> >> >> Thanks >> >> Weian >> >> >> >> >> ------------------------------------------------------------------------------ >> ThinkGeek and WIRED's GeekDad team up for the Ultimate >> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >> lucky parental unit. See the prize list and enter to win: >> http://p.sf.net/sfu/thinkgeek-promo >> _______________________________________________ >> gstreamer-devel mailing list >> gstreamer-devel@... >> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel >> > > > > -- > Regards, > > Sudarshan Bisht > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > gstreamer-devel mailing list > gstreamer-devel@... > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > > |
From: sudarshan bisht <bisht.sudarshan@gm...> - 2010-06-07 05:17:46
|
Hi , Did you try using mpeg4videoparse<http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-plugin-mpeg4videoparse.html> between avidemux and mpeg4decoder ? On Mon, Jun 7, 2010 at 9:50 AM, Chen, Weian <weian.chen@...> wrote: > > > *Hi,* > > > > *I'm trying to view mpeg4 video files (in avi container) on network with > GStreamer. Running the "gst-launch gnomevfssrc location= > http://path/file.avi ! avidemux ! mpeg4decoder ! xvimagesink" prints out > only text "RUNNING pipeline" and freezes and only the first frame appears on > the screen. Does anybody here know what happened? And is it a known issue of > avidemux?* > > * * > > *Thanks in advanced!!* > > * * > > Thanks > > Weian > > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > gstreamer-devel mailing list > gstreamer-devel@... > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > > -- Regards, Sudarshan Bisht |
From: Chen, Weian <weian.chen@in...> - 2010-06-07 04:19:44
|
Hi, I'm trying to view mpeg4 video files (in avi container) on network with GStreamer. Running the "gst-launch gnomevfssrc location=http://path/file.avi ! avidemux ! mpeg4decoder ! xvimagesink" prints out only text "RUNNING pipeline" and freezes and only the first frame appears on the screen. Does anybody here know what happened? And is it a known issue of avidemux? Thanks in advanced!! Thanks Weian |