How to put a webcam recording and a desktop recording side by side with ffmpeg

user123456

I want to directly put 2 ffmpeg outut side by side in order to output a video that has both videos.

The recording ares

  1. a 640x480 webcam recording with:

    ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 webcam.mkv
    
  2. a desktop recording video of 1600x900 with

    ffmpeg -f x11grab -r 100 -s 1600x900 -i :0.0 -acodec pcm_s16le -vcodec libx264 -preset ultrafast -threads 3 desktop.mkv
    
                  ---------------
                  |             |
       |----------|   desktop   |
       |  webcam  |             |
       --------------------------
    
llogan
ffmpeg \
-f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 \
-f x11grab -framerate 100 -video_size 1600x900 -i :0.0 \
-filter_complex "[0:v]pad=iw:900:0:(oh-ih)/2[left];[left][1:v]hstack" \
output
  • Use -framerate instead of -r and -video_size instead of -s for x11grab.
  • The hstack filter will use the frame rate of the first input, so you may add the fps filter after the pad filter if desired.
  • -framerate 100 seems high and may not be sustainable.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

When streaming / recording my desktop, how do I also record the audio?

분류에서Dev

How to configure server side parameters in tableau desktop (with HIVE)?

분류에서Dev

How to handle the recording issues in jmeter? (i.e) Smack plugin activities are not recording in JMeter

분류에서Dev

Hi! how to put the div background image place side by side with the <ul> BUT with NO using FLOAT. Just with the width of every elements

분류에서Dev

How to implement side-by-side tableviews

분류에서Dev

How to align divs side by side without overlapping?

분류에서Dev

Recording a bash session

분류에서Dev

how can i exclude a URL in Jmeter while recording?

분류에서Dev

how can i synchronize wordpress between local side and remote side?

분류에서Dev

How to compare 2 specific processors with the same benchmark side by side?

분류에서Dev

How to play multiple videos side-by-side synchronized?

분류에서Dev

Corrupt recording with repeating audio in IOS

분류에서Dev

Red recording bar distorting view

분류에서Dev

Pandas series - recording numerical changes

분류에서Dev

Audio meter when recording is on in ios

분류에서Dev

OBS recording videos at 1000 FPS

분류에서Dev

how to display textview to right side in tablerow in android

분류에서Dev

How "Install along side Windows" option works

분류에서Dev

How "Install along side Windows" option works

분류에서Dev

How to adjust WPF Scrollviewer stick with windows side

분류에서Dev

How to get control data through the aspx side

분류에서Dev

How to only capture the matching side of a disjunction?

분류에서Dev

How to spawn a shell using netcat on the client side?

분류에서Dev

How to hide side panel in Nautilus by default?

분류에서Dev

Two PHP tables side by side

분류에서Dev

Print two functions side by side

분류에서Dev

Bootstrap Show LI side by side

분류에서Dev

Command output print side by side

분류에서Dev

Two divs side by side: how can i make the div that is on the left side go down when it breaks for responsive layout?

Related 관련 기사

  1. 1

    When streaming / recording my desktop, how do I also record the audio?

  2. 2

    How to configure server side parameters in tableau desktop (with HIVE)?

  3. 3

    How to handle the recording issues in jmeter? (i.e) Smack plugin activities are not recording in JMeter

  4. 4

    Hi! how to put the div background image place side by side with the <ul> BUT with NO using FLOAT. Just with the width of every elements

  5. 5

    How to implement side-by-side tableviews

  6. 6

    How to align divs side by side without overlapping?

  7. 7

    Recording a bash session

  8. 8

    how can i exclude a URL in Jmeter while recording?

  9. 9

    how can i synchronize wordpress between local side and remote side?

  10. 10

    How to compare 2 specific processors with the same benchmark side by side?

  11. 11

    How to play multiple videos side-by-side synchronized?

  12. 12

    Corrupt recording with repeating audio in IOS

  13. 13

    Red recording bar distorting view

  14. 14

    Pandas series - recording numerical changes

  15. 15

    Audio meter when recording is on in ios

  16. 16

    OBS recording videos at 1000 FPS

  17. 17

    how to display textview to right side in tablerow in android

  18. 18

    How "Install along side Windows" option works

  19. 19

    How "Install along side Windows" option works

  20. 20

    How to adjust WPF Scrollviewer stick with windows side

  21. 21

    How to get control data through the aspx side

  22. 22

    How to only capture the matching side of a disjunction?

  23. 23

    How to spawn a shell using netcat on the client side?

  24. 24

    How to hide side panel in Nautilus by default?

  25. 25

    Two PHP tables side by side

  26. 26

    Print two functions side by side

  27. 27

    Bootstrap Show LI side by side

  28. 28

    Command output print side by side

  29. 29

    Two divs side by side: how can i make the div that is on the left side go down when it breaks for responsive layout?

뜨겁다태그

보관