🚚 Move all pages to docs/
🔥 Also delete old pages
This commit is contained in:
parent
eee1c30f6a
commit
1682796065
29 changed files with 0 additions and 2827 deletions
17
docs/Howtos/HowtoEncoding.md
Normal file
17
docs/Howtos/HowtoEncoding.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Convert
|
||||
|
||||
# MKV to WebM
|
||||
|
||||
~~~
|
||||
$ ffmpeg -i input.mkv -c:v libvpx -qmin 0 -qmax 50 -crf 10 -b:v 2M -c:a libvorbis output.webm
|
||||
~~~
|
||||
|
||||
# Recording Screen
|
||||
|
||||
## Within a specified zone
|
||||
|
||||
```
|
||||
avconv -threads auto -f pulse -i bluez_sink.0C_E0_E4_81_2F_C1.monitor -ac 2 -f pulse -i alsa_input.usb-BLUE_MICROPHONE_Blue_Snowball_201306-00-Snowball.analog-mono -ac 1 -f x11grab -show_region 1 -s 1024x768 -i :0.0+112,111 -c:v libvpx -pre:v libvpx-720p -vsync cfr -r 15 -c:a libvorbis -q:a 6 -filter_complex amix=inputs=2 output.webm
|
||||
```
|
||||
|
||||
With sound from microphone and monitor of input.
|
Loading…
Add table
Add a link
Reference in a new issue