Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/player.py
Commit message (Collapse)AuthorAgeFilesLines
* Pep8 fixesGonzalo Odiard2013-11-261-1/+2
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Controls class modularizedManuel Kaufmann2013-01-251-1/+2
| | | | | | | All the methods related to Controls class on the JukeboxActivity were moved to the Controls class. Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Better control over the playlistManuel Kaufmann2013-01-251-1/+3
| | | | | | | | | | | Use signals ('play-index' for example) to communicate between the main window and the playlist. Save and Load playlists and Add track methods are reduced in complexity. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Visualization on Audio streams removedManuel Kaufmann2013-01-251-29/+2
| | | | | | | | | This cause a 100% of CPU usage on XO-4 and XO-1.75. An empty widget is shown when an Audio stream is played and the Video stream is shown if a Video stream is played. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Do not initialize video sink (videoscale, videoconvert, autovideosink, etc)Manuel Kaufmann2013-01-251-24/+0
| | | | | | | | This was causing some problems on performance to reproduce .ogv Video streams on XO-4. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Pause Video when lost focusManuel Kaufmann2013-01-251-0/+3
| | | | | | | | If the user is playing a Video stream, this is paused if he changes the focus to another Activity. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Modularization of classesManuel Kaufmann2013-01-251-0/+182
- 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>