Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Version 26.1sugar-0.94Gonzalo Odiard2012-10-151-1/+1
|
* Do not pause the stream after adding a new onev26.1Manuel Kaufmann2012-10-151-1/+1
| | | | | | | | After the user adds the first stream to the playlist it is played immediately and when a new stream is added, the first one is kept playing. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Tag reader feature removedManuel Kaufmann2012-10-151-118/+1
| | | | | | | | | I removed it because of performance. Jukebox was working too slow when it was reproducing a video and it had to read the tag of the media added to the playlist. So, we decided to remove this feature by the moment. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Use 'playbin2' instead of 'playbin'Manuel Kaufmann2012-10-151-1/+7
| | | | | | | | | | | | 'playbin' is obsolete and not should be used. I was told in #gstreamer (irc.freenode.net) that 'playbin' is no longer supported, that has some bugs and shouldn't be used anymore. It should be changed by 'playbin2' I had to set some flags as well to keep showing the 'vis-plugin' with 'playbin2' player. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Create GstPlayer just onceManuel Kaufmann2012-10-151-18/+15
| | | | | | | | | | | | | | Instanciating GstPlayer when Jukebox is launched and changing its uri when a new stream is played. This allow us to change between different streams in the playlist without having many memory issues regarding video playing in HD. To change the stream being played in the GstPlayer instance we firstly set the state of it to STATE_PAUSED, then to STATE_NULL and finally we change the uri. When this process finishes we change the state again to STATE_PLAYING. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
*