Added powershell script for converting vtt subtitles to srt.

VTT subtitles do not transcode in Plex.
This commit is contained in:
2022-09-30 23:42:31 -07:00
parent 92833a4770
commit 8054df7db9

1
youtube/vtt2srt.ps1 Normal file
View File

@@ -0,0 +1 @@
dir *.* | foreach-object { $newname = $_.Name.Remove($_.Name.Length - $_.Extension.Length) + ".srt"; ffmpeg.exe -i "$_" $newname }