Difference between revisions of "Frontend control socket"

From MythTV Official Wiki
Jump to: navigation, search
m (Limitations & Workarounds: Add script form of music rescan hint)
m (add mention of mythmusic playback controls)
Line 70: Line 70:
 
== play ==
 
== play ==
 
<pre>
 
<pre>
play volume NUMBER%   - Change volume to given percentage value
+
play volume NUMBER%   - Change volume to given percentage value
play channel up       - Change channel Up
+
play channel up       - Change channel Up
play channel down     - Change channel Down
+
play channel down     - Change channel Down
play channel NUMBER   - Change to a specific channel number
+
play channel NUMBER   - Change to a specific channel number
play chanid NUMBER   - Change to a specific channel id (chanid)
+
play chanid NUMBER     - Change to a specific channel id (chanid)
play file FILENAME   - Play specified file
+
play file FILENAME     - Play FILENAME (FILENAME may be a file or a myth:// URL)
play program CHANID yyyy-mm-ddThh:mm:ss
+
play program CHANID yyyy-MM-ddThh:mm:ss
                      - Play program with chanid & starttime
+
                      - Play program with chanid & starttime
play program CHANID yyyy-mm-ddThh:mm:ss resume
+
play program CHANID yyyy-MM-ddThh:mm:ss resume
                      - Resume program with chanid & starttime
+
                      - Resume program with chanid & starttime
play save screenshot FILENAME
+
play save preview
                      - Save screenshot from current position
+
                      - Save preview image from current position
play seek beginning   - Seek to the beginning of the recording
+
play save preview FILENAME
play seek forward     - Skip forward in the video
+
                      - Save preview image to FILENAME
play seek backward   - Skip backwards in the video
+
play save preview FILENAME WxH
play seek HH:MM:SS   - Seek to a specific position
+
                      - Save preview image of size WxH
play speed pause     - Pause playback
+
play seek beginning   - Seek to the beginning of the recording
play speed normal     - Playback at normal speed
+
play seek forward     - Skip forward in the video
play speed 1x         - Playback at normal speed
+
play seek backward     - Skip backwards in the video
play speed -1x        - Playback at normal speed in reverse
+
play seek HH:MM:SS     - Seek to a specific position
play speed 1/16x      - Playback at 1/16x speed
+
play speed pause       - Pause playback
play speed 1/8x      - Playback at 1/8x speed
+
play speed normal     - Playback at normal speed
play speed 1/4x      - Playback at 1/4x speed
+
play speed 1x         - Playback at normal speed
play speed 1/2x       - Playback at 1/2x speed
+
play speed SPEEDx      - Playback where SPEED must be a decimal
play speed 2x        - Playback at 2x speed
+
play speed 1/8x        - Playback at 1/8x speed
play speed 4x        - Playback at 4x speed
+
play speed 1/4x        - Playback at 1/4x speed
play speed 8x        - Playback at 8x speed
+
play speed 1/3x        - Playback at 1/3x speed
play speed 16x       - Playback at 16x speed
+
play speed 1/2x       - Playback at 1/2x speed
play stop            - Stop playback
+
play stop              - Stop playback
 +
play music play        - Resume playback (MythMusic)
 +
play music pause      - Pause playback (MythMusic)
 +
play music stop       - Stop Playback (MythMusic)
 +
play music setvolume N - Set volume to number (MythMusic)
 +
play music getvolume  - Get current volume (MythMusic)
 +
play music getmeta    - Get metadata for current track (MythMusic)
 +
play music file NAME  - Play specified file (MythMusic)
 +
play music track N    - Switch to specified track (MythMusic)
 +
play music url URL    - Play specified URL (MythMusic)
 
</pre>
 
</pre>
  
 
== query ==
 
== query ==
 
<pre>
 
<pre>
query location        - Query current screen or location (i.e. MainMenu)
+
query location        - Query current screen or location
 
query volume          - Query the current playback volume
 
query volume          - Query the current playback volume
 
query recordings      - List currently available recordings
 
query recordings      - List currently available recordings
Line 110: Line 119:
 
query liveTV          - List current TV schedule
 
query liveTV          - List current TV schedule
 
query liveTV CHANID  - Query current program for specified channel
 
query liveTV CHANID  - Query current program for specified channel
query time            - Query current time on server
+
query load            - List 1/5/15 load averages
query channels        - Query available channels  
+
query memstats        - List free and total, physical and swap memory
 +
query time            - Query current time on frontend
 +
query uptime          - Query machine uptime
 +
query verbose        - Get current VERBOSE filter
 +
query version        - Query Frontend version details
 +
query channels        - Query available channels
 
query channels START LIMIT - Query available channels from START and limit results to LIMIT lines
 
query channels START LIMIT - Query available channels from START and limit results to LIMIT lines
 
</pre>
 
</pre>
Line 210: Line 224:
  
 
= Development =
 
= Development =
==Changeset {{changeset|8688}}==
+
==Changeset {{changeset|7f3dcdab|v0.17-2759-g7f3dcda}}==
 
The initial implementation.
 
The initial implementation.
  
==Changeset {{changeset|12907}}==
+
==Changeset {{changeset|d86cf6e0|v0.20-1001-gd86cf6e}}==
 
<pre>
 
<pre>
 
Modified:
 
Modified:
Line 244: Line 258:
 
"key down down sleep down enter"
 
"key down down sleep down enter"
 
</pre>
 
</pre>
==Changeset {{changeset|22514}}==
+
==Changeset {{changeset|4f40c42f|v0.20-8059-g4f40c42}}==
 
Control socket now supports multiple simultaneous connections. Previous behavior was to terminate existing connections when a new one was made.
 
Control socket now supports multiple simultaneous connections. Previous behavior was to terminate existing connections when a new one was made.
 +
 +
== Changeset {{changeset|7422f241a9c62|v0.25pre-446-g7422f24}} ==
 +
Add playback functions for control of MythMusic.
 +
 
[[Category:HOWTO]]
 
[[Category:HOWTO]]
 
[[Category:Developer Documentation]]
 
[[Category:Developer Documentation]]

Revision as of 00:58, 12 January 2011

Release 0.19 of MythTV introduced the ability to control mythfrontend via a socket interface. Commands are sent and replies are received in text mode, there is no fancy xml interface or anything - it is meant to be able to be used via something as simple as netcat. This feature has to be enabled in the general settings of the frontend setup. The default port is 6546, so after restarting mythfrontend, you can test by netcatting to localhost on port 6546

netcat localhost 6546

See also MythTV docs on control socket

Warning.png Warning: The frontend control socket does NOT implement the telnet protocol. It is a raw text-based TCP socket. The Telnet protocol expects certain behaviors and enforces 7-bit ASCII text, which the control socket does not follow and will cause complications if used. netcat exists as a nearly drop-in replacement for telnet, and will work fine for this purpose.


Supported Commands

For a list of supported commands, type "help". For help on a specific command, type "help COMMAND" (where COMMAND is the name of the command like "help jump").

jump

Usage: jump JUMPPOINT

Where JUMPPOINT is one of the following:
channelpriorities    - Channel Recording Priorities
channelrecpriority   - Channel Recording Priorities
deletebox            - TV Recording Deletion
deleterecordings     - TV Recording Deletion
flixbrowse           - Netflix Browser
flixhistory          - Netflix History
flixqueue            - Netflix Queue
guidegrid            - Program Guide
livetv               - Live TV
livetvinguide        - Live TV In Guide
mainmenu             - Main Menu
managerecordings     - Manage Recordings / Fix Conflicts
manualbox            - Manual Record Scheduling
manualrecording      - Manual Record Scheduling
musicplaylists       - Select music playlists
mythgallery          - MythGallery
mythgame             - MythGame
mythmovietime        - MythMovieTime
mythnews             - MythNews
mythvideo            - MythVideo
mythweather          - MythWeather
playbackbox          - TV Recording Playback
playbackrecordings   - TV Recording Playback
playdvd              - Play DVD
playmusic            - Play music
previousbox          - Previously Recorded
progfinder           - Program Finder
programfinder        - Program Finder
programguide         - Program Guide
programrecpriority   - Program Recording Priorities
recordingpriorities  - Program Recording Priorities
ripcd                - Rip CD
ripdvd               - Rip DVD
statusbox            - Status Screen
videobrowser         - Video Browser
videogallery         - Video Gallery
videolistings        - Video Listings
videomanager         - Video Manager
viewscheduled        - Manage Recordings / Fix Conflicts

key

key LETTER           - Send the letter key specified
key NUMBER           - Send the number key specified
key CODE             - Send one of the following key codes

Supported keys:

#, $, %, &, (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, [, \, ], ampersand, asterisk, backslash, backspace, 
backtab, bar, bracketleft, bracketright, colon, comma, delete, dollar, down, end, enter, equal, escape, 
f1, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f2, f20, f21, f22, f23, f24, f3, f4, f5, f6, f7, f8, f9, 
greater, home, insert, left, less, minus, numbersign, pagedown, pageup, parenleft, parenright, percent, 
period, pipe, plus, poundsign, question, return, right, semicolon, slash, space, tab, up, |

play

play volume NUMBER%    - Change volume to given percentage value
play channel up        - Change channel Up
play channel down      - Change channel Down
play channel NUMBER    - Change to a specific channel number
play chanid NUMBER     - Change to a specific channel id (chanid)
play file FILENAME     - Play FILENAME (FILENAME may be a file or a myth:// URL)
play program CHANID yyyy-MM-ddThh:mm:ss
                       - Play program with chanid & starttime
play program CHANID yyyy-MM-ddThh:mm:ss resume
                       - Resume program with chanid & starttime
play save preview
                       - Save preview image from current position
play save preview FILENAME
                       - Save preview image to FILENAME
play save preview FILENAME WxH
                       - Save preview image of size WxH
play seek beginning    - Seek to the beginning of the recording
play seek forward      - Skip forward in the video
play seek backward     - Skip backwards in the video
play seek HH:MM:SS     - Seek to a specific position
play speed pause       - Pause playback
play speed normal      - Playback at normal speed
play speed 1x          - Playback at normal speed
play speed SPEEDx      - Playback where SPEED must be a decimal
play speed 1/8x        - Playback at 1/8x speed
play speed 1/4x        - Playback at 1/4x speed
play speed 1/3x        - Playback at 1/3x speed
play speed 1/2x        - Playback at 1/2x speed
play stop              - Stop playback
play music play        - Resume playback (MythMusic)
play music pause       - Pause playback (MythMusic)
play music stop        - Stop Playback (MythMusic)
play music setvolume N - Set volume to number (MythMusic)
play music getvolume   - Get current volume (MythMusic)
play music getmeta     - Get metadata for current track (MythMusic)
play music file NAME   - Play specified file (MythMusic)
play music track N     - Switch to specified track (MythMusic)
play music url URL     - Play specified URL (MythMusic)

query

query location        - Query current screen or location
query volume          - Query the current playback volume
query recordings      - List currently available recordings
query recording CHANID STARTTIME
                      - List info about the specified program
query liveTV          - List current TV schedule
query liveTV CHANID   - Query current program for specified channel
query load            - List 1/5/15 load averages
query memstats        - List free and total, physical and swap memory
query time            - Query current time on frontend
query uptime          - Query machine uptime
query verbose         - Get current VERBOSE filter
query version         - Query Frontend version details
query channels        - Query available channels
query channels START LIMIT - Query available channels from START and limit results to LIMIT lines

exit

Terminates the session.

Limitations & Workarounds

Some limitations exist in the front-end control protocol; especially with implementations that exist for plugins to MythTV. For instance it is not possible to list artists, albums or tracks in MythMusic, neither is it possible to add tracks to the current queue or change playback to something else without emulating key-presses, which requires knowledge of the exact position of the cursor by the application.

MythMusic Rescan Workaround: It is not possible to have MythMusic re-scan for music; although it is possible to emulate this behaviour. Using MythWeb, go to settings -> MythTV -> Key bindings and select the host (or hosts) from the drop-down you would like to be able to initiate a rescan programatically. Look up the row called "Scan Music". add a Key you would like to use (make sure it isnt a key you require elsewhere in the application as this is a global key-binding. Save the changes, you may need to restart the front-end in question. send the relevant key-press via the network control port to initiate music-rescan. i.e. nc localhost 6546 then if you used F6; # key f6

The above can also be done from a script, like so:

nc localhost 6546 -i 1 <<EOS
key f6
quit
EOS

Used By

Official
Python bindings Python class for interfacing with the frontend socket.
tkmythremote Simple graphical interface implemented in wish/tk
mythremctl.py Curses based remote written in python
MythWeb On screen and passthrough keyboard available in MythWeb
Mobile
MyMote Remote control and scheduler for the iPhone.
Mythetomer Graphical remote for Nokia Internet Tablets and Smartphones
MythMote Graphical remote for Android powered devices
MythTV Mobile Remote Graphical remote for Nokia N80
WebMyth App for HP webOS phones (i.e. Palm Pre)
Asterisk Remote control using any touchtone phone through Asterisk.
MythTV Web Remote Simple graphical web-based remote
iPhone Remote Another simple web-based remote
MythRemote Homebrew Nintendo DS remote
Windows Mobile via MythControl Windows Mobile remote
irreco A remote control application for Nokia Internet Tablets.
PC
MythRemote Graphical remote for OSX
DirectTV D11 Channel for controlling mythtv with a D11 remote
RemoteKommander Graphical remote for KDE
MythRemote Control Graphical remote written in Python/PythonCard
RocketRemote Graphical remote written in Adobe Flex
MythRemote Graphical remote written in Perl/Tk
cmdline-mythremote Very simple command line remote written in C

Development

Changeset [7f3dcdab]

The initial implementation.

Changeset [d86cf6e0]

Modified:

trunk/mythtv/programs/mythfrontend/networkcontrol.cpp

Log:

Network Control socket interface changes.

Add some new valid keys. The list:
home, end, return, tab, backtab, insert, delete, plus, comma, minus,
period, numbersign (aka poundsign), dollar, percent, ampersand, parenleft,
parenright, asterisk, question, bar, pipe, and F13 through F24. This also
adds the ability to use the actual symbol for mose of these such as "key +"
instead of having to type "key plus".

Add the ability to send key combinations such as CTRL+B, ALT+F, etc.. The
four supported modifiers are CTRL, ALT, SHIFT, and META and they can be
used individually such as CTRL+B or together such as CTRL+ALT+B.

Fix some minor bugs related to case conversion, previously the code would
lower() the whole input command and then uppercase the few places that
needed it such as when passing a Qt::ISODateTime, now we just lower() when
comparing things that need case-insensitive comparisons.

For debugging purposes, add the ability to sleep in the middle of a key
combination. You can now use the keyword 'sleep' to sleep one second in
the middle of a key command. Here's a not-so-useful example:
"key down down sleep down enter"

Changeset [4f40c42f]

Control socket now supports multiple simultaneous connections. Previous behavior was to terminate existing connections when a new one was made.

Changeset [7422f241a9c62]

Add playback functions for control of MythMusic.