unifiedstreaming / fmp4-ingest

Repository on shared work on developing a fragmented MPEG-4 ingest specification
32 stars 11 forks source link

Image

Unified Streaming fmp4ingest Tools
DASH-IF Live Media Ingest Protocol - Interface 1 (CMAF)

Overview

Image

fmp4ingest: CMAF ingest source defined in:

https://dashif-documents.azurewebsites.net/Ingest/master/DASH-IF-Ingest.html

fmp4Init: retrieve the init fragment or CMAF Header from a fmp4 file

fmp4dump: print the contents of an fmp4 file to the cout, including scte markers

ingest_receiver_node.js: simple receiver based on node.js works with short running posts and using the Streams(), stores the ingested content as cmaf track files

Features implemented in fmp4ingest

Usage

fmp4ingest -r -u http://localhost/pubpoint/channel1.isml 1.cmfv 2.cmfv 3.cmft

node ingest_receiver_node.js

fmp4init in.cmfv

New for DASH-IF ingest v1.1 distinct segment uri path based on segmentTemplate

In DASH-IF ingest v1.1. the (relative) paths of each segment may be determined by the SegmentTemplate, in this update the SegmentTemplate@initialization and SegmentTemplate@media are required to be identical for each SegmentTemplateElement. Further, each @initialization and @media shall contain the (sub-)string $Representation$. The @media shall contain substring $Time$ or $Number$ (not both). This enables easy mapping of segment url to representations and back.

The @media and @initialization can be given as commandline arguments to fmp4ingest

fmp4ingest --initialization $RepresentationID$-init.m4s --media $RepresentationID$-0-I-$Number$.m4s -r -u http://localhost/pubpoint/channel1.isml 1.cmfv 2.cmfv 3.cmft

will use the naming scheme for the segments via the string from the SegmentTemplate.

Unified Origin does not support this naming natively, thus a script is included based on python to generate rewrite rules:

Python get_rewrite.py in.mpd

Will print the apache rewrite rules using mod rewrite to map this to /Streams() mapping. It is expected that such features will be supported natively in later releases.

New Support for pusing markers and webvtt using encoder/packager synch

A new program push_markers was added that pushes markers with regular ad intervals and webvtt

push_markers --announce 1000 --seg_dur 1920 --vtt --avail 19200 9600 -u http://localhost/test/test.isml

the option --webvtt allows sending webvtt segment with time code.

The segments are are of seg_duration and numbered since unix epoch

--announce allows sending the segments in advance

--avail option works interval[ms] break_duration[ms]

--splice_immediate allows setting splice immediate flag

Reference

See ingest-tools folder in this repository for source code of reference implementation of file based cmaf-ingest

a demo of ingesting cmaf content ot Unified origin using docker containers and docker compose can be found here:

https://github.com/unifiedstreaming/cmaf-ingest-demo