github.com/pion/webrtc/v3@v3.2.24/examples/save-to-disk/README.md (about)

     1  # save-to-disk
     2  save-to-disk is a simple application that shows how to record your webcam/microphone using Pion WebRTC and save VP8/Opus to disk.
     3  
     4  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)
     5  
     6  If you wish to save AV1 instead see [save-to-disk-av1](https://github.com/pion/webrtc/tree/master/examples/save-to-disk-av1)
     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
    12  ```
    13  export GO111MODULE=on
    14  go get github.com/pion/webrtc/v3/examples/save-to-disk
    15  ```
    16  
    17  ### Open save-to-disk example page
    18  [jsfiddle.net](https://jsfiddle.net/s179hacu/) you should see your Webcam, two text-areas and two buttons: `Copy browser SDP to clipboard`, `Start Session`.
    19  
    20  ### Run save-to-disk, 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`
    26  #### Windows
    27  1. Paste the SessionDescription into a file.
    28  1. Run `save-to-disk < my_file`
    29  
    30  ### Input save-to-disk's SessionDescription into your browser
    31  Copy the text that `save-to-disk` 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` you should now have a file `output-1.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