github.com/pion/webrtc/v3@v3.2.24/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  export GO111MODULE=on
    14  go get github.com/pion/webrtc/v3/examples/save-to-disk-av1
    15  ```
    16  
    17  ### Open save-to-disk-av1 example page
    18  [jsfiddle.net](https://jsfiddle.net/xjcve6d3/) you should see your Webcam, two text-areas and two buttons: `Copy browser SDP to clipboard`, `Start Session`.
    19  
    20  ### Run save-to-disk-av1, with your browsers SessionDescription as stdin
    21  In the jsfiddle the top textarea is your browser's Session Description. Press `Copy browser SDP to clipboard` or copy the base64 string manually.
    22  We will use this value in the next step.
    23  
    24  #### Linux/macOS
    25  Run `echo $BROWSER_SDP | save-to-disk-av1`
    26  #### Windows
    27  1. Paste the SessionDescription into a file.
    28  1. Run `save-to-disk-av1 < my_file`
    29  
    30  ### Input save-to-disk-av1's SessionDescription into your browser
    31  Copy the text that `save-to-disk-av1` just emitted and copy into second text area
    32  
    33  ### Hit 'Start Session' in jsfiddle, wait, close jsfiddle, enjoy your video!
    34  In the folder you ran `save-to-disk-av1` you should now have a file `output.ivf` play with your video player of choice!
    35  > Note: In order to correctly create the files, the remote client (JSFiddle) should be closed. The Go example will automatically close itself.
    36  
    37  Congrats, you have used Pion WebRTC! Now start building something cool