Add configuration property 'streamPublisherPassPlaylistAttributesAsMetadata'#6
Open
pszemus wants to merge 2 commits intoWowzaMediaSystems:mainfrom
Open
Conversation
…tadata' to specify playlist attributes that will be sent in onMetaData event
rogerlittin
requested changes
Feb 24, 2023
Contributor
rogerlittin
left a comment
There was a problem hiding this comment.
Initialise the playlistMetadata map as an empty map so you don't need to do a null or empty check later.
logger.info(CLASS_NAME + " Scheduled stream is now live: " + stream.getName());
AMFDataObj amfData = new AMFDataObj();
playlistMetadata.forEach(amfData::put);
if (amfData.size() > 0)
stream.getPublisher().getStream().sendDirect("onMetadata", amfData);
Contributor
Author
|
Hi @rogerlittin, I was considering that, but thought that |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add configuration property
streamPublisherPassPlaylistAttributesAsMetadatato specify playlist attributes (can be separated by commas) that will be sent inonMetaDataevents.This PR introduces the ability to add custom playlist attributes and pass them, on playlist start, as timed metadata, to the internal stream. This makes it possible to write other modules that can access those timed metadata and create appropriate DASH event messages (https://www.wowza.com/docs/convert-timed-metadata-from-amf-to-emsg-using-the-wowza-streaming-engine-java-api) or HLS ID3 tags (https://www.wowza.com/docs/how-to-convert-ontextdata-events-in-a-live-or-vod-stream-to-timed-events-id3-tags-in-an-apple-hls-stream).
The example usage would be to mark some playlists as ad blocks:
then set server/application configuration property
streamPublisherPassPlaylistAttributesAsMetadatatoadBreak,adBreakType(please notice that attributes can be separated by a comma) and use this information to create SCTE-35 DASH emsg or HLS ID3 tags.