只讨论有关FFmpeg库,API或工具的编程使用的问题。应在超级用户或视频制作上询问有关交互式使用命令行工具的问题。 FFmpeg是一个免费的开源项目,可以生成用于处理多媒体数据的库和程序。
如何使用 ffmpeg av_seek_frame() 在具有帧号的情况下读取任何帧
int64_t timeBase; timeBase = (int64_t(pavStrm-> time_base.num) * AV_TIME_BASE) / int64_t(pavStrm->time_base.den); int64_teekTarget = int64_t(iFrameNumber) * timeBase; av_seek_frame(fmt_ctx,...
使用 AV_PIX_FMT_D3D11 的 FFMPEG 给出来自 NVENC 的“注册输入资源时出错”
输入帧在 GPU 上以 ID3D11Texture2D 指针开始。 我使用 FFMPEG + NVENC 将它们编码为 H264。如果我将纹理以 AV_PIX_FMT_BGR0 格式下载到 CPU 内存,NVENC 可以完美工作,但是...
我在将 ffmpeg 管道输出到 ffmpeg 输入时遇到问题。我试过如下 ffmpeg -i "y:�0012936-TXMHD.mxf" -vcodec 复制 -acodec 复制 -f mpegts 管道:1 | ffmpeg -re -i 管道...
如何在MediaMTX服务器上将传入流分割成多个不同分辨率的流? rtsp中有一个传入流,需要将其分成多个不同的通道
我正在尝试使用此命令拍摄一个 5 分钟的视频文件并生成一个单文件 HLS 播放列表 ffmpeg -i video.mp4 -编解码器复制 -bsf:v h264_mp4toannexb -hls_time 4 -hls_flags single_file -
我按照这里的步骤编译FFmpeg。 并且没有问题。它运作良好。但我不明白一些事情。 我的主目录下有两个文件夹。 --ffmpeg_源 --ffmpeg_bu...
我正在尝试从我的 USB 相机中每 x 秒拍摄一帧。相机名称为:ELP-USBFHD06H-SFV(5-50)。 代码尚未 100% 完成,但我现在就这样使用它 ↓ (shot fn 被称为...
我正在尝试 FFMPEG 中的 hw_decode.c 示例。 但是,我在类中使用这些函数: FFreader类 { AVPixelFormat get_hw_format(AVCodecContext* ctx, const AVPixelFormat* pix_f...
如何将 RTP(IP 摄像头)流式传输到 React 应用程序设置中
我正在尝试将来自 IP 摄像机的实时广播或来自 RTP/RTSP 源的任何其他广播传输到我的 REACT 应用程序。但必须是实时的 我目前的设置是: 网络摄像机 ->...
由于 Sound Track Pro 故障,我的 AIF 文件有问题。 它在 QuickTime Player 中播放良好,长度约为 1 小时 50 分钟。 然而: 它的大小为 3.81GB,而(我相信)AIF 文件是
我需要对视频应用淡入和叠加滤镜。是否可以同时应用 2 个过滤器? 我得到: ffmpeg -i input.mpg -vf "movie=watermark.png [标志]; [in][标志] 覆盖=W-w-1...
Ffmpeg 没有设置正确的变量名称,因此抛出 Unable to select format
我正在尝试自动将字幕添加到包含一些视频的文件夹中,因此我编写了以下脚本: forfiles /p "C:\Users itos\Resilio_Sync K_Video_Downloader ideoprocess" /m *....
我正在尝试在 Flutter 中使用 ffmpeg 将两个音频文件叠加在一起并循环播放 3 分钟。现在我有这个命令 -i $路径1 -i $路径2 -filter_complex \" [0]一个...
我正在开发一个代码来保存网络摄像头的视频,我需要使用 4 个不同的编解码器保存相同的视频,但我无法保存在 h.265 中,我收到以下错误: [错误:[email protected]] 全局 cap_ffmpeg_im...
我正在开发一个嵌入式Linux系统(5.10.24),我想在其中使用FFMPEG API播放m3u8音频流。 这是我的代码。 #包括 #包括 #包括 我正在开发一个嵌入式Linux系统(5.10.24),我想在其中使用FFMPEG API播放m3u8音频流。 这是我的代码。 #include <stdio.h> #include <stdbool.h> #include <alsa/asoundlib.h> #include <libswresample/swresample.h> #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> #include <libswscale/swscale.h> int init_pcm_play(snd_pcm_t **playback_handle,snd_pcm_uframes_t chunk_size,unsigned int rate,int bits_per_sample,int channels) { snd_pcm_hw_params_t *hw_params; snd_pcm_format_t format; //1. openPCM, if (0 > snd_pcm_open(playback_handle, "default", SND_PCM_STREAM_PLAYBACK, 0)) { printf("snd_pcm_open err\n"); return -1; } //2. snd_pcm_hw_params_t if(0 > snd_pcm_hw_params_malloc (&hw_params)) { printf("snd_pcm_hw_params_malloc err\n"); return -1; } //3. hw_params if(0 > snd_pcm_hw_params_any (*playback_handle, hw_params)) { printf("snd_pcm_hw_params_any err\n"); return -1; } //4. if (0 > snd_pcm_hw_params_set_access (*playback_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) { printf("snd_pcm_hw_params_any err\n"); return -1; } //5. SND_PCM_FORMAT_U8,8 if(8 == bits_per_sample) { format = SND_PCM_FORMAT_U8; } if(16 == bits_per_sample) { format = SND_PCM_FORMAT_S16_LE; } if (0 > snd_pcm_hw_params_set_format (*playback_handle, hw_params, format)) { printf("snd_pcm_hw_params_set_format err\n"); return -1; } //6. if (0 > snd_pcm_hw_params_set_rate_near (*playback_handle, hw_params, &rate, 0)) { printf("snd_pcm_hw_params_set_rate_near err\n"); return -1; } //7. if (0 > snd_pcm_hw_params_set_channels(*playback_handle, hw_params, 2)) { printf("snd_pcm_hw_params_set_channels err\n"); return -1; } //8. set hw_params if (0 > snd_pcm_hw_params (*playback_handle, hw_params)) { printf("snd_pcm_hw_params err\n"); return -1; } snd_pcm_hw_params_get_period_size(hw_params, &chunk_size, 0); snd_pcm_hw_params_free (hw_params); return 0; } int main(int argc, char *argv[]) { AVFormatContext *pFormatCtx = NULL; //for opening multi-media file int audioStream = -1; AVCodecContext *pCodecCtx = NULL; AVCodec *pCodec = NULL; // the codecer AVFrame *pFrame = NULL; AVPacket *packet; uint8_t *out_buffer; struct SwrContext *au_convert_ctx; snd_pcm_t *playback_handle; int bits_per_sample = 0; if (avformat_open_input(&pFormatCtx, argv[1], NULL, NULL) != 0) { printf("Failed to open video file!"); return -1; // Couldn't open file } if(avformat_find_stream_info(pFormatCtx,NULL)<0) { printf("Failed to find stream info.\n"); return -1; } audioStream = av_find_best_stream(pFormatCtx, AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0); if (audioStream == -1) { printf("Din't find a video stream!"); return -1;// Didn't find a video stream } av_dump_format(pFormatCtx, audioStream, NULL, false); // Find the decoder for the video stream pCodec = avcodec_find_decoder(pFormatCtx->streams[audioStream]->codecpar->codec_id); if (pCodec == NULL) { printf("Unsupported codec!\n"); return -1; // Codec not found } // Copy context pCodecCtx = avcodec_alloc_context3(pCodec); AVCodecParameters *pCodecParam = pFormatCtx->streams[audioStream]->codecpar; if (avcodec_parameters_to_context(pCodecCtx, pCodecParam) < 0) { printf("Failed to set codec params\n"); return -1; } // Open codec if (avcodec_open2(pCodecCtx, pCodec, NULL) < 0) { printf("Failed to open decoder!\n"); return -1; // Could not open codec } packet = av_packet_alloc(); pFrame = av_frame_alloc(); uint64_t iInputLayout = av_get_default_channel_layout(pCodecCtx->channels); enum AVSampleFormat eInputSampleFormat = pCodecCtx->sample_fmt; int iInputSampleRate = pCodecCtx->sample_rate; uint64_t iOutputLayout = av_get_default_channel_layout(pCodecCtx->channels); int iOutputChans = pCodecCtx->channels; enum AVSampleFormat eOutputSampleFormat = AV_SAMPLE_FMT_S16; int iOutputSampleRate = pCodecCtx->sample_rate; au_convert_ctx = swr_alloc_set_opts(NULL,iOutputLayout, eOutputSampleFormat, iOutputSampleRate, iInputLayout,eInputSampleFormat, iInputSampleRate, 0, NULL); swr_init(au_convert_ctx); int iConvertLineSize = 0; int iConvertBuffSize = av_samples_get_buffer_size(&iConvertLineSize, iOutputChans, pCodecCtx->frame_size, eOutputSampleFormat, 0); printf("ochans: %d, ifrmsmp: %d, osfmt: %d, cbufsz: %d\n", iOutputChans, pCodecCtx->frame_size, eOutputSampleFormat, iConvertBuffSize); out_buffer = (uint8_t *) av_malloc(iConvertBuffSize); if(eOutputSampleFormat == AV_SAMPLE_FMT_S16 ) { bits_per_sample = 16; } /*** alsa handle ***/ init_pcm_play(&playback_handle,256, iOutputSampleRate,bits_per_sample,2); if (0 > snd_pcm_prepare (playback_handle)) { printf("snd_pcm_prepare err\n"); return -1; } while (av_read_frame(pFormatCtx, packet) >= 0) { if (packet->stream_index == audioStream) { avcodec_send_packet(pCodecCtx, packet); while (avcodec_receive_frame(pCodecCtx, pFrame) == 0) { int outframes = swr_convert(au_convert_ctx, &out_buffer, pCodecCtx->frame_size, (const uint8_t **) pFrame->data, pFrame->nb_samples); // 转换音频 snd_pcm_writei(playback_handle, out_buffer, outframes); av_frame_unref(pFrame); } } av_packet_unref(packet); } swr_free(&au_convert_ctx); snd_pcm_close(playback_handle); av_freep(&out_buffer); return 0; } 当我运行它时,我得到以下输出。 ./ffmpeg_test http://live.ximalaya.com/radio-first-page-app/live/2730/64.m3 u8 [hls @ 0x21a8020] Skip ('#EXT-X-VERSION:3') [hls @ 0x21a8020] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241104_000015_2186.aac' for reading [hls @ 0x21a8020] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241104_000015_2187.aac' for reading Input #0, hls, from '(null)': Duration: N/A, bitrate: N/A Program 0 Metadata: variant_bitrate : 0 Stream #0:0: Audio: aac (HE-AAC), 44100 Hz, stereo, fltp Metadata: variant_bitrate : 0 [http @ 0x21b7ba0] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241104_000015_2188.aac' for reading [hls @ 0x21a8020] Skip ('#EXT-X-VERSION:3') [http @ 0x21d4c20] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241104_000015_2189.aac' for reading 一开始可以播放音频,直到第二次Opening http://...发生。 如何使其能够连续播放m3u8音频流? 我找到了代码的修复程序,使其能够连续播放直播流。 需要添加以下代码 rc = snd_pcm_writei(playback_handle, out_buffer2, outframes); + if (rc < 0) { + snd_pcm_prepare(playback_handle); + } 也就是说,流媒体播放过程中出现错误,需要恢复ALSA错误。 现在可以连续播放直播了,但是我遇到了另一个问题:链接更改时会出现轻微的中断,如下, [http @ 0x6eaba0] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5b.aac' for reading ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred [http @ 0x7665d0] Opening 'http://live.ximalaya.com/radio-first-page-app/live/2730/64.m3u8' for reading [hls @ 0x6db020] Skip ('#EXT-X-VERSION:3') [http @ 0x707c40] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5c.aac' for reading ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred [http @ 0x7665d0] Opening 'http://live.ximalaya.com/radio-first-page-app/live/2730/64.m3u8' for reading [hls @ 0x6db020] Skip ('#EXT-X-VERSION:3') [http @ 0x6eaba0] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5d.aac' for reading ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred 我的缓冲区/周期设置似乎有问题,设置正确的值是多少???
我正在尝试从 2D 视频创建 3D 并排视频。显然,Windows 下有一些付费软件可以做到这一点,我想在 Linux 下做同样的事情......
每次使用 flutter 包 ffmpeg_kit_flutter 时,文件转换为 mp3 都会返回失败
我正在尝试将从 flutter 的文本到语音包“flutter_tts”生成的 .wav 音频文件转换为 mp3 文件,但每次都失败。 我已经为文件编写了以下代码
我正在努力编写尝试编写带有嵌入字幕的 mp4 视频文件的代码。 我成功编写了 h264 帧,但是当我尝试向该文件添加字幕时,出现错误
发送视频文件并接收它。我发现在收到第一帧之前有很长的延迟,大约 5-8 秒: ::发件人.bat ffmpeg -re -i example.mp4 -vcodec h264 -tune fastdecode -tune Zerolaten...