- Install ffmpeg for your operating system.
- Open Panopto and log in.
- Open your browser’s developer tools and go to the network tab.
- Click on the lecture you want to download in Panopto.
- Look for request to
master.m3u8in the developer tools and copy the URL. It should look something like this:https://something.cloudfront.net/sessions/something/something.hls/master.m3u8. Remove anything aftermaster.m3u8. - Open a terminal and run
ffmpeg -i "<URL>" -c copy output.ts.1 If you’re not using macOS, either writeoutput.mp4,2 or download VLC. - Play the video with QuickTime Player or VLC.
Footnotes
-
This will save the file to the directory your terminal is open to. You may want to switch to, for example, your downloads folder (
cd ~/Downloads). ↩ -
This will convert the
.tsfile (MPEG-4 transport stream) into a more commonly-supported.mp4file. However, it will take longer and might be worth instead installing a program that can open.tsvideo files. ↩