I am trying to implement Mpeg DASH streaming using shaka packager. To generate segments of duration 5 seconds each, --segment_duration param helps me achieve this.
https://google.github.io/shaka-packager/html/documentation.html#chunking-options
I could see how a fragmented video is represented from the following link
What exactly is Fragmented mp4(fMP4)? How is it different from normal mp4?
- What is the purpose of fragmentation?
- Does the packager automatically create fragments when segmented?
- Does each segment have moof+mdat as represented above?
- What are subsegments?
- What happens if --segment_duration and --fragment_duration is set to the same value?
- What is the purpose of --min-buffer-time?