Added ffm2hevc.sh to get Apple-compatible HEVC MOV.

This commit is contained in:
Markus Birth 2020-11-15 00:00:22 +01:00
parent d8f4404110
commit 175773c856
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

3
ffm2hevc.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
ffmpeg -i "$1" -map 0 -map_metadata 0 -c:v libx265 -preset slow -pix_fmt yuvj420p -tag:v hvc1 -movflags +faststart -c:a aac -b:a 160k -ar 44100 -crf 20 -x265-params crf=20 "$1.hevc.mov"