github.com/pion/webrtc/v4@v4.0.1/examples/save-to-disk-av1/README.md (about) 1 # save-to-disk-av1 2 save-to-disk-av1 is a simple application that shows how to save a video to disk using AV1. 3 4 If you wish to save VP8 and Opus instead of AV1 see [save-to-disk](https://github.com/pion/webrtc/tree/master/examples/save-to-disk) 5 6 If you wish to save VP8/Opus inside the same file see [save-to-webm](https://github.com/pion/example-webrtc-applications/tree/master/save-to-webm) 7 8 You can then send this video back to your browser using [play-from-disk](https://github.com/pion/example-webrtc-applications/tree/master/play-from-disk) 9 10 ## Instructions 11 ### Download save-to-disk-av1 12 ``` 13 go install github.com/pion/webrtc/v4/examples/save-to-disk-av1@latest 14 ``` 15 16 ### Open save-to-disk-av1 example page 17 [jsfiddle.net](https://jsfiddle.net/xjcve6d3/) you should see your Webcam, two text-areas and two buttons: `Copy browser SDP to clipboard`, `Start Session`. 18 19 ### Run save-to-disk-av1, with your browsers SessionDescription as stdin 20 In the jsfiddle the top textarea is your browser's Session Description. Press `Copy browser SDP to clipboard` or copy the base64 string manually. 21 We will use this value in the next step. 22 23 #### Linux/macOS 24 Run `echo $BROWSER_SDP | save-to-disk-av1` 25 #### Windows 26 1. Paste the SessionDescription into a file. 27 1. Run `save-to-disk-av1 < my_file` 28 29 ### Input save-to-disk-av1's SessionDescription into your browser 30 Copy the text that `save-to-disk-av1` just emitted and copy into second text area 31 32 ### Hit 'Start Session' in jsfiddle, wait, close jsfiddle, enjoy your video! 33 In the folder you ran `save-to-disk-av1` you should now have a file `output.ivf` play with your video player of choice! 34 > Note: In order to correctly create the files, the remote client (JSFiddle) should be closed. The Go example will automatically close itself. 35 36 Congrats, you have used Pion WebRTC! Now start building something cool