gpt4 book ai didi

ubuntu - AVCONV 截屏音频跳过

转载 作者:行者123 更新时间:2023-12-03 00:47:13 24 4
gpt4 key购买 nike

我没有音频/视频不同步的问题。我的音频很好,并且同步。问题是音频文件跳过。这是我的输出:http://youtu.be/D2TdXnXHt8o

这是我的脚本:

#!/bin/sh
echo "Enter the output file name: "; read name

fullscreen=$(xwininfo -root | grep 'geometry' | awk '{print $2;}')

avconv -f alsa -i pulse -f x11grab -r 30 -s $fullscreen -i :0.0 -vcodec libx264 -acodec mp3 -preset ultrafast -threads 4 -y $name

使用 Ubuntu 14.04

最佳答案

很遗憾 avconv 还没有解决这个问题,尽管它应该是对 ffmpeg 的改进。在我的 Ubuntu 14.04 上,我通过安装 ffmpeg

sudo add-apt-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg

然后我运行 ffmpeg
ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 25 -video_size 1920x1080 -i :0.0+0,0 -acodec flac -vcodec libx264 -preset ultrafast -crf 0 -threads 0 screenoutput.mkv

和音频和视频现在很好地同步。

关于ubuntu - AVCONV 截屏音频跳过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25175558/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com