Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/jukeboxactivity.py
Commit message (Collapse)AuthorAgeFilesLines
* Modularization of classesManuel Kaufmann2013-01-251-841/+0
| | | | | | | | - Put each class in a different .py file - Rename jukeboxactivity.py to activity.py to make this more standard Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Hide error alert and panel if media inserted/removed before recheck playlistGonzalo Odiard2012-11-021-11/+17
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Error message improvedManuel Kaufmann2012-11-021-2/+12
| | | | | | | | | | A bit of style to the Error Alert that says GStreamer is not able to play a media file because of a plug-in is missing. Changed error msg as suggested by Gary Martin Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Media not found SL #3709Manuel Kaufmann2012-11-021-0/+50
| | | | | | | | | | | | | - Show an Alert message at startup when there are some media files that couldn't be reached. - Show full information (media paths) in the main canvas of those files that weren't found. - Listen "Mount" and "Unmount" events to check the availability of all media files in the playlist. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Port gst 0.10 to Gst 1.0Manuel Kaufmann2012-10-101-90/+90
| | | | | | | | Useful guide: * https://wiki.ubuntu.com/Novacut/GStreamer1.0 Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Do not pause the stream after adding a new oneManuel Kaufmann2012-10-101-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-101-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-101-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-101-18/+13
| | | | | | | | | | | | | | 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>
*