We have used Brightcove to transcode many of our videos into the HLS and DASH formats. We’d like to leverage our transcoding and copy these HLS and DASH formats for use somewhere else. Is there a way to download the raw HLS and DASH video formats?
Download HLS and DASH from Brightcove
Page 1 / 1
You can streamline this process by creating a script that utilizes the BC Playback API to retrieve the HLS/DASH CDN URL and ffmpeg
to download the content.
For DASH streams:
ffmpeg -i "http://example.com/path/to/video-file.mpd" -c copy output.mpd
For HLS streams:
ffmpeg -i "http://example.com/path/to/video-file.m3u8" -c copy output.ts
Note that the .m3u8
file is a playlist and does not contain the media content itself. Instead, it references .ts
segments. ffmpeg
can be used to fetch these segments and combine them into a single file if needed.
Reply
Login to the community
No account yet? Create an account
Brightcove Employee Login
LOGIN VIA OKTAor
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.