- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在为 flv 文件加载 AVCodec
时遇到问题。 (加载mp3或者avi文件好像没有问题)
实际错误是:
[vorbis @ 0x1550aa0] Extradata missing.
所以我会保持简单并问你:
有人熟悉这种类型的错误吗?
因为我花了几个小时谷歌搜索但没有成功
在 ffmpeg avcodec_open2()
的上下文中,“extradata missing” 到底是什么意思?
你可以在下面看到我的代码:
#ifdef __cplusplus
#define __STDC_CONSTANT_MACROS
#ifdef _STDINT_H
#undef _STDINT_H
#endif
#endif
#include <stdint.h>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/avutil.h>
#include <libavutil/samplefmt.h>
}
#include <stdio.h>
int main(int argc, char * argv[])
{
if(argc < 2)
{
printf("you need to specify filename \n");
return -1;
}
av_register_all();
avcodec_register_all();
//opening a file
AVFormatContext *avFormatContext = NULL;
int ret = avformat_open_input(&avFormatContext, argv[1], NULL, NULL);
if (ret < 0)
return -2; // Couldn't open file
//print some basic info
printf("num of streams = %u\n", *(&avFormatContext->nb_streams));
printf("filename = %s\n", *(&avFormatContext->filename));
printf("start time = %ld \n", *(&avFormatContext->start_time));
printf("duration = %ld \n", *(&avFormatContext->duration));
printf("bit rate = %d\n", *(&avFormatContext->bit_rate));
printf("audio codec id = %d \n\n\n", *(&avFormatContext->audio_codec_id));
AVCodecContext * pCodecContext;
int audioStreamId = -1;
for(int i = 0; i < avFormatContext->nb_streams; i++)
{
if(avFormatContext->streams[i]->codec->codec_type ==
AVMEDIA_TYPE_AUDIO)//CODEC_TYPE_AUDIO)
{
audioStreamId = i;
break;
}
}
if(audioStreamId == -1)
return -3; //Didn't find an audio stream
printf("audioStreamId = %d \n", audioStreamId);
pCodecContext = avFormatContext->streams[audioStreamId]->codec;
if(pCodecContext == NULL)
return -10;
//The stream's information about the codec is in what
//we call the "codec context." This contains all the information
//about the codec that the stream is using, and now we have a pointer to it.
//But we still have to find the actual codec and open it:
AVCodec *pCodec;
AVDictionary *options;
//Find the decoder for the audio stream
pCodec = avcodec_find_decoder(pCodecContext->codec_id);
printf("TEST codec name = %s fullName = %s\n",
pCodec->name, pCodec->long_name);
if(pCodec == NULL)
return -4; //Codec not found
//Open codec
//avcodec_open2 - This function is not thread safe!
//Prior to using this function the context has to be allocated with
// avcodec_alloc_context3().
pCodecContext = avcodec_alloc_context3(pCodec);
printf("test 0\n");
if(pCodecContext == NULL)
return -5; //Could not allocate audio codec context
printf("test 1\n");
if(avcodec_open2(pCodecContext, pCodec, NULL) < 0)
return -6; //Couldn't open codec
printf("test 2\n");
avformat_close_input(&avFormatContext);
return 0;
}
这些是我输出屏幕的最后几行:
TEST codec id = 86021
t0
t1
[vorbis @ 0x19eeaa0] Extradata missing.
最佳答案
调用avformat_open_input()
后需要调用avformat_find_stream_info()
关于c++ - "Vorbis Extradata missing"尝试获取有关编解码器的流信息时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18219364/
令我惊讶的是,dart 没有内置的对象到 json 和 json 到对象的映射器。 我读到我们必须自己手动编写映射代码,这并不令人愉快。 无论如何,虽然我没有针对我的用例对其进行彻底测试,但我发现了
我有 16 位 PCM 音频,我想将其转换为 8 位 PCMU。据我所知,16 位到 8 位的转换很容易 - 只需从每个样本中删除最后 8 位即可。 我想知道如何将8位pcm转换为8位pcmu?任何文
我的任务是使用动态霍夫曼修改 JPEG 格式。所以我试图找到用Java编写的简单Jpeg解码器的源代码。谁能帮我? 最佳答案 看看这个:http://www.dreamincode.net/forum
我收到错误代码(如下),并且无法解码该字符串,我知道它正在查找 JSON 和我也保存的文件,但它无法解析。错误代码: Unexpected token VALUE(-10) at position 8
我制作了这个程序,它是一个随 secret 码。 public class SaadAbdullahCipher { private char[] alphabet = {'a', 'b'
总的来说,我对编程还很陌生,我想知道如何对输入的文本进行编码/解码。 对于 ex A -> D,所有字母必须减去 3 个字母B -> E等等 我将输入一些伪代码作为示例: INPUT MESSAGE:
是否有内置函数或受支持的包中的函数来获取基于输入字符集字符串,例如 ISO-8859-1 或 ISO-8859-15?现在我看到的唯一方法是自己匹配它: func getEncoderForChars
我是新来的。不知何故,我能够理解如何做到这一点。 我在下面做,但它给出了错误 - 无法读取数据,因为它的格式不正确。有人可以帮助我吗?从过去的 4 天开始,我一直坚持这一点。我真的很感激。 impor
就像标题所说,我正在尝试为一个我定义的类的对象编写一个自定义解码器,该对象包含我定义的类的其他对象。 “外部”类是一个 Edge,定义如下: class Edge: def __init__(
我想重新编码音频文件的音频流。以下gstreamer管道可以正常工作: gst-launch-1.0 filesrc location=input.flac ! decodebin ! audioco
使用Swift4、iOS11.1、Xcode9.1, 尝试匹配 Swift4 的可编码结构中的 JSON 文件,我遇到以下问题: 这是我的代码: struct Station: Codable {
正如标题所示,我正在寻找遵循 1.3 版本的 Java(+Android) WBXML 解析器/解码器。如果有必要的话,我什至可以考虑调用 native 代码。谢谢。 最佳答案 我确实记得不久前我使用
当 JABX 解码器尝试解码 xml 时,我遇到以下错误 线程“main”中出现异常 javax.xml.bind.UnmarshalException - 带有链接异常:[org.xml.sax.S
我正在处理不同尺寸(x,y)的图像。当在 MaxPooling2D 之后使用 UpSampling2D 时,它不能很好地重建它,因为 x-dim 不等于 y-dim。当 x=y (例如 28x28)时
http://www.lotterypost.com/js-compress.aspx 这个网站非常适合压缩 JS 但我想解码.... 除了在线之外,有没有最好的免费工具来编码/解码 Js 最佳答案
我刚刚在验证 JWT 时遇到了问题。我正在运行的代码是一个相当肮脏的黑客,它采用 JWT 的第二个组件并通过 Base64 解码器运行它。然而事实证明,通过一些 super 特殊的 JWT,我得到了一
我正在尝试使用 CUDA 解码器项目中的代码将解码后的图像文件保存回 BMP 图像。 if (g_bReadback && g_ReadbackSID)
已关闭。此问题旨在寻求有关书籍、工具、软件库等的建议。不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以
在自己尝试 URL 解码之后,我设法想出了一些可行的想法 - 但它们不是很有效。由于 URL 解码是我的程序中可能出现严重瓶颈的地方,我决定上网寻找更有效的解决方案。我遇到了这篇 codeguru 文
是否可以“拦截” JAXB 的解码过程? 我有一个 xml 响应,部分应该转换为不同的 java 字段结构: ... 在我的 java 类中,我更愿意将其解码为 List ,
我是一名优秀的程序员,十分优秀!