Advertisement
MrLunk

Logitech C920 linux info and commands links backup

Nov 6th, 2018
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. Stream to youcrap:
  2. ffmpeg -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -f v4l2 -codec:v h264 -framerate 30 -video_size 1920x1080 -i /dev/video0 -codec:v copy -f flv rtmp://a.rtmp.youtube.com/live2/Stream Code
  3.  
  4. OR (2019)
  5. ffmpeg -ar 44100 -ac 2 -f alsa -i hw:1,0 -f v4l2 -codec:v h264 -framerate 30 -video_size 1920x1080 -itsoffset 0.5 -i /dev/video0 -copyinkf -codec:v copy -codec:a aac -ab 128k -g 10 -f flv rtmp://a.rtmp.youtube.com/live2/[your youtube streamkey here]
  6.  
  7. https://www.kurokesu.com/main/2016/01/16/manual-usb-camera-settings-in-linux/
  8.  
  9. https://video.stackexchange.com/questions/12105/add-an-image-overlay-in-front-of-video-using-ffmpeg
  10.  
  11. Overlay example 001:
  12. ffmpeg -i video.mp4 -i watermark.png -filter_complex "[0:v]scale=640:360[bg];[bg][1:v]overlay=10:10" -tune psnr -refs 3 -c:v libx265 -preset veryslow -crf 33 videofull.mp4
  13.  
  14. https://github.com/kkroening/ffmpeg-python
  15.  
  16. https://manpages.debian.org/unstable/ffmpeg/ffmpeg-all.1.en.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement