Added powershell script for converting vtt subtitles to srt.
VTT subtitles do not transcode in Plex.
This commit is contained in:
1
youtube/vtt2srt.ps1
Normal file
1
youtube/vtt2srt.ps1
Normal file
@@ -0,0 +1 @@
|
||||
dir *.* | foreach-object { $newname = $_.Name.Remove($_.Name.Length - $_.Extension.Length) + ".srt"; ffmpeg.exe -i "$_" $newname }
|
||||
Reference in New Issue
Block a user