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
Feature Request:
ffmpeg supports source overlay. It would be very nice to add this feature to Shaka-streamer.
This is very convenient for organizing branded broadcasting of a video stream (TV channel, presentation, broadcast of events, and so on)
overlay=64:64 - means that we want to place the logo with a shift of 64px to the right and with a shift of 64px down, relative to the upper left corner (0:0)
enable='between(t,0,20)' - means we want to overlay the logo in the range from 0 to 20 seconds
[0:v][1:v] - means layer order. The first layer (0: v) is video.mp4, the next (1: v) is logo.png
I understand that this is not paramount. But it would be very good to have such an option in the future :)
The text was updated successfully, but these errors were encountered:
We already have a feature where you can specify FFmpeg filters, but nothing yet that would allow -filter_complex with an image as input. We'll give some thought to how this would be specified in a config file. We didn't plan for -filter_complex in general.
joeyparrish
changed the title
[FRQ] Overlay logo
Add support for -filter_complex and/or logo overlay
Oct 13, 2019
One more filter complex use case is burning in subtitles as an overlay on the video. ie.
-filter_complex "[0:v][0:s]overlay[v]" -map "[v]"
-filter_complex "[0:v][0:s]overlay" https://trac.ffmpeg.org/wiki/HowToBurnSubtitlesIntoVideo
Feature Request:
ffmpeg supports source overlay. It would be very nice to add this feature to Shaka-streamer.
This is very convenient for organizing branded broadcasting of a video stream (TV channel, presentation, broadcast of events, and so on)
Example:
overlay=64:64 - means that we want to place the logo with a shift of 64px to the right and with a shift of 64px down, relative to the upper left corner (0:0)
enable='between(t,0,20)' - means we want to overlay the logo in the range from 0 to 20 seconds
[0:v][1:v] - means layer order. The first layer (0: v) is video.mp4, the next (1: v) is logo.png
I understand that this is not paramount. But it would be very good to have such an option in the future :)
The text was updated successfully, but these errors were encountered: