bennettpeter / android-MythTV-Leanfront

:tv: MythTV Android TV frontend
GNU General Public License v3.0
45 stars 9 forks source link

Feature request: Add Playback Data function #55

Closed jusmop closed 1 year ago

jusmop commented 1 year ago

I'm thinking of the same function that is available in MythTV Frontend during playback. See, for example: https://photos.app.goo.gl/zy9vJkQoP3YS91ur6

Jpilk commented 1 year ago

Similar info can be shown in playback with mpv. Just press 'i'.

bennettpeter commented 1 year ago

Playback is handled by Exoplayer, unlike mythfrontend which has its own player code. The same data that is shown on mythfrontend is not easily available. Stats that are available are here (see fields and "get" methods on this page): https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/analytics/PlaybackStats.html The video audio and subtitle format are also available, see here https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/Format.html Unfortunately I know from experience that some of these things, for example the framerate, return "NO_VALUE" so they are useless.

If there is anything useful in here I could add a menu that can display it. What do you think would be useful?

bennettpeter commented 1 year ago

Closed due to a lack of response to my question.