ffmpeg unable to record video with audio how to solve it?

Madhav Nikam

ffmpeg unable to record video with audio how to solve it?

$ ffmpeg -f oss -i /dev/audio -f x11grab -s 1280x1024 -r 3 -ab 11 -i :0.0 /tmp/out.mp4

ffmpeg version N-77455-g4707497 Copyright (c) 2000-2015 the FFmpeg developers
  built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04)
  configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libdcadec --enable-libfreetype --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvo-aacenc --enable-libvidstab
  libavutil      55. 11.100 / 55. 11.100
  libavcodec     57. 20.100 / 57. 20.100
  libavformat    57. 20.100 / 57. 20.100
  libavdevice    57.  0.100 / 57.  0.100
  libavfilter     6. 21.101 /  6. 21.101
  libavresample   3.  0.  0 /  3.  0.  0
  libswscale      4.  0.100 /  4.  0.100
  libswresample   2.  0.101 /  2.  0.101
  libpostproc    54.  0.100 / 54.  0.100
[oss @ 0xa500340] /dev/audio: No such file or directory
/dev/audio: Input/output error
theodorn

This worked for me:

ffmpeg -f pulse -ac 2 -i default -f x11grab -r 30 -s 1280x720 -i :0.0 -c:v libx264 -c:a pcm_s16le filename.mkv

Based on this video. Contains lots of useful information.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Record audio and video by using FFmpeg

From Dev

How to record audio with ffmpeg on linux?

From Dev

How to record desktop with audio on ffmpeg

From Dev

How can I record an mp4 video from a webcam with a different audio source with FFMPEG?

From Dev

How do I record audio and video to a file from my webcam using ffmpeg?

From Dev

ffmpeg - Record Audio Volume Equal to the Video Being Played

From Dev

How to merge audio and video file in ffmpeg

From Dev

Android: How to record video with a custom audio track?

From Dev

Android: How to record video with a custom audio track?

From Dev

ffmpeg - replace audio in video

From Dev

Crossfading Video AND Audio with ffmpeg

From Dev

ffmpeg: How to synchronize audio from overlayed video when that video is playing

From Dev

Gstreamer Record Audio and Video

From Dev

How to add replace audio of video and loop audio if video duration is greater than audio duration in ffmpeg?

From Dev

How to add audio to video file at a specific time using ffmpeg

From Dev

How can I get exact delay between audio and video with ffmpeg?

From Dev

How to overlay multiple video files and merge all audio with ffmpeg?

From Dev

How to merge two video without audio stream in ffmpeg

From Dev

How to merge video flv and audio wav file in ffmpeg

From Dev

How to merge three or more Audio/Video Files in ffmpeg with Picture in Picture

From Dev

How to merge two Audio/Video Files in ffmpeg with Picture in Picture

From Dev

how to combine two video and one audio via ffmpeg?

From Dev

How to combine audio and video into one file with ffmpeg from the different offset?

From Dev

How to overlay a png to piped video source with audio mixed in via ffmpeg?

From Dev

record screen and internal audio with ffmpeg

From Dev

How to record video and play audio at the same time (swift tutorial)

From Dev

How load video and audio content in tt_news record

From Dev

How to record video and audio simultaneously via kinect camera

From Dev

ffmpeg: concat video and audio files

Related Related

  1. 1

    Record audio and video by using FFmpeg

  2. 2

    How to record audio with ffmpeg on linux?

  3. 3

    How to record desktop with audio on ffmpeg

  4. 4

    How can I record an mp4 video from a webcam with a different audio source with FFMPEG?

  5. 5

    How do I record audio and video to a file from my webcam using ffmpeg?

  6. 6

    ffmpeg - Record Audio Volume Equal to the Video Being Played

  7. 7

    How to merge audio and video file in ffmpeg

  8. 8

    Android: How to record video with a custom audio track?

  9. 9

    Android: How to record video with a custom audio track?

  10. 10

    ffmpeg - replace audio in video

  11. 11

    Crossfading Video AND Audio with ffmpeg

  12. 12

    ffmpeg: How to synchronize audio from overlayed video when that video is playing

  13. 13

    Gstreamer Record Audio and Video

  14. 14

    How to add replace audio of video and loop audio if video duration is greater than audio duration in ffmpeg?

  15. 15

    How to add audio to video file at a specific time using ffmpeg

  16. 16

    How can I get exact delay between audio and video with ffmpeg?

  17. 17

    How to overlay multiple video files and merge all audio with ffmpeg?

  18. 18

    How to merge two video without audio stream in ffmpeg

  19. 19

    How to merge video flv and audio wav file in ffmpeg

  20. 20

    How to merge three or more Audio/Video Files in ffmpeg with Picture in Picture

  21. 21

    How to merge two Audio/Video Files in ffmpeg with Picture in Picture

  22. 22

    how to combine two video and one audio via ffmpeg?

  23. 23

    How to combine audio and video into one file with ffmpeg from the different offset?

  24. 24

    How to overlay a png to piped video source with audio mixed in via ffmpeg?

  25. 25

    record screen and internal audio with ffmpeg

  26. 26

    How to record video and play audio at the same time (swift tutorial)

  27. 27

    How load video and audio content in tt_news record

  28. 28

    How to record video and audio simultaneously via kinect camera

  29. 29

    ffmpeg: concat video and audio files

HotTag

Archive