- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试从格式 SubRip
转码字幕(.srt) 到 MPEG4 Timed Text
将它们混合到一个 MP4 容器中,其中已经有音频和视频。使用 ffmpeg
从命令行执行此操作微不足道:
ffmpeg -i subtitles.srt -i video.mp4 -c:v copy -c:a copy -c:s mov_text videoWithSubtitles.mp4
AV_CODEC_ID_MOV_TEXT
,我收到以下消息:
Error code: -1094995529
Error occurred: Invalid data found when processing input
AVCodec *codec = avcodec_find_encoder(AV_CODEC_ID_MOV_TEXT);
if (!codec) {
NSLog(@"Error finding encoder");
exit(-1);
}
AVCodecContext *codecContext = avcodec_alloc_context3(codec);
if (!codecContext) {
NSLog(@"Error allocating context");
exit(-1);
}
if (avcodec_is_open(codecContext) == 0) {
NSLog(@"output codec context is closed, opening");
ret = avcodec_open2(codecContext, codec, NULL);
if (ret < 0) {
NSLog(@"Error code: %i",ret);
NSLog(@"Error occurred: %s", av_err2str(ret));
NSLog(@"Error opening encoder");
exit(-1);
}
}
AV_CODEC_ID_SUBRIP
或
AV_CODEC_ID_SRT
(设置编码器)。
最佳答案
来自 ffmpeg 的错误代码(来自 avutil 的 error.h):
http://ffmpeg.org/doxygen/trunk/error_8h_source.html
原来您指定的值是:
#define AVERROR_INVALIDDATA FFERRTAG( 'I','N','D','A')
#define AVERROR_BSF_NOT_FOUND FFERRTAG(0xF8,'B','S','F') ///< Bitstream filter not found
#define AVERROR_BUG FFERRTAG( 'B','U','G','!') ///< Internal bug, also see AVERROR_BUG2
#define AVERROR_BUFFER_TOO_SMALL FFERRTAG( 'B','U','F','S') ///< Buffer too small
#define AVERROR_DECODER_NOT_FOUND FFERRTAG(0xF8,'D','E','C') ///< Decoder not found
#define AVERROR_DEMUXER_NOT_FOUND FFERRTAG(0xF8,'D','E','M') ///< Demuxer not found
#define AVERROR_ENCODER_NOT_FOUND FFERRTAG(0xF8,'E','N','C') ///< Encoder not found
#define AVERROR_EOF FFERRTAG( 'E','O','F',' ') ///< End of file
#define AVERROR_EXIT FFERRTAG( 'E','X','I','T') ///< Immediate exit was requested; the called function should not be restarted
#define AVERROR_EXTERNAL FFERRTAG( 'E','X','T',' ') ///< Generic error in an external library
#define AVERROR_FILTER_NOT_FOUND FFERRTAG(0xF8,'F','I','L') ///< Filter not found
#define AVERROR_INVALIDDATA FFERRTAG( 'I','N','D','A') ///< Invalid data found when processing input
#define AVERROR_MUXER_NOT_FOUND FFERRTAG(0xF8,'M','U','X') ///< Muxer not found
#define AVERROR_OPTION_NOT_FOUND FFERRTAG(0xF8,'O','P','T') ///< Option not found
#define AVERROR_PATCHWELCOME FFERRTAG( 'P','A','W','E') ///< Not yet implemented in FFmpeg, patches welcome
#define AVERROR_PROTOCOL_NOT_FOUND FFERRTAG(0xF8,'P','R','O') ///< Protocol not found
#define AVERROR_STREAM_NOT_FOUND FFERRTAG(0xF8,'S','T','R') ///< Stream not found
#define AVERROR_BUG2 FFERRTAG( 'B','U','G',' ')
#define AVERROR_UNKNOWN FFERRTAG( 'U','N','K','N') ///< Unknown error, typically from an external library
#define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it.
#define AVERROR_INPUT_CHANGED (-0x636e6701) ///< Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED)
#define AVERROR_OUTPUT_CHANGED (-0x636e6702) ///< Output changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_INPUT_CHANGED)
#define AVERROR_HTTP_BAD_REQUEST FFERRTAG(0xF8,'4','0','0')
#define AVERROR_HTTP_UNAUTHORIZED FFERRTAG(0xF8,'4','0','1')
#define AVERROR_HTTP_FORBIDDEN FFERRTAG(0xF8,'4','0','3')
#define AVERROR_HTTP_NOT_FOUND FFERRTAG(0xF8,'4','0','4')
#define AVERROR_HTTP_OTHER_4XX FFERRTAG(0xF8,'4','X','X')
#define AVERROR_HTTP_SERVER_ERROR FFERRTAG(0xF8,'5','X','X')
av_register_all();
avformat_network_init();
//Allocate space and setup the the object to be used for storing
// all info needed for this connection
context = avformat_alloc_context();
AVDictionary *opts = 0;
av_dict_set(&opts, "rtsp_transport", "tcp", 0);
//open rtsp
if (avformat_open_input(&context, URL, NULL, &opts) != 0){
return 1; //Error 1
}
//maximum time in microseconds during which the input should be analyzed
context->max_analyze_duration = 10000000;
if (avformat_find_stream_info(context,NULL) < 0){
return 2; //Error 2
}
//search video stream
for(int i=0; i<(int)context->nb_streams; i++){
if(context->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
video_stream_index = i;
}
oc = avformat_alloc_context();
//start reading packets from stream and write them to file
av_read_play(context); //start the stream
if(curVidFormat == MJPEG) {
codec = avcodec_find_decoder(AV_CODEC_ID_MJPEG);
}
else {
codec = avcodec_find_decoder(AV_CODEC_ID_H264);
}
if (!codec) return 3; //Error 3
ccontext = avcodec_alloc_context3(codec);
avcodec_get_context_defaults3(ccontext, codec);
avcodec_copy_context(ccontext,context->streams[video_stream_index]->codec);
int errorCode = avcodec_open2(ccontext, codec, NULL);
if(errorCode<0)
{
printf("avcodec_open2 failed with errorCode:%d !",errorCode);
exit(1);
}
//create frame to be used for storing frames coming out
// of avcodec_decode_video2
int curAVFramesize = avpicture_get_size(PIX_FMT_YUV420P,
ccontext->width, ccontext->height);
curAVFramePicBuffer = (uint8_t*)(av_malloc(curAVFramesize));
curAVFrame=avcodec_alloc_frame();
avpicture_fill((AVPicture *)curAVFrame,curAVFramePicBuffer,
PIX_FMT_YUV420P,ccontext->width, ccontext->height);
returnAVFramesize = avpicture_get_size(PIX_FMT_YUV420P, ccontext->width, ccontext->height);
//allocate and create frame to be used for resizing of frames
int resizedFramesize = avpicture_get_size(PIX_FMT_YUV420P, outputWidth,
outputHeight);
resizedFramePicBuffer = (uint8_t*)(av_malloc(resizedFramesize));
resizedFrame=avcodec_alloc_frame();
avpicture_fill((AVPicture *)resizedFrame,resizedFramePicBuffer,
PIX_FMT_YUV420P,outputWidth, outputHeight);
//Could be used to convert between formats
//In this case just scaling the image
img_convert_ctx = sws_getContext(ccontext->width, ccontext->height,
ccontext->pix_fmt, width, height, PIX_FMT_YUV420P,
SWS_BICUBIC, NULL, NULL, NULL);
关于video - 使用 avcodec 打开编解码器时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26252888/
令我惊讶的是,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 ,
我是一名优秀的程序员,十分优秀!