From e5dc53e17f198818657a6afcd8a8c5e051239731 Mon Sep 17 00:00:00 2001 From: Nonoo Date: Mon, 14 Aug 2023 16:26:42 +0200 Subject: [PATCH] Add HEVC to the compatible video codecs --- convert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert.go b/convert.go index ef6a717..8d0a3c3 100644 --- a/convert.go +++ b/convert.go @@ -21,7 +21,7 @@ import ( const probeTimeout = 10 * time.Second const maxFFmpegProbeBytes = 20 * 1024 * 1024 -var compatibleVideoCodecs = []string{"h264", "vp9"} +var compatibleVideoCodecs = []string{"h264", "vp9", "hevc"} var compatibleAudioCodecs = []string{"aac", "opus", "mp3"} type ffmpegProbeDataStreamsStream struct {