feat(video): display a user-friendly codec name in the console

This commit is contained in:
Gabe Kangas 2024-04-10 16:36:12 -07:00
parent 13df986a5c
commit bf0e6cdeb3
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -154,7 +154,7 @@ func (t *Transcoder) Start(shouldLog bool) {
} }
if err != nil { if err != nil {
log.Errorln("transcoding error. look at", logging.GetTranscoderLogFilePath(), "to help debug. your copy of ffmpeg may not support your selected codec of", t.codec.Name(), "https://owncast.online/docs/codecs/") log.Errorln("transcoding error. look at", logging.GetTranscoderLogFilePath(), "to help debug. your copy of ffmpeg may not support your selected codec of", t.codec.DisplayName(), "https://owncast.online/docs/codecs/")
} }
} }