You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm following the steps at https://brandur.org/fragments/ffmpeg-h265 to allow ffmpeg-converted H.265 videos to be playable on QuickTime. However, I'm still unsure on how to set that properly using this library.
In a batch processing Go script, I decided to use the following examples to convert H.264 videos to H.265.
Hi, I'm following the steps at https://brandur.org/fragments/ffmpeg-h265 to allow ffmpeg-converted H.265 videos to be playable on QuickTime. However, I'm still unsure on how to set that properly using this library.
In a batch processing Go script, I decided to use the following examples to convert H.264 videos to H.265.
In this case, the tag is still not applied properly.
I've also replaced
trans.MediaFile().SetTags(map[string]string{"p": "hvc1"})
with others, including:trans.MediaFile().SetTags(map[string]string{"hvc1": ""})
(same behavior)trans.MediaFile().SetRawOutputArgs([]string{"-tag:v hvc1"})
ffmpeg -y -i videos/orig/58.mp4 -r 30 -ar 44100 -c:v libx265 -profile:v main -c:a aac -preset fast -tag:v hvc1 -hls_list_size 0 videos/h265-aac-mp4/58.mp4
manually works and produces the QuickTime-playable HEVC video.The text was updated successfully, but these errors were encountered: