1
0

Added script to transcode video files into format for Plex Web Player.

This commit is contained in:
2016-03-13 23:13:03 +01:00
parent 30ab240f9d
commit 67188ef32d

2
plexoptimize.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
ffmpeg -i "$1" -c:v h264 -c:a libvo_aacenc -preset fast -movflags +faststart -crf 18 -b:a 192k "$1.mp4"