A GUI interface using jbaiter's pyomxplayer wrapper to control omxplayer, with youtube-dl integration and support for lyrics
Instructions for installation on the official Raspbian image (should work on Ubuntu too):
You can use the automatic installer, or if that does not work for some reason you can install it manually.
To download and run the installer, from a terminal window, type (or copy-paste):
cd ~ && wget https://github.com/KenT2/tboplayer/tarball/master -O - | tar xz &&
cd KenT2-tboplayer-* && chmod +x setup.sh && ./setup.sh
After that, TBOPlayer will have been installed on your system. To run it, just type 'tboplayer', or use the shortcut created in your Desktop.
If you prefer to install it manually, do as follows:
Ensure you have the latest version of omxplayer by typing the following in a terminal window:
sudo apt-get update
sudo apt-get install --only-upgrade -y omxplayer
Type this into the terminal to install TBOPlayer's dependencies:
# install pip, gobject, dbus, tk, gtk, requests, avconv, tkdnd
sudo apt-get install -y python-pip python-gobject-2 python-dbus python-tk python-gtk2 python-requests libav-tools tkdnd
# install pexpect, ptyprocess, magic
yes | pip install --user pexpect ptyprocess python-magic
# install youtube-dl
sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
# or update youtube-dl
sudo youtube-dl -U
From a terminal window, type:
cd ~ && wget https://github.com/KenT2/tboplayer/tarball/master -O - | tar xz
Move the resulting directory to /opt:
sudo mv KenT2-tboplayer-* /opt/tboplayer
To run TBOPlayer, type in a terminal window:
python /opt/tboplayer/tboplayer.py
TBOPlayer is developed on Raspbian Wheezy with python 2.7
-
ADD
- duplicates the Track>Add menu item -
ADD DIR
- duplicates the Track>Add Dir menu item -
EDIT
- duplicates the Track>Edit menu item -
OPEN/SAVE/CLEAR LIST
- duplicates the Playlist>Open,Save,Clear menu item -
PLAY/PAUSE
- play the selected track or pause if playing -
STOP
- stop playing, operational only during playing -
PREVIOUS
- play previous track, operational only after played some track -
NEXT
- play next track, up to mode that you set -
- VOL +
- minus/plus volume control -
Playlist
- can be clicked over to play a track, and can be used to add tracks by 'drag and dropping' files over -
Progress bar
- show/Seek position -
Resize video
- at the bottom right side of the video progress bar, allows resizing video
-
Track
- add tracks (for selecting multiple tracks, hold ctrl when clicking) or directories, edit or remove tracks (or URLs) from the current playlist -
Playlist
- save the current playlist or open a saved one or load youtube playlist -
OMX
- display the track information for the last played track -
Options
--
Audio Output - play sound to hdmi, local, both or ALSA device.
-
Mode - play the Single selected track, Repeat the single track, rotate around the Playlist starting from the selected track, randomly play a track from the Playlist.
-
Initial directory for tracks - where Add Track starts looking.
-
Initial directory for playlists - where Open Playlist starts looking
-
Enable subtitles - download and use subtitles from streamming services
-
OMXPlayer location - path to omxplayer binary
-
OMXplayer options - add your own (no validation so be careful)
-
Download from Youtube - defines whether to download video and audio or audio only from Youtube (other online video services will always be asked for "video and audio")
-
Download actual media URL [when] - defines when to extract the actual media from the given URL, either upon adding the URL or when playing it
-
Youtube media quality - lets you choose among "small", "medium" and "high" qualities (Youtube only feature)
-
youtube-dl location - path to youtube-dl binary
-
Interface language - change GUI active language, requires restart
-
Start/End track paused - pauses the track both in the beginning and in the end of the track
-
Autoplay at start up - if TBOPlayer has just been opened and has some file in the playlist, automatically start playing the first file in the list
-
Keep youtube-dl up-to-date - upon start, check if there is a newer version of youtube-dl, and if there is, install it
-
Forbid windowed mode - if enabled will make videos always show in full screen, disabling the video window mode and video progress bar - may be useful if you're using tboplayer through a remote desktop
-
Find lyrics - if enabled, TBOPlayer will try to fetch lyrics for playing track - defaults to off - more details below
-
Debug - prints some debug text to the command line/log file (requires you to close and restart tboplayer)
-
If you used the automatic installer, you should be able to open files with double-click, or with the right mouse click menu in your file manager.
A track is selected using a single click of the mouse or up-down arrow key, playing is started by pressing the Play/Pause button, the . key or the Return key.
Removing the selected track can be done by pressing the Delete key.
During playing of a track, a clickable progress bar will appear below the playlist, which lets you seek a position, and if playing a video it's possible to see the progress bar if you move your mouse to the lowest side of the video.
Again during playing of a track, a slightly modified set of omxplayer commands can be used from the keyboard but there must be FOCUS on TBOPlayer. A list of commands is provided in the help menu. Note: some of the commands are not implemented by omxplayer.
While playing videos, you can hit the F11 key for toggling full screen mode. In windowed mode, to move the video window, click and hold the first mouse button over the video area and then move the mouse; and to resize the video, hold left Control, click and hold the first mouse button over the video area and then move the mouse.
For a list of streaming services supported by youtube-dl, see this link: https://rg3.github.io/youtube-dl/supportedsites.html (not all of them were tested with TBOPlayer/OMXplayer).
If the option 'Find lyrics' is enabled, TBOPlayer will look for the metatags 'artist' and 'title' in the media file, and if such tags are not found, it will try to find this info in a pattern in the file name (or in the track title for web links), something along the forms 'Artist Name - Song Title' or 'Artist Name : Song Title', in order to grab the lyrics from LyricWikia webservice.
By clicking with the right mouse button, you can add a link that is in the clipboard to the playlist.
TBOPlayer exposes some methods to the session bus of the DBus layer in your system, which gives basic control functionality programatically.
These are the details for connecting to the DBus interface:
Constant | Value |
---|---|
object | org.tboplayer.TBOPlayer |
path | /org/tboplayer/TBOPlayer |
interface | org.tboplayer.TBOPlayer |
Below are the methods in TBOPlayer`s DBus interface:
Method | Arguments |
---|---|
openFiles | String[] files |
openPlaylist | String file |
openUrl | String url |
play | Int32 index (defaults to 0) |
pause | |
stop | |
next | |
previous | |
fullscreen | |
volumnDown | |
volumnUp | |
clearList | |
setOption | String option, String value |
Available options and respective accepted values are:
Option | Allowed values/pattern |
---|---|
omx_audio_output | hdmi, local, both, alsa |
mode | single, repeat, playlist, repeat playlist, shuffle |
youtube_media_format | mp4, m4a |
download_media_url_upon | add, play |
youtube_video_quality | small, medium, high |
windowed_mode_coords | [+-]Integer[+-]Integer pattern |
autolyrics_coords | [+-]Integer[+-]Integer pattern |
windowed_mode_resolution | IntegerxInteger pattern |
debug | on, off |
forbid_windowed_mode | 0, 1 |
cue_track_mode | 0, 1 |
autoplay | 0, 1 |
find_lyrics | 0, 1 |
full_screen | 0, 1 |
omx_user_options | omxplayer options |
omx_location | complete file path to omxplayer binary |
ytdl_location | complete file path to youtube-dl binary |
If you have problems playing a track try it from the command line with omxplayer -o hdmi filename
or omxplayer -o local filename
to make sure it's not a problem with omxplayer.
If the progress bar, volume bar, or windowed video mode don't work for you, it may be that you have another instance of omxplayer running in the background. In that case, you can try to close that instance, and then play the track again. You can force omxplayer to terminate by typing in a terminal: sudo pkill -9 omxplayer
If the videos appear displaced by an amount of pixels, you must be having overscan problems. To disable overscan go to Menu>Preferences>Raspberry Pi Configuration and then set Overscan to Disabled.
With TBOPlayer, the youtube-dl binary should always be up-to-date, but if you keep getting a lot of "Content may be copyrighted or the link invalid" when trying to play videos from streaming services supported by youtube-dl, you can try to update youtube-dl by typing in a terminal: sudo youtube-dl -U
To uninstall tboplayer, open a terminal window and type:
/opt/tboplayer/setup.sh uninstall
Want to contribute with code? Follow CONTRIBUTING guidelines.
Want to contribute with a translation? Follow translating guidelines.
Original idea and implementation:
KenT2
GUI enhancements:
heniotierra
eysispeisi
krugg
popiazaza
rstefko
Botspot
fabianmendes
Translations:
heniotierra (Portuguese)
patgmez (Spanish)
Fabien HENON (French)
andrei tanasescu (Romanian)
Mikhail Kuznetsov (Russian)
SP5LMA (Polish)
NOTE: Since OMXPlayer deprecation was annouced, TBOPlayer for Python 3 was dumped in favor of the one for Python 2, for the maintainers considered not worth investing much in the Python 3 version. The Python 2 version should still be maintained though.