1. No user installed addons are supported, python or otherwise.
2. No, they really are not supported.
3. They are not coming back
4. Read from 1. again

Any mention of illegal streaming sites, addons or any pirated material will not be tolerated. This is not democracy and any offenders will be banned and posts deleted immediately without warning.

Other than that, we hope you enjoy MrMC so far and we welcome any input and feedback you might have.

Team MrMC.

Support for external webVTT subtitle format

there is zero(0) promises that any of the requests will be fulfilled or even looked at
Post Reply
chrisc2r
Posts: 25
Joined: 11 Jun 2019, 12:13

Support for external webVTT subtitle format

Post by chrisc2r »

Hello,
Would it be possible to add support for the external webVTT subtitle format? It seems to be an extension of the SRT format, with enhanced functionality, such as the use of colour and other tagged attributes:

https://www.w3.org/TR/webvtt1/

Downloaded VTT files display if they are renamed as .srt, but lose all their additional formatting, so it seems that it may not be a massive leap to provide improved support.

Thanks for the consideration,
Chris
chrisc2r
Posts: 25
Joined: 11 Jun 2019, 12:13

Re: Support for external webVTT subtitle format

Post by chrisc2r »

If anyone else comes across this thread, you can batch convert webvtt using ffmpeg under linux as follows

Code: Select all

for i in *.vtt; do ffmpeg -i "$i" "${i%.*}.srt"; done
Post Reply