From trac at avcodec.org Sat Dec 1 00:18:51 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 30 Nov 2012 23:18:51 -0000 Subject: [FFmpeg-trac] #1981(avformat:new): mpegtsraw open of multicast stream may hang In-Reply-To: <036.a730198e917ca915b0967f552f8d8915@avcodec.org> References: <036.a730198e917ca915b0967f552f8d8915@avcodec.org> Message-ID: <051.d932187790e098c32fe511c03ecac202@avcodec.org> #1981: mpegtsraw open of multicast stream may hang ------------------------------------+------------------------------------ Reporter: Krieger | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegtsraw | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Please provide a backtrace. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 00:23:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 30 Nov 2012 23:23:41 -0000 Subject: [FFmpeg-trac] #1980(undetermined:new): ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) In-Reply-To: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> References: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> Message-ID: <050.76038c7621f537b417066cfd65989af4@avcodec.org> #1980: ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) --------------------------------+---------------------------------------- Reporter: muthuk | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 1.0 | Resolution: Keywords: rtsp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by cehoyos): If you report that FFmpeg hangs, I believe you, no need to post ps output. Since no developer is able to reproduce the problem (because of your rtsp address), a backtrace is necessary. Please run "$ gdb ffmpeg_g", then "r -i rtsp... " and when ffmpeg hangs, you interrupt it with Ctrl-C and type "bt" to get a backtrace, please post it here. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 16:17:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 01 Dec 2012 15:17:51 -0000 Subject: [FFmpeg-trac] #1982(swscale:new): Segmentation fault on sws_scale call Message-ID: <037.46142a7e355d683589b25dcc78722939@avcodec.org> #1982: Segmentation fault on sws_scale call ----------------------------------+-------------------------------------- Reporter: goodvinj | Type: defect Status: new | Priority: critical Component: swscale | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- I use the following code to convert BGRA image to YUV420P, but application crashes on sws_scale. OS: Linux, Arch: ARMv7 {{{ SwsContext *pImgConvertCtx = sws_getContext( frame->width, frame->height, srcFormat, frame->width, frame->height, destFormat, SWS_FAST_BILINEAR, NULL, NULL, NULL); // Convert RGB to YUV. if (pImgConvertCtx) { sws_scale(pImgConvertCtx, (const uint8_t * const *)frame->data, frame->linesize, 0, frame->height, pCurrentPicture->data, pCurrentPicture->linesize); sws_freeContext(pImgConvertCtx); } }}} where "srcFormat" is BGRA, "destFormat" is YUV420P, width is 800, height is 1300. "pCurrentPicture" allocated via: {{{ AVFrame * picture = avcodec_alloc_frame(); if (!picture) return NULL; avpicture_alloc((AVPicture *)picture, pix_fmt, nWidth, nHeight); }}} "frame" allocated via avpicture_fill from BGRA image data. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 16:33:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 01 Dec 2012 15:33:05 -0000 Subject: [FFmpeg-trac] #1982(swscale:new): Segmentation fault on sws_scale call In-Reply-To: <037.46142a7e355d683589b25dcc78722939@avcodec.org> References: <037.46142a7e355d683589b25dcc78722939@avcodec.org> Message-ID: <052.96853fe85c781637db41204471064c04@avcodec.org> #1982: Segmentation fault on sws_scale call ------------------------------------+----------------------------------- Reporter: goodvinj | Owner: Type: defect | Status: new Priority: normal | Component: swscale Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * priority: critical => normal Comment: Please provide source code that allows to reproduce the problem and backtrace etc. as explained on http://ffmpeg.org/bugreports.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 16:46:26 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 01 Dec 2012 15:46:26 -0000 Subject: [FFmpeg-trac] #1983(undetermined:closed): Conversion to Annex B transport stream clobbers .srt subtitle stream In-Reply-To: <036.869893cacef5d4c6a6b4905214b6c27a@avcodec.org> References: <036.869893cacef5d4c6a6b4905214b6c27a@avcodec.org> Message-ID: <051.50992cc40f09ff58478c761131aa422a@avcodec.org> #1983: Conversion to Annex B transport stream clobbers .srt subtitle stream -------------------------------------+------------------------------------- Reporter: neufeld | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: I don't think subrip can be muxed in mpeg-ts, this is not a limitation of FFmpeg, but of mpeg-ts (if I am wrong, please provide a subrip-in-mpegts sample and reopen this ticket). It could be argued that FFmpeg should not try to mux random things, but I am nut sure all users would appreciate the limitation. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 17:58:28 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 01 Dec 2012 16:58:28 -0000 Subject: [FFmpeg-trac] #1982(swscale:new): Segmentation fault on sws_scale call In-Reply-To: <037.46142a7e355d683589b25dcc78722939@avcodec.org> References: <037.46142a7e355d683589b25dcc78722939@avcodec.org> Message-ID: <052.0e4146bc46ab9be03ec823b4e51e251c@avcodec.org> #1982: Segmentation fault on sws_scale call ------------------------------------+----------------------------------- Reporter: goodvinj | Owner: Type: defect | Status: new Priority: normal | Component: swscale Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by reimar): And in this case: check and report if the code works fine on other architectures like x86. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 1 19:32:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 01 Dec 2012 18:32:23 -0000 Subject: [FFmpeg-trac] #1975(avfilter:reopened): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.5de2802e8cba20a6e6f0aa38901381a4@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------ Reporter: dpury | Owner: Type: defect | Status: reopened Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by rogerdpack): http://ffmpeg.org/bugreports.html describes the ftp server... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 2 01:01:32 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 02 Dec 2012 00:01:32 -0000 Subject: [FFmpeg-trac] #1984(avcodec:new): Unimplemented indeo4 transform Message-ID: <036.034c18cfe757766bd4410a2bc680e02c@avcodec.org> #1984: Unimplemented indeo4 transform ---------------------------------------+--------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Keywords: indeo4 Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 ---------------------------------------+--------------------------------- A user uploaded a indeo41 sample that triggers the following message: [indeo4 @ 0x27e04b0] Unimplemented transform: 1! {{{ $ ffmpeg -i 00186002.avi -f null - ffmpeg version N-47359-gf61369d Copyright (c) 2000-2012 the FFmpeg developers built on Dec 2 2012 00:41:44 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack --disable-yasm --disable-asm libavutil 52. 11.100 / 52. 11.100 libavcodec 54. 78.101 / 54. 78.101 libavformat 54. 42.100 / 54. 42.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 23.105 / 3. 23.105 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from '00186002.avi': Duration: 00:10:40.13, start: 0.000000, bitrate: 1233 kb/s Stream #0:0: Video: indeo4 (IV41 / 0x31345649), yuv410p, 360x288, 24 tbr, 24 tbn, 24 tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.42.100 Stream #0:0: Video: rawvideo (YUV9 / 0x39565559), yuv410p, 360x288, q=2-31, 200 kb/s, 90k tbn, 24 tbc Stream mapping: Stream #0:0 -> #0:0 (indeo4 -> rawvideo) Press [q] to stop, [?] for help [indeo4 @ 0x16284b0] Unimplemented transform: 1! [indeo4 @ 0x16284b0] If you want to help, upload a sample of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ and contact the ffmpeg-devel mailing list. [indeo4 @ 0x16284b0] Error while decoding band header: -1163346256 [indeo4 @ 0x16284b0] Error while decoding band: 1, plane: 0 Error while decoding stream #0:0: Operation not permitted [indeo4 @ 0x16284b0] mismatching scan table! ... [indeo4 @ 0x16284b0] Error while decoding band header: -1094995529 [indeo4 @ 0x16284b0] Error while decoding band: 1, plane: 0 Error while decoding stream #0:0: Operation not permitted frame= 0 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.00 bitrate= 0.0kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -nan% Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 2 01:03:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 02 Dec 2012 00:03:55 -0000 Subject: [FFmpeg-trac] #1984(avcodec:new): Unimplemented indeo4 transform In-Reply-To: <036.034c18cfe757766bd4410a2bc680e02c@avcodec.org> References: <036.034c18cfe757766bd4410a2bc680e02c@avcodec.org> Message-ID: <051.70374790b0ad1b457a73bc77506e5053@avcodec.org> #1984: Unimplemented indeo4 transform -------------------------------------+----------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: indeo4 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by cehoyos): Sample uploaded: http://samples.ffmpeg.org/V-codecs/IV41/00186002.avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 2 04:28:53 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 02 Dec 2012 03:28:53 -0000 Subject: [FFmpeg-trac] #1557(avformat:new): support old sipr in rm (rewrite rm demuxer) In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.d3762e96850c7f7d318e116f972b10e0@avcodec.org> #1557: support old sipr in rm (rewrite rm demuxer) -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ami_stuff): at least RealAudio Encoder 3.1 (1997) produces such files -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 2 15:03:12 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 02 Dec 2012 14:03:12 -0000 Subject: [FFmpeg-trac] #317(avcodec:open): mpeg4 (geov & geox fouccs) needs to be flipped In-Reply-To: <038.55dd4e0be0e81908630d186a119f6a77@avcodec.org> References: <038.55dd4e0be0e81908630d186a119f6a77@avcodec.org> Message-ID: <053.6eee8611e9b27a5941c3c758a6cc32b0@avcodec.org> #317: mpeg4 (geov & geox fouccs) needs to be flipped -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: roundup | Blocked By: geov geox | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Attached patch leads to invalid memory accesses in emulated_edge_mc(). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 03:22:13 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 02:22:13 -0000 Subject: [FFmpeg-trac] #1915(avcodec:closed): mjpeg: fix/support morgan not interleaved In-Reply-To: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> References: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> Message-ID: <053.a9c9ec26ad01233cedb666e9e46808bf@avcodec.org> #1915: mjpeg: fix/support morgan not interleaved ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: avi mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ami_stuff): The big file decodes ok now, but 1-framed not. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 03:41:33 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 02:41:33 -0000 Subject: [FFmpeg-trac] #1915(avcodec:closed): mjpeg: fix/support morgan not interleaved In-Reply-To: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> References: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> Message-ID: <053.f3e1c6fbe3c67e5cc598d0a877fde11a@avcodec.org> #1915: mjpeg: fix/support morgan not interleaved ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: avi mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ami_stuff): or maybe this is a bug of the codec/VirtualDub that it stored only one field for interlaced frame? If that's the case then maybe an error message could be added (skipping frame, only one field found or something). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 08:31:34 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 07:31:34 -0000 Subject: [FFmpeg-trac] #1970(FFserver:open): ffserver ignores ffmpeg command line arguments In-Reply-To: <039.0a29583881ba106430406bc7fb0c66a3@avcodec.org> References: <039.0a29583881ba106430406bc7fb0c66a3@avcodec.org> Message-ID: <054.0eaec2607c4fb5dd6495af9fe8d37b2a@avcodec.org> #1970: ffserver ignores ffmpeg command line arguments ------------------------------------+------------------------------------ Reporter: importinis | Owner: Type: defect | Status: open Priority: important | Component: FFserver Version: git-master | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by importinis): Hello, I know you are busy, but I want answer :) When you are planing to fix this bug? I could do donation to your community if it helps to fix it quicker :) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 11:03:11 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 10:03:11 -0000 Subject: [FFmpeg-trac] #1915(avcodec:reopened): mjpeg: fix/support morgan not interleaved In-Reply-To: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> References: <038.7171141b9311480d3e6c742eda7a9f64@avcodec.org> Message-ID: <053.0952fa1f9cf6eb4aefe4275fa6266bd8@avcodec.org> #1915: mjpeg: fix/support morgan not interleaved ------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: defect | Status: reopened Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: avi mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: closed => reopened * resolution: fixed => Comment: {{{ $ ffmpeg -i not_interleaved.avi out.jpg ffmpeg version N-47402-g5e2be27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 3 2012 05:17:20 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack --disable-yasm --disable-asm libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 78.101 / 54. 78.101 libavformat 54. 42.100 / 54. 42.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 23.105 / 3. 23.105 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'not_interleaved.avi': Duration: 00:00:00.10, start: 0.000000, bitrate: 29015 kb/s Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p, 1024x768, 10 tbr, 10 tbn, 10 tbc Output #0, image2, to 'out.jpg': Metadata: encoder : Lavf54.42.100 Stream #0:0: Video: mjpeg, yuvj422p, 1024x768, q=2-31, 200 kb/s, 90k tbn, 10 tbc Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> mjpeg) Press [q] to stop, [?] for help frame= 0 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.00 bitrate= 0.0kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -nan% Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 11:51:33 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 10:51:33 -0000 Subject: [FFmpeg-trac] #1982(swscale:new): Segmentation fault on sws_scale call In-Reply-To: <037.46142a7e355d683589b25dcc78722939@avcodec.org> References: <037.46142a7e355d683589b25dcc78722939@avcodec.org> Message-ID: <052.38026178019159befc149e2cb3aa938a@avcodec.org> #1982: Segmentation fault on sws_scale call ------------------------------------+----------------------------------- Reporter: goodvinj | Owner: Type: defect | Status: new Priority: normal | Component: swscale Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by goodvinj): Sorry, there was my issue in the code. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 12:23:18 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 11:23:18 -0000 Subject: [FFmpeg-trac] #1982(swscale:closed): Segmentation fault on sws_scale call In-Reply-To: <037.46142a7e355d683589b25dcc78722939@avcodec.org> References: <037.46142a7e355d683589b25dcc78722939@avcodec.org> Message-ID: <052.fc912d6c98f97780b824b6f50eb941c5@avcodec.org> #1982: Segmentation fault on sws_scale call ------------------------------------+----------------------------------- Reporter: goodvinj | Owner: Type: defect | Status: closed Priority: normal | Component: swscale Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: Thank you for clarifying. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 13:19:47 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 12:19:47 -0000 Subject: [FFmpeg-trac] #1985(FFmpeg:new): Looking for a way to convert MS Powerpoint presentations to video using FFmpeg Message-ID: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> #1985: Looking for a way to convert MS Powerpoint presentations to video using FFmpeg --------------------------------+--------------------------------------- Reporter: vk5ztv | Type: enhancement Status: new | Priority: wish Component: FFmpeg | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+--------------------------------------- Has someone considered (or tried) writing a decoder for MS Powerpoint presentations to be able to render them as video files using FFmpeg? Ideally, it would render the slides with any embedded images, audio and slide transitions defined in the presentation; if not the actual fancy transitions (which I would think would require complex filters), at least a basic cross-fade using the timings defined in the presentation. Where there are no timings present, a sensible default should be chosen with an option to specify timing on the command line. I would attempt this myself but what I know of C programming could fit on the back of a postage stamp. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 13:53:32 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 12:53:32 -0000 Subject: [FFmpeg-trac] #1985(undetermined:new): Looking for a way to convert MS Powerpoint presentations to video using FFmpeg In-Reply-To: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> References: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> Message-ID: <050.bc215c9ddb12d392e1b89e7a3456f6c3@avcodec.org> #1985: Looking for a way to convert MS Powerpoint presentations to video using FFmpeg -------------------------------------+------------------------------------- Reporter: vk5ztv | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * component: FFmpeg => undetermined -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 14:41:56 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 13:41:56 -0000 Subject: [FFmpeg-trac] #1864(avcodec:open): support 0x350 TwoCC (Micronas speech ADPCM codec) In-Reply-To: <038.d5098d62bb41fc037303fa6e71769913@avcodec.org> References: <038.d5098d62bb41fc037303fa6e71769913@avcodec.org> Message-ID: <053.6a3d7613baf617e5bb89735647c39de3@avcodec.org> #1864: support 0x350 TwoCC (Micronas speech ADPCM codec) -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: adpcm | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => adpcm -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 15:12:33 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 14:12:33 -0000 Subject: [FFmpeg-trac] #379(undetermined:open): Remuxing pgssub in matroska (was: vobsub track without CodecPrivate) In-Reply-To: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> References: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> Message-ID: <049.a102671c33e52dd2cbf3148e80b65495@avcodec.org> #379: Remuxing pgssub in matroska -------------------------------------+------------------------------------- Reporter: Thom1 | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: pgssub mkv | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * priority: important => normal * version: 0.8.1 => git-master * keywords: vobsub dvdsub matroska mkv => pgssub mkv Comment: mkvalidator does not like ffmpeg's output: {{{ $ ffmpeg -i sample-dts-not-valid-dca-frame.m2ts -vcodec copy -acodec copy -scodec copy out.mkv ffmpeg version N-47403-g7e93b0b Copyright (c) 2000-2012 the FFmpeg developers built on Dec 3 2012 11:57:16 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack --disable-yasm --disable-asm libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 78.101 / 54. 78.101 libavformat 54. 42.100 / 54. 42.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 23.105 / 3. 23.105 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [dca @ 0x17365c0] Not a valid DCA frame Last message repeated 52 times [mpegts @ 0x168a150] Stream #5: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #6: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #7: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #8: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #9: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #10: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #11: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #12: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #13: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #14: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #15: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #16: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #17: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #18: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #19: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #20: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Stream #21: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x168a150] Could not find codec parameters for stream 5 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 6 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 7 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 8 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 9 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 10 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 11 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 12 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 13 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 14 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 15 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 16 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 17 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 18 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 19 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 20 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] Could not find codec parameters for stream 21 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x168a150] decoding for stream 22 failed [mpegts @ 0x168a150] Could not find codec parameters for stream 22 (Audio: dts ([162][0][0][0] / 0x00A2), 0 channels, fltp): unspecified sample rate Consider increasing the value for the 'analyzeduration' and 'probesize' options [NULL @ 0x1690730] start time is not set in estimate_timings_from_pts [NULL @ 0x1690f60] start time is not set in estimate_timings_from_pts [NULL @ 0x16917e0] start time is not set in estimate_timings_from_pts [NULL @ 0x1691fd0] start time is not set in estimate_timings_from_pts [NULL @ 0x16e59b0] start time is not set in estimate_timings_from_pts [NULL @ 0x16ebcc0] start time is not set in estimate_timings_from_pts [NULL @ 0x16f2040] start time is not set in estimate_timings_from_pts [NULL @ 0x16f8350] start time is not set in estimate_timings_from_pts [NULL @ 0x16fe6e0] start time is not set in estimate_timings_from_pts [NULL @ 0x17049f0] start time is not set in estimate_timings_from_pts [NULL @ 0x170ade0] start time is not set in estimate_timings_from_pts [NULL @ 0x17110f0] start time is not set in estimate_timings_from_pts [NULL @ 0x17174a0] start time is not set in estimate_timings_from_pts [NULL @ 0x171d7b0] start time is not set in estimate_timings_from_pts [NULL @ 0x1723bd0] start time is not set in estimate_timings_from_pts [NULL @ 0x1729ee0] start time is not set in estimate_timings_from_pts [NULL @ 0x17302b0] start time is not set in estimate_timings_from_pts [mpegts @ 0x168a150] PES packet size mismatch Last message repeated 3 times Input #0, mpegts, from 'sample-dts-not-valid-dca-frame.m2ts': Duration: 00:00:53.18, start: 11.608967, bitrate: 16276 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Stream #0:1[0x1100]: Audio: dts (DTS-HD MA) ([134][0][0][0] / 0x0086), 48000 Hz, 5.1(side), fltp, 1536 kb/s Stream #0:2[0x1101]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), s16, 448 kb/s Stream #0:3[0x1102]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), s16, 448 kb/s Stream #0:4[0x1103]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), s16, 448 kb/s Stream #0:5[0x1200]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:6[0x1201]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:7[0x1202]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:8[0x1203]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:9[0x1204]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:10[0x1205]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:11[0x1206]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:12[0x1207]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:13[0x1208]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:14[0x1209]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:15[0x120a]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:16[0x120b]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:17[0x120c]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:18[0x120d]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:19[0x120e]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:20[0x120f]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:21[0x1210]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:22[0x1a00]: Audio: dts ([162][0][0][0] / 0x00A2), 0 channels, fltp Stream #0:23[0x1b00]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 720x480 [SAR 40:33 DAR 20:11], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Output #0, matroska, to 'out.mkv': Metadata: encoder : Lavf54.42.100 Stream #0:0: Video: h264 (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 23.98 fps, 1k tbn, 90k tbc Stream #0:1: Audio: dts ([134][0][0][0] / 0x0086), 48000 Hz, 5.1(side), 1536 kb/s Stream #0:2: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:5 -> #0:2 (copy) Press [q] to stop, [?] for help [mpegts @ 0x168a150] PES packet size mismatch frame= 1273 fps=0.0 q=-1.0 Lsize= 88047kB time=00:00:53.05 bitrate=13595.5kbits/s video:70275kB audio:17585kB subtitle:134 global headers:0kB muxing overhead 0.059732% }}} {{{ $ mkvalidator out.mkv ERR0B1: Block at 50661520 track #3 is not a keyframe ERR0B1: Block at 50661553 track #3 is not a keyframe ERR0B1: Block at 50661578 track #3 is not a keyframe ERR0B1: Block at 50661917 track #3 is not a keyframe ERR0B1: Block at 50707127 track #3 is not a keyframe ERR0B1: Block at 56486707 track #3 is not a keyframe ERR0B1: Block at 56486732 track #3 is not a keyframe ERR0B1: Block at 56486756 track #3 is not a keyframe ERR0B1: Block at 58281775 track #3 is not a keyframe ERR0B1: Block at 58281808 track #3 is not a keyframe ERR0B1: Block at 58281833 track #3 is not a keyframe ERR0B1: Block at 58282172 track #3 is not a keyframe ERR0B1: Block at 58322632 track #3 is not a keyframe ERR0B1: Block at 70426654 track #3 is not a keyframe ERR0B1: Block at 70426679 track #3 is not a keyframe ERR0B1: Block at 70426703 track #3 is not a keyframe ERR0B1: Block at 70946184 track #3 is not a keyframe ERR0B1: Block at 70946217 track #3 is not a keyframe ERR0B1: Block at 70946242 track #3 is not a keyframe ERR0B1: Block at 70946581 track #3 is not a keyframe ERR0B1: Block at 70974021 track #3 is not a keyframe ERR0B1: Block at 82469195 track #3 is not a keyframe ERR0B1: Block at 82469220 track #3 is not a keyframe ERR0B1: Block at 82469244 track #3 is not a keyframe ERR0B1: Block at 85421140 track #3 is not a keyframe ERR0B1: Block at 85421173 track #3 is not a keyframe ERR0B1: Block at 85421198 track #3 is not a keyframe ERR0B1: Block at 85421537 track #3 is not a keyframe ERR0B1: Block at 85461724 track #3 is not a keyframe .... file created with Lavf54.42.100 / Lavf54.42.100 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 15:27:48 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 14:27:48 -0000 Subject: [FFmpeg-trac] #896(avcodec:open): ljpeg: support 32bpp RGBA In-Reply-To: <038.de8b89f6384a87742ca2c97be69c2f31@avcodec.org> References: <038.de8b89f6384a87742ca2c97be69c2f31@avcodec.org> Message-ID: <053.0da06edb4e91692284399138993ea9b0@avcodec.org> #896: ljpeg: support 32bpp RGBA -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg ljpeg | Blocked By: alpha | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mjpeg ljpeg => mjpeg ljpeg alpha -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 15:43:35 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 14:43:35 -0000 Subject: [FFmpeg-trac] #1268(undetermined:closed): Shorthand for all streams c:all In-Reply-To: <034.bcb9f05b48d87412bffd9adf3fe17391@avcodec.org> References: <034.bcb9f05b48d87412bffd9adf3fe17391@avcodec.org> Message-ID: <049.b6776f56e8983d6677d501fa4feaa46b@avcodec.org> #1268: Shorthand for all streams c:all -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: -map != -codec, I don't think this is a valid ticket -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 15:48:46 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 14:48:46 -0000 Subject: [FFmpeg-trac] #393(avcodec:closed): H264 + FF_THREAD_SLICE + w32thread crashes In-Reply-To: <034.780d456bde6c1a755121c8bb0488ad96@avcodec.org> References: <034.780d456bde6c1a755121c8bb0488ad96@avcodec.org> Message-ID: <049.f69fb1c5b3e4e64d81c5e03fd255b71d@avcodec.org> #393: H264 + FF_THREAD_SLICE + w32thread crashes -------------------------------------+------------------------------------- Reporter: ronag | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: 0.8.1 | Resolution: Keywords: crash win32 | needs_more_info h264 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mt thread slice win32 h264 => crash win32 h264 * status: new => closed * resolution: => needs_more_info -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 20:52:01 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 19:52:01 -0000 Subject: [FFmpeg-trac] #1985(undetermined:new): Looking for a way to convert MS Powerpoint presentations to video using FFmpeg In-Reply-To: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> References: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> Message-ID: <050.a6ede53315d0814ac9eee6f8d42ba4f6@avcodec.org> #1985: Looking for a way to convert MS Powerpoint presentations to video using FFmpeg -------------------------------------+------------------------------------- Reporter: vk5ztv | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by reimar): I think it's safe to say there is no way we will implement a PowerPoint parser and renderer, huge projects like OpenOffice/LibreOffice barely manage to get something working, there is no way we could do it. Even more so since it just doesn't fit into the demuxer/decoder split that FFmpeg assumes. If you want this feature, it would be more realistic to ask one of the Office suites to implement a "render/export to video" feature, possibly by using FFmpeg. Similar to what e.g. Blender provides. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 21:42:50 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 20:42:50 -0000 Subject: [FFmpeg-trac] #1986(undetermined:new): ffserver crashes while playing h264 video from matroska container over rtsp Message-ID: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -------------------------------------+------------------------------------- Reporter: sonntex | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I'm trying to play h264 video from matroska container over rtsp using ffserver and ffplay, and ffserver crashes on ffplay executing. How to reproduce: 1. Configuration file for ffserver: {{{ Port 8090 RTSPPort 8554 BindAddress 0.0.0.0 MaxHTTPConnections 2000 MaxClients 1000 MaxBandwidth 1000 CustomLog - NoDaemon Format rtp File "h264-cut.mkv" }}} 2. Execute ffserver: {{{ % ./ffserver_g -v 9 -loglevel 99 -f ffserver.conf ffserver version 1.0 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 3 2012 23:47:06 with gcc 4.7 (Debian 4.7.2-4) configuration: --disable-optimizations --enable-debug=3 libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 Tue Dec 4 00:14:57 2012 Opening file 'h264-cut.mkv' Tue Dec 4 00:14:57 2012 [matroska,webm @ 0x359af40]Format matroska,webm probed with size=2048 and score=100 Tue Dec 4 00:14:57 2012 st:0 removing common factor 1000000 from timebase Tue Dec 4 00:14:57 2012 [matroska,webm @ 0x359af40]File position before avformat_find_stream_info() is 574 Tue Dec 4 00:14:57 2012 [h264 @ 0x35a1de0]Using externally provided dimensions Tue Dec 4 00:14:57 2012 [h264 @ 0x35a1de0]no picture Tue Dec 4 00:14:57 2012 [matroska,webm @ 0x359af40]All info found Tue Dec 4 00:14:57 2012 [matroska,webm @ 0x359af40]File position after avformat_find_stream_info() is 113333 Tue Dec 4 00:14:57 2012 [AVIOContext @ 0x359b4c0]Statistics: 139214 bytes read, 0 seeks Tue Dec 4 00:14:57 2012 FFserver started. Segmentation fault (core dumped) }}} 3. Execute ffplay: {{{ % ./ffplay_g -v 9 -loglevel 99 rtsp://localhost:8554/h264-cut.mkv ffplay version 1.0 Copyright (c) 2003-2012 the FFmpeg developers built on Dec 3 2012 23:47:06 with gcc 4.7 (Debian 4.7.2-4) configuration: --disable-optimizations --enable-debug=3 libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 rtsp://localhost:8554/h264-cut.mkv: Invalid data found when processing input }}} Gdb: {{{ % gdb ./ffserver_g core GNU gdb (GDB) 7.4.1-debian Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /home/sonntex- devel/devel/ffmpeg-1.0/ffserver_g...done. [New LWP 31838] warning: Can't read pathname for load map: Input/output error. [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Core was generated by `./ffserver_g -v 9 -loglevel 99 -f ffserver.conf'. Program terminated with signal 11, Segmentation fault. #0 0x0000000000523e40 in sdp_write_media_attributes ( buff=0x35a36c0 "v=0\r\no=- 0 0 IN IP4 127.0.0.1\r\ns=No Title\r\nc=IN IP4 0.0.0.0\r\nt=0 0\r\na=tool:libavformat 54.29.104\r\nm=video 0 RTP/AVP 96\r\n", size=2048, c=0x35a2220, payload_type=96, fmt=0x35a1940) at libavformat/sdp.c:405 405 if (fmt && fmt->oformat->priv_class && (gdb) bt #0 0x0000000000523e40 in sdp_write_media_attributes ( buff=0x35a36c0 "v=0\r\no=- 0 0 IN IP4 127.0.0.1\r\ns=No Title\r\nc=IN IP4 0.0.0.0\r\nt=0 0\r\na=tool:libavformat 54.29.104\r\nm=video 0 RTP/AVP 96\r\n", size=2048, c=0x35a2220, payload_type=96, fmt=0x35a1940) at libavformat/sdp.c:405 #1 0x00000000005246da in ff_sdp_write_media (buff=0x35a36c0 "v=0\r\no=- 0 0 IN IP4 127.0.0.1\r\ns=No Title\r\nc=IN IP4 0.0.0.0\r\nt=0 0\r\na=tool:libavformat 54.29.104\r\nm=video 0 RTP/AVP 96\r\n", size=2048, c=0x35a2220, dest_addr=0x0, dest_type=0x7fff05c842e0 "IP4", port=0, ttl=0, fmt=0x35a1940) at libavformat/sdp.c:609 #2 0x00000000005249b0 in av_sdp_create (ac=0x7fff05c843c8, n_files=1, buf=0x35a36c0 "v=0\r\no=- 0 0 IN IP4 127.0.0.1\r\ns=No Title\r\nc=IN IP4 0.0.0.0\r\nt=0 0\r\na=tool:libavformat 54.29.104\r\nm=video 0 RTP/AVP 96\r\n", size=2048) at libavformat/sdp.c:655 #3 0x000000000043d1cc in prepare_sdp_description (stream=0x3599320, pbuffer=0x7fff05c84448, my_ip=...) at ffserver.c:2969 #4 0x000000000043d41e in rtsp_cmd_describe (c=0x35a2640, url=0x7fff05c867a0 "rtsp://localhost:8554/h264-cut.mkv") at ffserver.c:3021 #5 0x000000000043cdf0 in rtsp_parse_request (c=0x35a2640) at ffserver.c:2908 #6 0x000000000043751e in handle_connection (c=0x35a2640) at ffserver.c:955 #7 0x0000000000436c97 in http_server () at ffserver.c:729 #8 0x00000000004429f9 in main (argc=7, argv=0x7fff05c86e28) at ffserver.c:4757 (gdb) disass $pc-32,$pc+32 Dump of assembler code from 0x523e20 to 0x523e60: 0x0000000000523e20 : test %dh,%cl 0x0000000000523e22 : (bad) 0x0000000000523e23 : add %al,(%rax) 0x0000000000523e25 : jmpq 0x524598 0x0000000000523e2a : movl $0x1,-0xc(%rbp) 0x0000000000523e31 : cmpq $0x0,-0x40(%rbp) 0x0000000000523e36 : je 0x523e6e 0x0000000000523e38 : mov -0x40(%rbp),%rax 0x0000000000523e3c : mov 0x10(%rax),%rax => 0x0000000000523e40 : mov 0x38(%rax),%rax 0x0000000000523e44 : test %rax,%rax 0x0000000000523e47 : je 0x523e6e 0x0000000000523e49 : mov -0x40(%rbp),%rax 0x0000000000523e4d : mov 0x18(%rax),%rax 0x0000000000523e51 : mov $0xcc1d35,%edx 0x0000000000523e56 : mov $0xcc1d40,%esi 0x0000000000523e5b : mov %rax,%rdi 0x0000000000523e5e : callq 0xc95a48 End of assembler dump. (gdb) info all-registers rax 0x0 0 rbx 0x35a1940 56236352 rcx 0x60 96 rdx 0x35a2220 56238624 rsi 0x800 2048 rdi 0x35a36c0 56243904 rbp 0x7fff05c84250 0x7fff05c84250 rsp 0x7fff05c841f0 0x7fff05c841f0 r8 0x35a1940 56236352 r9 0x1 1 r10 0x0 0 r11 0xfffffffb 4294967291 r12 0x435d00 4414720 r13 0x7fff05c86e20 140733290409504 r14 0x0 0 r15 0x0 0 rip 0x523e40 0x523e40 eflags 0x10202 [ IF RF ] cs 0x33 51 ss 0x2b 43 ds 0x0 0 es 0x0 0 fs 0x0 0 gs 0x0 0 st0 -nan(0x8080808080808080) (raw 0xffff8080808080808080) st1 -nan(0x8080808080808080) (raw 0xffff8080808080808080) st2 -nan(0x002000200) (raw 0xffff0000000002000200) st3 -nan(0x200020002000200) (raw 0xffff0200020002000200) st4 -nan(0x8080808080808080) (raw 0xffff8080808080808080) st5 -nan(0x8080808080808080) (raw 0xffff8080808080808080) st6 -nan(0x1010101010101010) (raw 0xffff1010101010101010) st7 -inf (raw 0xffff0000000000000000) fctrl 0x37f 895 fstat 0x0 0 ftag 0xffff 65535 fiseg 0x0 0 fioff 0x0 0 foseg 0x0 0 fooff 0x0 0 fop 0x0 0 xmm0 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x8000000000000000, 0x0}, v16_int8 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x0, 0x0, 0x0, 0xff00, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x0, 0xff000000, 0x0, 0x0}, v2_int64 = {0xff00000000000000, 0x0}, uint128 = 0x0000000000000000ff00000000000000 } xmm1 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x25 }, v8_int16 = {0x2525, 0x2525, 0x2525, 0x2525, 0x2525, 0x2525, 0x2525, 0x2525}, v4_int32 = {0x25252525, 0x25252525, 0x25252525, 0x25252525}, v2_int64 = {0x2525252525252525, 0x2525252525252525}, uint128 = 0x25252525252525252525252525252525 } xmm2 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x0 }, v8_int16 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x0, 0x0, 0x0, 0x0}, v2_int64 = {0x0, 0x0}, uint128 = 0x00000000000000000000000000000000 } xmm3 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0xff00, 0x0, 0x0, 0x0, 0x0, 0xff00, 0x0, 0x0}, v4_int32 = {0xff00, 0x0, 0xff000000, 0x0}, v2_int64 = {0xff00, 0xff000000}, uint128 = 0x00000000ff000000000000000000ff00 } xmm4 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x8000000000000000}, v16_int8 = {0x6d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0x61, 0x78, 0x20, 0x6d, 0x65, 0x6d, 0x6f}, v8_int16 = {0x6d, 0x0, 0x0, 0x0, 0x616d, 0x2078, 0x656d, 0x6f6d}, v4_int32 = {0x6d, 0x0, 0x2078616d, 0x6f6d656d}, v2_int64 = {0x6d, 0x6f6d656d2078616d}, uint128 = 0x6f6d656d2078616d000000000000006d } xmm5 { v4_float = {0x0, 0x1, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x0, 0x0, 0x0, 0xe0, 0x95, 0x9c, 0xe7, 0x3f, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0}, ---Type to continue, or q to quit--- v8_int16 = {0x0, 0xe000, 0x9c95, 0x3fe7, 0x1, 0x1, 0x1, 0x1}, v4_int32 = {0xe0000000, 0x3fe79c95, 0x10001, 0x10001}, v2_int64 = {0x3fe79c95e0000000, 0x1000100010001}, uint128 = 0x00010001000100013fe79c95e0000000 } xmm6 { v4_float = {0x0, 0x1, 0x0, 0x0}, v2_double = {0x1, 0x0}, v16_int8 = {0x6d, 0x7d, 0xbf, 0xbb, 0x27, 0xaf, 0xf5, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x7d6d, 0xbbbf, 0xaf27, 0x3ff5, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0xbbbf7d6d, 0x3ff5af27, 0x0, 0x0}, v2_int64 = {0x3ff5af27bbbf7d6d, 0x0}, uint128 = 0x00000000000000003ff5af27bbbf7d6d } xmm7 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x0, 0x0, 0x0, 0x0, 0x68, 0xc8, 0xbc, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x0, 0x0, 0xc868, 0x3bbc, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x0, 0x3bbcc868, 0x0, 0x0}, v2_int64 = {0x3bbcc86800000000, 0x0}, uint128 = 0x00000000000000003bbcc86800000000 } xmm8 { v4_float = {0x0, 0xfffffffd, 0x0, 0x0}, v2_double = {0xffffffffffffffd2, 0x0}, v16_int8 = {0xe0, 0xe6, 0x35, 0x67, 0x9e, 0x6, 0x47, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0xe6e0, 0x6735, 0x69e, 0xc047, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x6735e6e0, 0xc047069e, 0x0, 0x0}, v2_int64 = {0xc047069e6735e6e0, 0x0}, uint128 = 0x0000000000000000c047069e6735e6e0 } xmm9 { v4_float = {0x0, 0x1, 0x0, 0x0}, v2_double = {0x1, 0x0}, v16_int8 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x0, 0x0, 0x0, 0x3ff0, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x0, 0x3ff00000, 0x0, 0x0}, v2_int64 = {0x3ff0000000000000, 0x0}, uint128 = 0x00000000000000003ff0000000000000 } xmm10 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x0, 0x0, 0x46, 0x84, 0x24, 0x59, 0xd6, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x0, 0x8446, 0x5924, 0x3ed6, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x84460000, 0x3ed65924, 0x0, 0x0}, v2_int64 = {0x3ed6592484460000, 0x0}, uint128 = 0x00000000000000003ed6592484460000 } xmm11 { v4_float = {0x9689a800, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x6a, 0xa2, 0x65, 0x50, 0xf2, 0xea, 0x8f, 0xbd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0xa26a, 0x5065, 0xeaf2, 0xbd8f, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x5065a26a, 0xbd8feaf2, 0x0, 0x0}, v2_int64 = {0xbd8feaf25065a26a, 0x0}, uint128 = 0x0000000000000000bd8feaf25065a26a } xmm12 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0x29, 0xf2, 0x88, 0x6c, 0xa6, 0x49, 0xde, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0xf229, 0x6c88, 0x49a6, 0x3ede, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x6c88f229, 0x3ede49a6, 0x0, 0x0}, v2_int64 = {0x3ede49a66c88f229, 0x0}, uint128 = 0x00000000000000003ede49a66c88f229 } xmm13 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, v16_int8 = {0xb3, 0x12, 0x58, 0x17, 0x64, 0x46, 0xe6, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x12b3, 0x1758, 0x4664, 0x3be6, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x175812b3, 0x3be64664, 0x0, 0x0}, v2_int64 = {0x3be64664175812b3, 0x0}, uint128 = 0x00000000000000003be64664175812b3 } xmm14 { v4_float = {0x0, 0x3, 0x0, 0x0}, v2_double = {0x2d, 0x0}, v16_int8 = {0xc0, 0x9, 0xf2, 0x16, 0xb5, 0xdf, 0x46, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v8_int16 = {0x9c0, 0x16f2, 0xdfb5, 0x4046, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x16f209c0, 0x4046dfb5, 0x0, 0x0}, v2_int64 = {0x4046dfb516f209c0, 0x0}, uint128 = 0x00000000000000004046dfb516f209c0 } xmm15 { v4_float = {0x0, 0x0, 0x0, 0x0}, v2_double = {0x0, 0x0}, ---Type to continue, or q to quit--- v16_int8 = {0x0 }, v8_int16 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, v4_int32 = {0x0, 0x0, 0x0, 0x0}, v2_int64 = {0x0, 0x0}, uint128 = 0x00000000000000000000000000000000 } mxcsr 0x1fa0 [ PE IM DM ZM OM UM PM ] }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 21:46:57 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 20:46:57 -0000 Subject: [FFmpeg-trac] #1986(FFserver:new): ffserver crashes while playing h264 video from matroska container over rtsp In-Reply-To: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> References: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> Message-ID: <051.bd4303825e7c14700320d0f0000d90de@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -------------------------------------+------------------------------------ Reporter: sonntex | Owner: Type: defect | Status: new Priority: normal | Component: FFserver Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by sonntex): * component: undetermined => FFserver -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 23:12:54 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 22:12:54 -0000 Subject: [FFmpeg-trac] #1986(FFserver:new): ffserver crashes while playing h264 video from matroska container over rtsp In-Reply-To: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> References: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> Message-ID: <051.9d0c5632a0d36288c4dc73ce3e553273@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -----------------------------------+------------------------------------ Reporter: sonntex | Owner: Type: defect | Status: new Priority: important | Component: FFserver Version: 1.0 | Resolution: Keywords: crash | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => crash * priority: normal => important * version: unspecified => 1.0 Comment: Does current git head also crash? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 23:13:25 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 22:13:25 -0000 Subject: [FFmpeg-trac] #1985(undetermined:closed): Looking for a way to convert MS Powerpoint presentations to video using FFmpeg In-Reply-To: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> References: <035.a15f504c6a10b1d4023792d8ef59b4cb@avcodec.org> Message-ID: <050.6b7152dcc61c622494d6bd1d69220770@avcodec.org> #1985: Looking for a way to convert MS Powerpoint presentations to video using FFmpeg -------------------------------------+------------------------------------- Reporter: vk5ztv | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: | Resolution: wontfix Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => wontfix -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 3 23:23:54 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 03 Dec 2012 22:23:54 -0000 Subject: [FFmpeg-trac] #1974(avcodec:closed): speex regression In-Reply-To: <038.53ee1837053c3bcb53a9ec4bc28ab6e5@avcodec.org> References: <038.53ee1837053c3bcb53a9ec4bc28ab6e5@avcodec.org> Message-ID: <053.4a6b71c94980031b4274d66dd3faff1d@avcodec.org> #1974: speex regression -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: regression | Blocked By: speex | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Reimar. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 04:54:12 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 03:54:12 -0000 Subject: [FFmpeg-trac] #1980(undetermined:new): ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) In-Reply-To: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> References: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> Message-ID: <050.3c65a5fa692a818e76d7a8ea1156a3a6@avcodec.org> #1980: ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) --------------------------------+---------------------------------------- Reporter: muthuk | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 1.0 | Resolution: Keywords: rtsp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by muthuk): Replying to [comment:3 cehoyos]: > If you report that FFmpeg hangs, I believe you, no need to post ps output. > > Since no developer is able to reproduce the problem (because of your rtsp address), a backtrace is necessary. > Please run "$ gdb ffmpeg_g", then "r -i rtsp... " and when ffmpeg hangs, you interrupt it with Ctrl-C and type "bt" to get a backtrace, please post it here. Thanks you. I actually run/launch these from a perl script (launches 25 instances every ~6 minutes) and they fail at random (after 15-20 minutes or so). I don't think launching each invocation in gdb is feasible. I realize however that i can attach to an ffmpeg process & take a backtrace (cmd- line attach). I hope this is something that will work. Please correct me or point me in the right direction if this understanding is incorrect. I must admit i have been working in Java & am not too familiar with using gdb. So please forgive my amateurism. Also please let me know how to build ffmpeg with debug enabled. Thanks Muthu -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 09:28:48 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 08:28:48 -0000 Subject: [FFmpeg-trac] #1980(undetermined:new): ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) In-Reply-To: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> References: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> Message-ID: <050.c05c9015c2ed21007575fd85e365dfa0@avcodec.org> #1980: ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) --------------------------------+---------------------------------------- Reporter: muthuk | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 1.0 | Resolution: Keywords: rtsp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by cehoyos): Replying to [comment:4 muthuk]: > Replying to [comment:3 cehoyos]: > > Since no developer is able to reproduce the problem (because of your rtsp address), a backtrace is necessary. > > Please run "$ gdb ffmpeg_g", then "r -i rtsp... " and when ffmpeg hangs, you interrupt it with Ctrl-C and type "bt" to get a backtrace, please post it here. > > I actually run/launch these from a perl script (launches 25 instances every ~6 minutes) and they fail at random (after 15-20 minutes or so). I don't think launching each invocation in gdb is feasible. I realize however that i can attach to an ffmpeg process & take a backtrace (cmd- line attach). I have never done it myself but this sounds like a good idea. > Also please let me know how to build ffmpeg with debug enabled. $ ./configure && make ;-) Your configure line produces two executables, ffmpeg_g contains debug symbols, I suspect --disable-stripping leaves the symbols also in ffmpeg. (I only realize now you are using --disable-yasm. This is actually a good idea for debugging, but don't forget to remove it in the future, it hurts performance.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 09:30:10 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 08:30:10 -0000 Subject: [FFmpeg-trac] #1975(avfilter:reopened): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.b1262090b7c3254e7a93a1765968a745@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------ Reporter: dpury | Owner: Type: defect | Status: reopened Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): You can either upload your sample to our incoming directory (there is no enforced size limit) or upload it to any hosting site that does not require registration. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 11:24:14 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 10:24:14 -0000 Subject: [FFmpeg-trac] #1987(undetermined:new): Achat De Diprolene Message-ID: <039.e1e48f4e3a9d5dcc5c3c8318cf7b07e5@avcodec.org> #1987: Achat De Diprolene -------------------------------------+------------------------------------- Reporter: weledobace | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: diprolene | Reproduced by developer: 0 betamethasone rezeptfrei | Analyzed by developer: 0 | -------------------------------------+------------------------------------- [[Image(http://i.imgur.com/nn6Yk.jpg, link=http://www.vnetweb.com/acheter- diprolene-france.html)]] les effets du diprolene 20mgr betamethasone recall diprolene generique quebec acheter betamethasone en ligne moin cher diprolene 10mg prix pharmacie betamethasone 100 mg achat de diprolene en france betamethasone prix canada diprolene achat comparatif betamethasone tablets acheter du diprolene a paris clotrimazole & betamethasone cream prix diprolene g?n?rique acheter betamethasone sur internet diprolene vente betamethasone for preterm labor diprolene 20mg moins cher betamethasone au meilleur prix diprolene 20mg prix achat betamethasone 5 mg diprolene 20mg dur?e g?n?rique betamethasone en ligne diprolene generique medicaments generiques acheter betamethasone 20mg peut on acheter g?n?rique diprolene en ligne achat de betamethasone en belgique diprolene 10 generique acheter betamethasone canada diprolene en pharmacie betamethasone effet amendes par la douane achat diprolene belgique clotrimazole and betamethasone dipropionate cream usp 1 0.05 acheter diprolene 2,5 betamethasone meilleur prix achat diprolene quebec betamethasone generique belgique diprolene prix pharmacie betamethasone for dogs diprolene 20mg generique b?tam?thasone arrow -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 11:50:31 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 10:50:31 -0000 Subject: [FFmpeg-trac] #1988(undetermined:new): Achat De Misoprostol Message-ID: <039.38029f5b745b577671f132a19f0368ff@avcodec.org> #1988: Achat De Misoprostol -------------------------------------+------------------------------------- Reporter: weledobace | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: misoprostol | Reproduced by developer: 0 cytotec rezeptfrei | Analyzed by developer: 0 | -------------------------------------+------------------------------------- [[Image(http://i.imgur.com/nn6Yk.jpg, link=http://www.vnetweb.com/acheter- cytotec-france.html)]] misoprostol 20mg andorre cytotec grossesse arretee misoprostol how long to work cytotec pendant 2 jours misoprostol rectal route cytotec col misoprostol ou acheter cytotec in ob misoprostol bleeding after taking avortement avec cytotec 200mcg acheter misoprostol g?n?rique en france fausse couche cytotec et consequences misoprostol tablets zitotec 200 cytotec marche pas achat misoprostol cytotec baby-blues ibuprofen misoprostol cytotec for sale manila misoprostol 400 mcg cytotec pills for sale misoprostol bleeding after cytotec avortement clandestin misoprostol est il en vente libre au luxembourg? cytotec intravaginal misoprostol information, achat cytotec en obstetrique misoprostol birth defects cytotec and cervidil misoprostol obst?trique cytotec ca marche misoprostol effet secondaire cytotec rdc misoprostol generiques cytotec crampes abdominales misoprostol 20mg posologie cytotec 200 ug misoprostol generique 10mg prix cytotec 10mg en pharmacie misoprostol before endometrial biopsy acheter cytotec pas cher -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 13:24:48 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 12:24:48 -0000 Subject: [FFmpeg-trac] #1989(undetermined:new): Seeking in rawvideo in ffplay messes up vertical alignment Message-ID: <036.e00877149421c0e7363f2fe5435d4857@avcodec.org> #1989: Seeking in rawvideo in ffplay messes up vertical alignment -------------------------------------+------------------------------------- Reporter: Tjoppen | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: rawvideo Blocked By: | seeking Reproduced by developer: 0 | Blocking: | Analyzed by developer: 0 -------------------------------------+------------------------------------- If you play rawvideo in ffplay and click around the image will move vertically. Tested in current master (b70251c). How to reproduce: {{{ $ ffmpeg -i http://samples.mplayerhq.hu/DV-raw/voxnews.dv -t 1 -pix_fmt rgb24 -f rawvideo -y out.rgb24 ffmpeg version N-47425-gb70251c Copyright (c) 2000-2012 the FFmpeg developers built on Dec 4 2012 12:59:40 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5) configuration: --enable-gpl --enable-nonfree --enable-libx264 --enable- libvpx --enable-libvorbis --enable-libtheora --enable-libmp3lame --enable- libfdk-aac --enable-x11grab libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [dv @ 0x2a20240] Estimating duration from bitrate, this may be inaccurate Input #0, dv, from 'http://samples.mplayerhq.hu/DV-raw/voxnews.dv': Metadata: timecode : 00:00:00:00 Duration: 00:01:00.00, start: 0.000000, bitrate: 28800 kb/s Stream #0:0: Video: dvvideo, yuv420p, 720x576 [SAR 16:15 DAR 4:3], 28800 kb/s, 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s Output #0, rawvideo, to 'out.rgb24': Metadata: timecode : 00:00:00:00 encoder : Lavf54.44.100 Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 720x576 [SAR 16:15 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (dvvideo -> rawvideo) Press [q] to stop, [?] for help frame= 25 fps=2.7 q=0.0 Lsize= 30375kB time=00:00:01.00 bitrate=248832.0kbits/s video:30375kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.000000% }}} Then run ffplay and click around: {{{ $ ffplay -f rawvideo -s 720x576 -pix_fmt rgb24 out.rgb24 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 14:59:21 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 13:59:21 -0000 Subject: [FFmpeg-trac] #1990(undetermined:new): mjpeg enc: sampling factors too large for interleaved scan Message-ID: <038.2c39e47f39632ad8c5602d052f5d0c3b@avcodec.org> #1990: mjpeg enc: sampling factors too large for interleaved scan -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- the output jpg file does not decode with ImageMagick/IrfanView and other software because of "sampling factors too large for interleaved scan" error http://nl.nrk.no/podkast/aps/10908/nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 {{{ C:\>ffmpeg -probesize 9000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979 963.mp3 out.jpg ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mp3 @ 0x1eebf40] Format mp3 detected only with low score of 24, misdetection po ssible! [mp3 @ 0x1eebf40] max_analyze_duration 5000000 reached at 5015510 [mp3 @ 0x1eebf40] Estimating duration from bitrate, this may be inaccurate Input #0, mp3, from 'nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3': Metadata: title : 29.11.2012 Radioresepsjonen album : NRK P3 - Radioresepsjonen artist : NRK P3 - Radioresepsjonen genre : Podcast date : 2012 Duration: 01:20:31.24, start: 0.000000, bitrate: 127 kb/s Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s Stream #0:1: Video: bmp, bgr24, 1200x1200, 90k tbr, 90k tbn, 90k tbc Metadata: title : comment : Cover (front) Stream #0:2: Video: bmp, bgr24, 1200x1200, 90k tbr, 90k tbn, 90k tbc Metadata: title : comment : Cover (front) [image2 @ 0x1ee3940] Frame rate very high for a muxer not efficiently supporting it. Please consider specifying a lower framerate, a different muxer or -vsync 2 Output #0, image2, to 'out.jpg': Metadata: title : 29.11.2012 Radioresepsjonen album : NRK P3 - Radioresepsjonen artist : NRK P3 - Radioresepsjonen genre : Podcast date : 2012 encoder : Lavf54.41.100 Stream #0:0: Video: mjpeg, yuvj444p, 1200x1200, q=2-31, 200 kb/s, 90k tbn, 9 0k tbc Metadata: title : comment : Cover (front) Stream mapping: Stream #0:1 -> #0:0 (bmp -> mjpeg) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=8.5 Lsize= 0kB time=00:00:00.00 bitrate= 0.0kbits/ s video:125kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 15:00:54 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 14:00:54 -0000 Subject: [FFmpeg-trac] #1991(undetermined:new): ffmpeg: probesize crash Message-ID: <038.1b701413a2d5a0f948754aeb27e32772@avcodec.org> #1991: ffmpeg: probesize crash -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- the command is ffmpeg -i probesize 1000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 reported here: http://article.gmane.org/gmane.comp.video.ffmpeg.user/42233 http://nl.nrk.no/podkast/aps/10908/nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 {{{ < -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 Starting program: d:\mingw\msys\1.0\ffmpeg-head-ccf771c\ffmpeg_g.exe -probesize 1000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 [New Thread 1976.0xc8] Program received signal SIGSEGV, Segmentation fault. 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", logctx=0x462c530, offset=0, max_probe_size=1000000) at libavformat/utils.c:459 459 memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE); (gdb) bt #0 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", logctx=0x462c530, offset=0, max_probe_size=1000000) at libavformat/utils.c:459 #1 0x00481c1c in init_input (options=0x22fad4, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", s=0x462c530) at libavformat/utils.c:508 #2 avformat_open_input (ps=0x22fbe4, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", fmt=0x0, options=0x11e58ec) at libavformat/utils.c:562 #3 0x004059a1 in opt_input_file (optctx=0x22fd48, opt=0x462c4df "i", filename=) at ffmpeg_opt.c:779 #4 0x0041696c in parse_option (optctx=0x22fd48, opt=, arg=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", options=0xb00be0) at cmdutils.c:324 #5 0x00416cee in parse_options (optctx=0x22fd48, argc=5, argv=, options=0xb00be0, parse_arg_function=0x406570 ) at cmdutils.c:357 #6 0x00a9433a in main (argc=5, argv=) at ffmpeg.c:3182 (gdb) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 15:31:36 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 14:31:36 -0000 Subject: [FFmpeg-trac] #1991(avformat:open): ffmpeg: probesize crash In-Reply-To: <038.1b701413a2d5a0f948754aeb27e32772@avcodec.org> References: <038.1b701413a2d5a0f948754aeb27e32772@avcodec.org> Message-ID: <053.998ea236cd329f68b72a92513efefff7@avcodec.org> #1991: ffmpeg: probesize crash -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: regression | Blocked By: crash SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * component: undetermined => avformat * priority: normal => important * version: unspecified => git-master * keywords: => regression crash SIGSEGV * reproduced: 0 => 1 Old description: > the command is > > ffmpeg -i probesize 1000000 -i > nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 > > reported here: > > http://article.gmane.org/gmane.comp.video.ffmpeg.user/42233 > > http://nl.nrk.no/podkast/aps/10908/nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 > > {{{ > < -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 > Starting program: d:\mingw\msys\1.0\ffmpeg-head-ccf771c\ffmpeg_g.exe > -probesize > 1000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 > [New Thread 1976.0xc8] > > Program received signal SIGSEGV, Segmentation fault. > 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, > filename=0x462c4e1 > "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", > logctx=0x462c530, offset=0, max_probe_size=1000000) > at libavformat/utils.c:459 > 459 memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE); > (gdb) bt > #0 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, > filename=0x462c4e1 > "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", > logctx=0x462c530, offset=0, max_probe_size=1000000) > at libavformat/utils.c:459 > #1 0x00481c1c in init_input (options=0x22fad4, > filename=0x462c4e1 > "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", > s=0x462c530) at libavformat/utils.c:508 > #2 avformat_open_input (ps=0x22fbe4, > filename=0x462c4e1 > "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", > fmt=0x0, options=0x11e58ec) at libavformat/utils.c:562 > #3 0x004059a1 in opt_input_file (optctx=0x22fd48, opt=0x462c4df "i", > filename=) at ffmpeg_opt.c:779 > #4 0x0041696c in parse_option (optctx=0x22fd48, opt=, > arg=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", > options=0xb00be0) at cmdutils.c:324 > #5 0x00416cee in parse_options (optctx=0x22fd48, argc=5, > argv=, options=0xb00be0, > parse_arg_function=0x406570 ) at cmdutils.c:357 > #6 0x00a9433a in main (argc=5, argv=) at ffmpeg.c:3182 > (gdb) > }}} New description: the command is ffmpeg -probesize 1000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 reported here: http://article.gmane.org/gmane.comp.video.ffmpeg.user/42233 http://nl.nrk.no/podkast/aps/10908/nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 {{{ < -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 Starting program: d:\mingw\msys\1.0\ffmpeg-head-ccf771c\ffmpeg_g.exe -probesize 1000000 -i nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3 [New Thread 1976.0xc8] Program received signal SIGSEGV, Segmentation fault. 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", logctx=0x462c530, offset=0, max_probe_size=1000000) at libavformat/utils.c:459 459 memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE); (gdb) bt #0 0x0047a1d7 in av_probe_input_buffer (pb=0x462caa8, fmt=0x462c534, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", logctx=0x462c530, offset=0, max_probe_size=1000000) at libavformat/utils.c:459 #1 0x00481c1c in init_input (options=0x22fad4, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", s=0x462c530) at libavformat/utils.c:508 #2 avformat_open_input (ps=0x22fbe4, filename=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", fmt=0x0, options=0x11e58ec) at libavformat/utils.c:562 #3 0x004059a1 in opt_input_file (optctx=0x22fd48, opt=0x462c4df "i", filename=) at ffmpeg_opt.c:779 #4 0x0041696c in parse_option (optctx=0x22fd48, opt=, arg=0x462c4e1 "nrk_radioresepsjonen_2012-1129-0325_6348979963.mp3", options=0xb00be0) at cmdutils.c:324 #5 0x00416cee in parse_options (optctx=0x22fd48, argc=5, argv=, options=0xb00be0, parse_arg_function=0x406570 ) at cmdutils.c:357 #6 0x00a9433a in main (argc=5, argv=) at ffmpeg.c:3182 (gdb) }}} -- Comment: Regression since 57151f8 / 479fb7b. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 15:42:36 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 14:42:36 -0000 Subject: [FFmpeg-trac] #1989(undetermined:open): Seeking in rawvideo in ffplay messes up vertical alignment In-Reply-To: <036.e00877149421c0e7363f2fe5435d4857@avcodec.org> References: <036.e00877149421c0e7363f2fe5435d4857@avcodec.org> Message-ID: <051.d7e29a4613a54cf37e49de3dcc2f6b4c@avcodec.org> #1989: Seeking in rawvideo in ffplay messes up vertical alignment -------------------------------------+------------------------------------- Reporter: Tjoppen | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: rawvideo | Resolution: seek | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: rawvideo seeking => rawvideo seek * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 Comment: Not a regression, horizontal shifts are also possible;-) Not reproducible with time-seeking, but seeking with the mouse also breaks later time-seeking. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 15:47:24 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 14:47:24 -0000 Subject: [FFmpeg-trac] #1990(avcodec:open): mjpeg enc: sampling factors too large for interleaved scan In-Reply-To: <038.2c39e47f39632ad8c5602d052f5d0c3b@avcodec.org> References: <038.2c39e47f39632ad8c5602d052f5d0c3b@avcodec.org> Message-ID: <053.3af5882d9b2972056f837ee373ccdd20@avcodec.org> #1990: mjpeg enc: sampling factors too large for interleaved scan -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => avcodec * priority: normal => important * version: unspecified => git-master * keywords: => mjpeg regression Comment: If there is an issue in FFmpeg (I don't know), it is reproducible with: $ ffmpeg -i tests/lena.pnm out.jpg "Regression" since 9f02d4e Work-around is to specify a colour-space != yuvj444p -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 16:12:57 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 15:12:57 -0000 Subject: [FFmpeg-trac] #1992(undetermined:new): Create thumbnail error Message-ID: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> #1992: Create thumbnail error -------------------------------------+------------------------------------- Reporter: bfi | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I have a bunch of flvs that I scale and convert to mp4, then create a thumbnail. All the mp4s are created fine, but 9 thumbnails out of 22 fail. All flvs are encoded the same, but are of different sizes. How to reproduce: {{{ % ffmpeg -i 78d04424cb944fe6bf8a42d88004d7f7.mp4 -vf thumbnail -frames:v 6 78d04424cb944fe6bf8a42d88004d7f7.png ffmpeg version N-47062-g26c531c Copyright (c) 2000-2012 the FFmpeg developers built on Nov 25 2012 12:21:26 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable-bzlib --enable- frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable- libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinger --enable-libspeex --enable-libtheora --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable- libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 9.100 / 52. 9.100 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.102 / 3. 23.102 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '78d04424cb944fe6bf8a42d88004d7f7.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf54.37.100 Duration: 00:00:01.44, start: 0.000000, bitrate: 198 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 404x320, 191 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc Metadata: handler_name : VideoHandler Output #0, image2, to '78d04424cb944fe6bf8a42d88004d7f7.png': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf54.37.100 Stream #0:0(und): Video: png, rgb24, 404x320, q=2-31, 200 kb/s, 90k tbn, 25 tbc Metadata: handler_name : VideoHandler Stream mapping: Stream #0:0 -> #0:0 (h264 -> png) Press [q] to stop, [?] for help frame= 0 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.00 bitrate= 0.0kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead nan% Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 17:07:30 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 16:07:30 -0000 Subject: [FFmpeg-trac] #1992(avfilter:closed): Create thumbnail error In-Reply-To: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> References: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> Message-ID: <047.a5c16c496578a0cf8c4f1d6ebd2c2d28@avcodec.org> #1992: Create thumbnail error ------------------------------------+------------------------------------ Reporter: bfi | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: git-master | Resolution: invalid Keywords: thumbnail | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => thumbnail * resolution: => invalid * status: new => closed * component: undetermined => avfilter * version: unspecified => git-master Comment: The default batch size to analyze is 100 frames for the thumbnail filter (see http://ffmpeg.org/ffmpeg.html#thumbnail), your sample contains only 36 frames, the following command line works fine: $ ffmpeg -i 78d04424cb944fe6bf8a42d88004d7f7.mp4 -vf thumbnail=36 out%2d.png -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 17:11:36 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 16:11:36 -0000 Subject: [FFmpeg-trac] #1992(avfilter:closed): Create thumbnail error In-Reply-To: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> References: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> Message-ID: <047.46351caadac5be837be950b2acf49459@avcodec.org> #1992: Create thumbnail error ------------------------------------+------------------------------------ Reporter: bfi | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: git-master | Resolution: invalid Keywords: thumbnail | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by ubitux): You might want to re-open this ticket as an enhancement, where the flushing would force the selection of one of the frame. Also note that using vf select with scene detection is also an alternative to this filter, with less memory usage. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 17:29:54 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 16:29:54 -0000 Subject: [FFmpeg-trac] #1989(undetermined:closed): Seeking in rawvideo in ffplay messes up vertical alignment In-Reply-To: <036.e00877149421c0e7363f2fe5435d4857@avcodec.org> References: <036.e00877149421c0e7363f2fe5435d4857@avcodec.org> Message-ID: <051.6efd87d1395715869541c2edec13f898@avcodec.org> #1989: Seeking in rawvideo in ffplay messes up vertical alignment -------------------------------------+------------------------------------- Reporter: Tjoppen | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: rawvideo | Resolution: fixed seek | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Paul B Mahol. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 17:43:04 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 16:43:04 -0000 Subject: [FFmpeg-trac] #1992(avfilter:reopened): Create thumbnail error In-Reply-To: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> References: <032.14d71e5679452b7127d54c2a6fb244e4@avcodec.org> Message-ID: <047.f40d7e05e2f1483507c73c99dcccabb1@avcodec.org> #1992: Create thumbnail error -------------------------------------+------------------------------------ Reporter: bfi | Owner: Type: enhancement | Status: reopened Priority: wish | Component: avfilter Version: git-master | Resolution: Keywords: thumbnail | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * priority: normal => wish * status: closed => reopened * resolution: invalid => * type: defect => enhancement -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 4 19:39:06 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 04 Dec 2012 18:39:06 -0000 Subject: [FFmpeg-trac] #1975(avfilter:reopened): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.aabc938d16a114e3bbd18c1d1a27b430@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------ Reporter: dpury | Owner: Type: defect | Status: reopened Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by dpury): File "motion_525c_RGB235.avi" uploaded to /incoming. Thanks! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 01:18:50 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 00:18:50 -0000 Subject: [FFmpeg-trac] #1975(avfilter:reopened): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.6948e504e23c90bfe0655ad91227f9ce@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------ Reporter: dpury | Owner: Type: defect | Status: reopened Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): You originally wrote: > On long files this results in a/v sync issues. The file you uploaded is video-only, how is it supposed to show A/V sync issues? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 01:25:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 00:25:33 -0000 Subject: [FFmpeg-trac] #1991(avformat:closed): ffmpeg: probesize crash In-Reply-To: <038.1b701413a2d5a0f948754aeb27e32772@avcodec.org> References: <038.1b701413a2d5a0f948754aeb27e32772@avcodec.org> Message-ID: <053.a78f67ba6204320cdf7e3f162a8a9d5b@avcodec.org> #1991: ffmpeg: probesize crash -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: fixed Keywords: regression | Blocked By: crash SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Nicolas George. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 04:50:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 03:50:36 -0000 Subject: [FFmpeg-trac] #1975(avfilter:reopened): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.6d6f2ad47ffe97c1551dec61bbef04f6@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------ Reporter: dpury | Owner: Type: defect | Status: reopened Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by dpury): I uploaded it because the invalid dropping messages were present if I used yadif. I have done a little more research, and the issue is not present in the latest 32-bit Zeranoe build. The above reports were made with the latest Zeranoe 64-bit build. I'll take the issue to the Zeranoe forum, and I apologize for wasting your time. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 07:35:02 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 06:35:02 -0000 Subject: [FFmpeg-trac] #333(undetermined:closed): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.2097d369da5f6d7c94225647d8ace836@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: fixed avi,interleaved | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by gjdfgh): Broken again, with the same sample. I do not know when it regressed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 07:39:32 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 06:39:32 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.0d4d792935495cdcdfeaf6dce3c40aa5@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by gjdfgh): * cc: nfxjfg@? (added) * resolution: fixed => * status: closed => reopened * component: undetermined => avformat -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 09:15:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 08:15:33 -0000 Subject: [FFmpeg-trac] #1975(avfilter:closed): yadif placement after -i results in timing errors In-Reply-To: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> References: <034.7d9e24422a025bd1913b8af615f2d178@avcodec.org> Message-ID: <049.131bf399d9708d8b0fa610003aa11bcf@avcodec.org> #1975: yadif placement after -i results in timing errors -------------------------------------+------------------------------------- Reporter: dpury | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: yadif dts | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => needs_more_info Comment: Replying to [comment:15 dpury]: > I uploaded it because the invalid dropping messages were present if I used yadif. Above you wrote: > Yes, longer encodes such as full-length movies drift out of sync. I'm not worried about the verbosity. This may indicate an important bug, so if you want to help, please reopen and provide a sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 09:27:19 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 08:27:19 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.ba61adf3e59a1c404f56ba3310d5c610@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Since it works fine here, could one of you add a command line that allows to reproduce the problem together with complete, uncut console output? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 09:47:00 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 08:47:00 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.ecd41871f2e33bac7c37f9839317659c@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by gjdfgh): {{{ ffplay yet-another\ broken-interleaved-avi.avi ffplay version N-47444-gb5ffbcd Copyright (c) 2003-2012 the FFmpeg developers built on Dec 5 2012 09:40:30 with gcc 4.7 (Debian 4.7.2-4) configuration: --prefix=/mnt/meh/chaos/source/normal/mpv/build_libs --enable-static --disable-shared --enable-avresample --enable-openssl --enable-gpl --enable-nonfree --disable-debug --enable-libx264 --enable- vaapi libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'yet-another broken-interleaved-avi.avi': Duration: 00:23:29.35, start: 0.000000, bitrate: 374 kb/s Stream #0:0: Video: mpeg4 (DIVX / 0x58564944), yuv420p, 640x480, 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s [mpeg4 @ 0x90f0c80] looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag Frame changed from size:0x0 to size:640x480 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 52.52 A-V: -4.707 fd= 0 aq= 0KB vq=15364KB sq= 0B f=0/0 }}} That's about 50 seconds in. A-V difference keeps getting worse from this point. The ALSA warnings are merely because ffplay doesn't feed it enough audio, and not a problem with my audio setup. File is linked in the top post. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 10:41:10 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 09:41:10 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.9b52a1be76c34ae7168465fea0c5e05e@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Note the "non-interleaved AVI" line {{{ $ ffplay yet-another-broken-interleaved-avi.avi ffplay version N-47444-gb5ffbcd Copyright (c) 2003-2012 the FFmpeg developers built on Dec 5 2012 10:36:55 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [avi @ 0x7f94980008c0] non-interleaved AVI Input #0, avi, from 'yet-another-broken-interleaved-avi.avi': Duration: 00:23:29.35, start: 0.000000, bitrate: 1247 kb/s Stream #0:0: Video: mpeg4 (DIVX / 0x58564944), yuv420p, 640x480, 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s [mpeg4 @ 0x7f949802b500] looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag Frame changed from size:0x0 to size:640x480 4KB sq= 0B f=0/0 52.56 A-V: 0.010 fd= 0 aq= 10KB vq= 26KB sq= 0B f=0/0 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 11:10:38 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 10:10:38 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.67fb2e95afb0633d157f2314383acded@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by gjdfgh): So what's the difference? How to proceed? Just to be sure, I made a clean build of ffmpeg with no additional config option. Output with -loglevel debug: {{{ ffplay ../yet-another\ broken-interleaved-avi.avi -loglevel debug ffplay version N-47450-g217b10d Copyright (c) 2003-2012 the FFmpeg developers built on Dec 5 2012 11:03:58 with gcc 4.7 (Debian 4.7.2-4) configuration: --prefix=/tmp/ffmpeg_temp libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 [avi @ 0x90344a0] Format avi probed with size=2048 and score=100 [avi @ 0x9003100] use odml:1 st:0 removing common factor 10 from timebase st:1 removing common factor 384 from timebase [avi @ 0x90344a0] File position before avformat_find_stream_info() is 10252 [avi @ 0x90344a0] All info found rfps: 29.666667 0.013650 Last message repeated 1 times rfps: 29.750000 0.007180 Last message repeated 1 times rfps: 29.833333 0.002771 Last message repeated 1 times rfps: 29.916667 0.000422 Last message repeated 1 times rfps: 30.000000 0.000134 Last message repeated 1 times rfps: 30.083333 0.001906 Last message repeated 1 times rfps: 30.166667 0.005738 Last message repeated 1 times rfps: 30.250000 0.011631 Last message repeated 1 times rfps: 30.333333 0.019584 Last message repeated 1 times rfps: 59.583333 0.018872 Last message repeated 1 times rfps: 59.666667 0.011084 Last message repeated 1 times rfps: 59.750000 0.005356 Last message repeated 1 times rfps: 59.833333 0.001688 Last message repeated 1 times rfps: 59.916667 0.000081 Last message repeated 1 times rfps: 60.000000 0.000534 Last message repeated 1 times rfps: 29.970030 0.000000 Last message repeated 1 times rfps: 59.940060 0.000000 Last message repeated 1 times [avi @ 0x90344a0] File position after avformat_find_stream_info() is 303757 Input #0, avi, from '../yet-another broken-interleaved-avi.avi': Duration: 00:23:29.35, start: 0.000000, bitrate: 374 kb/s Stream #0:0, 41, 100/2997: Video: mpeg4 (DIVX / 0x58564944), yuv420p, 640x480, 1/30000, 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc Stream #0:1, 40, 3/125: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s [mpeg4 @ 0x903c920] detected 2 logical cores [mpeg4 @ 0x904c140] looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag Frame changed from size:0x0 to size:640x480 14KB sq= 0B f=0/0 [buffer @ 0x903c8a0] Setting entry with key 'video_size' to value '640x480' [buffer @ 0x903c8a0] Setting entry with key 'pix_fmt' to value '0' [buffer @ 0x903c8a0] Setting entry with key 'time_base' to value '100/2997' [buffer @ 0x903c8a0] Setting entry with key 'pixel_aspect' to value '0/1' [ffplay_buffer @ 0x9078de0] w:640 h:480 pixfmt:yuv420p tb:100/2997 fr:0/1 sar:0/1 sws_param: [ffplay_crop @ 0x903da40] w:640 h:480 sar:0/1 -> w:640 h:480 sar:0/1 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 11:36:58 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 10:36:58 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.ec472b9004261f2ebc2bc6e9c34380ae@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Could you confirm the md5sum? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 12:30:38 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 11:30:38 -0000 Subject: [FFmpeg-trac] #333(avformat:reopened): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.2fc1ce268350d0706089c0ff9f8d094d@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: reopened Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by gjdfgh): My test file was cut short (I probably wanted to save some space...). You can create a test file with: {{{ dd if=yet-another-broken-interleaved-avi.avi of=test.avi bs=1048576 count=200 }}} Note that this is almost the full file. md5sum: 96accaf5878be60f076a50038f85339c mplayer -demux avi handles this fine (even without -idx, although it requires -idx for seeking), ffplay doesn't. Shall I create a new ticket for this problem, or can I leave this ticket open? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 13:18:35 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 12:18:35 -0000 Subject: [FFmpeg-trac] #1986(FFserver:new): ffserver crashes while playing h264 video from matroska container over rtsp In-Reply-To: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> References: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> Message-ID: <051.408cc3e6cffd9684bcccd7d470ae7914@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -----------------------------------+------------------------------------ Reporter: sonntex | Owner: Type: defect | Status: new Priority: important | Component: FFserver Version: 1.0 | Resolution: Keywords: crash | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+------------------------------------ Comment (by sonntex): Replying to [comment:2 cehoyos]: > Does current git head also crash? Yes -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 14:18:56 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 13:18:56 -0000 Subject: [FFmpeg-trac] #333(avformat:closed): Badly interleaved AVI file not handled In-Reply-To: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> References: <035.e7a60a2c8843b25b6512065fc4cdad76@avcodec.org> Message-ID: <050.7e943c3a12409243fa0eeff6d291508c@avcodec.org> #333: Badly interleaved AVI file not handled -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: | Blocked By: avi,interleaved | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => fixed Comment: Please open a new ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 15:00:28 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 14:00:28 -0000 Subject: [FFmpeg-trac] #1993(avformat:new): Badly interleaved partial AVI file causes audio/video desync Message-ID: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync -------------------------------------+------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: avformat | Version: git- Keywords: | master avi,interleaved | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Reproducible with streams.videolan.org/issues/ffmpeg/yet-another-broken- interleaved-avi.avi and {{{ dd if=yet-another-broken-interleaved-avi.avi of=test.avi bs=1048576 count=200 }}} The problem description is exactly the same as #333, except with partial files (the complete test file as linked above works fine, just cutting it makes it fail). Just like with bug #333 (before it was fixed), it causes desync after some time of normal playback in ffplay/mplayer, and it works correctly with mplayer -demuxer avi. Compared to playback of the complete file, the following ffplay message is missing: {{{ [avi @ 0x7f94980008c0] non-interleaved AVI }}} which possibly means that the demuxer fails to recognize the file as badly interleaved if the trailing part of the file is missing. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 15:54:45 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 14:54:45 -0000 Subject: [FFmpeg-trac] #1993(avformat:new): Badly interleaved partial AVI file causes audio/video desync In-Reply-To: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> References: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> Message-ID: <050.0485c235065f1e620759417e157d873c@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: avi,interleaved => avi Comment: Please add a command line that allows to reproduce the problem together with complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 5 22:48:11 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 21:48:11 -0000 Subject: [FFmpeg-trac] #1994(undetermined:new): mov enc: fix gray8 in mov Message-ID: <038.dd04a3ae0b21013a0d4d042810bfa9d7@avcodec.org> #1994: mov enc: fix gray8 in mov -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Curently gray8 rawvideo exported to mov is decoded incorrectly by qt because qt expect bits_per_coded_sample to be set to 0x28 and not 0x08 as it is now. Attached patch fixes this problem, but there is still another issue - gray8 is decoded in negative by qt. {{{ C:\>ffmpeg -i 160.bmp -vcodec rawvideo -pix_fmt gray out.mov ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from '160.bmp': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: bmp, bgr24, 160x120, 25 tbr, 25 tbn, 25 tbc Output #0, mov, to 'out.mov': Metadata: encoder : Lavf54.41.100 Stream #0:0: Video: rawvideo (raw / 0x20776172), gray, 160x120, q=2-31, 200 kb/s, 12800 tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (bmp -> rawvideo) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=0.0 Lsize= 19kB time=00:00:00.04 bitrate=3985.2kbits/ s video:19kB audio:0kB subtitle:0 global headers:0kB muxing overhead 3.781250% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 00:11:11 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 23:11:11 -0000 Subject: [FFmpeg-trac] #1994(undetermined:open): mov enc: fix gray8 in mov In-Reply-To: <038.dd04a3ae0b21013a0d4d042810bfa9d7@avcodec.org> References: <038.dd04a3ae0b21013a0d4d042810bfa9d7@avcodec.org> Message-ID: <053.c709312612cafaa6ff3fef4612a1852d@avcodec.org> #1994: mov enc: fix gray8 in mov -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mov * status: new => open * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 00:20:05 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 23:20:05 -0000 Subject: [FFmpeg-trac] #1995(undetermined:new): tiff: support tiff packbits with inverted FillOrder Message-ID: <038.57575de4646feb08822ea6707ea0c5c8@avcodec.org> #1995: tiff: support tiff packbits with inverted FillOrder -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- I belive attached pic have inverte FillOder, decodes ok with ImageMagick/IrfanView. See also ticket #168 http://www.datafilehost.com/download-0f7689e2.html {{{ C:\>ffmpeg -i packbits.tif out.bmp ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [tiff @ 0x1eec9a0] Copy went out of bounds Input #0, image2, from 'packbits.tif': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: tiff, rgb24, 1024x768, 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.bmp': Metadata: encoder : Lavf54.41.100 Stream #0:0: Video: bmp, bgr24, 1024x768, q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (tiff -> bmp) Press [q] to stop, [?] for help [tiff @ 0x1eec9a0] Copy went out of bounds frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:2304kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000 % }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 00:50:08 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 05 Dec 2012 23:50:08 -0000 Subject: [FFmpeg-trac] #1995(avcodec:open): tiff: support tiff packbits with inverted FillOrder In-Reply-To: <038.57575de4646feb08822ea6707ea0c5c8@avcodec.org> References: <038.57575de4646feb08822ea6707ea0c5c8@avcodec.org> Message-ID: <053.fa5673d64a5c657324dc358b2c6c401e@avcodec.org> #1995: tiff: support tiff packbits with inverted FillOrder ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => tif * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 08:19:04 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 07:19:04 -0000 Subject: [FFmpeg-trac] #1993(avformat:new): Badly interleaved partial AVI file causes audio/video desync In-Reply-To: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> References: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> Message-ID: <050.f96283a872667c776431bd17b0232eaf@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by gjdfgh): On a file cut to the length of 65932192 bytes: {{{ ffplay ../yet-another\ broken-interleaved-avi.avi -loglevel debug ffplay version N-47450-g217b10d Copyright (c) 2003-2012 the FFmpeg developers built on Dec 5 2012 11:03:58 with gcc 4.7 (Debian 4.7.2-4) configuration: --prefix=/tmp/ffmpeg_temp libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 [avi @ 0x90344a0] Format avi probed with size=2048 and score=100 [avi @ 0x9003100] use odml:1 st:0 removing common factor 10 from timebase st:1 removing common factor 384 from timebase [avi @ 0x90344a0] File position before avformat_find_stream_info() is 10252 [avi @ 0x90344a0] All info found rfps: 29.666667 0.013650 Last message repeated 1 times rfps: 29.750000 0.007180 Last message repeated 1 times rfps: 29.833333 0.002771 Last message repeated 1 times rfps: 29.916667 0.000422 Last message repeated 1 times rfps: 30.000000 0.000134 Last message repeated 1 times rfps: 30.083333 0.001906 Last message repeated 1 times rfps: 30.166667 0.005738 Last message repeated 1 times rfps: 30.250000 0.011631 Last message repeated 1 times rfps: 30.333333 0.019584 Last message repeated 1 times rfps: 59.583333 0.018872 Last message repeated 1 times rfps: 59.666667 0.011084 Last message repeated 1 times rfps: 59.750000 0.005356 Last message repeated 1 times rfps: 59.833333 0.001688 Last message repeated 1 times rfps: 59.916667 0.000081 Last message repeated 1 times rfps: 60.000000 0.000534 Last message repeated 1 times rfps: 29.970030 0.000000 Last message repeated 1 times rfps: 59.940060 0.000000 Last message repeated 1 times [avi @ 0x90344a0] File position after avformat_find_stream_info() is 303757 Input #0, avi, from '../yet-another broken-interleaved-avi.avi': Duration: 00:23:29.35, start: 0.000000, bitrate: 374 kb/s Stream #0:0, 41, 100/2997: Video: mpeg4 (DIVX / 0x58564944), yuv420p, 640x480, 1/30000, 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc Stream #0:1, 40, 3/125: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s [mpeg4 @ 0x903c920] detected 2 logical cores [mpeg4 @ 0x904c140] looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag Frame changed from size:0x0 to size:640x480 14KB sq= 0B f=0/0 [buffer @ 0x903c8a0] Setting entry with key 'video_size' to value '640x480' [buffer @ 0x903c8a0] Setting entry with key 'pix_fmt' to value '0' [buffer @ 0x903c8a0] Setting entry with key 'time_base' to value '100/2997' [buffer @ 0x903c8a0] Setting entry with key 'pixel_aspect' to value '0/1' [ffplay_buffer @ 0x9078de0] w:640 h:480 pixfmt:yuv420p tb:100/2997 fr:0/1 sar:0/1 sws_param: [ffplay_crop @ 0x903da40] w:640 h:480 sar:0/1 -> w:640 h:480 sar:0/1 ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 }}} You experience A/V desync and eventually audio underruns after about 50 seconds. mplayer -demuxer avi has no such problems. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 10:34:53 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 09:34:53 -0000 Subject: [FFmpeg-trac] #1872(FFserver:new): aac bitstream not in adts format and extradata missing In-Reply-To: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> References: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> Message-ID: <056.2de07e4a4d3d74b88ef3e96b0d13fb55@avcodec.org> #1872: aac bitstream not in adts format and extradata missing --------------------------------------+------------------------------------ Reporter: yogesh.tyagi | Owner: Type: defect | Status: new Priority: normal | Component: FFserver Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Comment (by yogesh.tyagi): ticket 1970 is not related to this ticket.I didn't face any issue of ffmpeg ignoring -flags -global_header. I am able to compile FFMpeg version 896e597.It produces following error: "make: *** No rule to make target `libavfilter/all_channel_layouts.inc', needed by `libavfilter/formats.o'. Stop." -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 10:48:53 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 09:48:53 -0000 Subject: [FFmpeg-trac] #1872(FFserver:new): aac bitstream not in adts format and extradata missing In-Reply-To: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> References: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> Message-ID: <056.7343a9d6f917d9a77d57effb60395d84@avcodec.org> #1872: aac bitstream not in adts format and extradata missing --------------------------------------+------------------------------------ Reporter: yogesh.tyagi | Owner: Type: defect | Status: new Priority: normal | Component: FFserver Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Comment (by cehoyos): Please run "make distclean" and build again. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 11:42:14 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 10:42:14 -0000 Subject: [FFmpeg-trac] #1996(avcodec:new): why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? Message-ID: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> #1996: why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? -----------------------------------+--------------------------------------- Reporter: theateist | Type: defect Status: new | Priority: normal Component: avcodec | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+--------------------------------------- The documentation of "avcodec_get_context_defaults3" says: Set the fields of the given AVCodecContext to default values corresponding to the given codec. But it doesn't set some fields, for example "codec_id", why? {{{ auto encoder = avcodec_find_encoder(AV_CODEC_ID_H264); avcodec_get_context_defaults3(outStream->codec, encoder); }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 11:54:40 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 10:54:40 -0000 Subject: [FFmpeg-trac] #1996(avcodec:open): why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? In-Reply-To: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> References: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> Message-ID: <053.cb7e24f6d599ad0e6c3496c3626c652b@avcodec.org> #1996: why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? -------------------------------------+----------------------------------- Reporter: theateist | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * priority: normal => wish * status: new => open * version: unspecified => git-master * type: defect => enhancement Comment: Consider sending a patch to ffmpeg-devel -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 11:58:55 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 10:58:55 -0000 Subject: [FFmpeg-trac] #1535(documentation:open): Wrong "profile" FAQ entry (was: Unclear error message) In-Reply-To: <034.70841f862c8c1807528183730b6328c4@avcodec.org> References: <034.70841f862c8c1807528183730b6328c4@avcodec.org> Message-ID: <049.23a8247824a2d89cae09c53df0d48779@avcodec.org> #1535: Wrong "profile" FAQ entry -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: defect | Status: open Priority: minor | Component: Version: git-master | documentation Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => documentation * version: unspecified => git-master * type: enhancement => defect Comment: The documentation appears to be incorrect. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:00:31 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:00:31 -0000 Subject: [FFmpeg-trac] #1822(avfilter:open): Add color option to fade filter In-Reply-To: <035.dcb41dad7415907b389cac969039bd5c@avcodec.org> References: <035.dcb41dad7415907b389cac969039bd5c@avcodec.org> Message-ID: <050.e71c2982900e252b4ad5e84f1222ba9a@avcodec.org> #1822: Add color option to fade filter -------------------------------------+------------------------------------ Reporter: llogan | Owner: Type: enhancement | Status: open Priority: wish | Component: avfilter Version: git-master | Resolution: Keywords: fade | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => fade * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:06:27 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:06:27 -0000 Subject: [FFmpeg-trac] #1573(undetermined:closed): Enhancing -ss option In-Reply-To: <034.76fb908eaf44406b15591c4b69358faa@avcodec.org> References: <034.76fb908eaf44406b15591c4b69358faa@avcodec.org> Message-ID: <049.6198cecceb85b21544ee2e7cb3a5fc10@avcodec.org> #1573: Enhancing -ss option -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: I don't think this is a valid ticket: The original request suggests to change the behaviour from "seek as fast as possible if requested by the user" to "do not seek as fast as possible, no matter what the user wants" which does not seem like a good idea. And there is a possible bug report, but it is incomplete / impossible to reproduce. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:10:09 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:10:09 -0000 Subject: [FFmpeg-trac] #1729(avformat:closed): avformat sdp.c error. In-Reply-To: <037.e086022e7b4b8087e974042e19000709@avcodec.org> References: <037.e086022e7b4b8087e974042e19000709@avcodec.org> Message-ID: <052.4fb25e601155fb780a3e0933be06bfa9@avcodec.org> #1729: avformat sdp.c error. -------------------------------------+------------------------------------- Reporter: kyh96403 | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: sdp | needs_more_info ffserver | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen if you can add the missing information (and if the problem is still reproducible). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:11:54 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:11:54 -0000 Subject: [FFmpeg-trac] #1996(avcodec:open): why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? In-Reply-To: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> References: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> Message-ID: <053.a1f19babc6255dc597b67666befc4d4c@avcodec.org> #1996: why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? -------------------------------------+----------------------------------- Reporter: theateist | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by theateist): How to send the patch, just add the code and send options.c file to you? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:36:48 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:36:48 -0000 Subject: [FFmpeg-trac] #1796(undetermined:open): Unable to extract PCM audio track from AVI file In-Reply-To: <038.f9027849e7c681ff5c5698534b8386ac@avcodec.org> References: <038.f9027849e7c681ff5c5698534b8386ac@avcodec.org> Message-ID: <053.66977e9cfee73039b975170617827d4f@avcodec.org> #1796: Unable to extract PCM audio track from AVI file -------------------------------------+------------------------------------- Reporter: tom_bogle | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: avi | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => avi * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 Comment: (I originally failed to reproduce the problem, sorry.) out2.wav is significantly longer than out.wav {{{ $ ffmpeg -i TruncatedPCMAudio_smallsample.avi out.wav ffmpeg version N-47510-g0f65d56 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 6 2012 12:30:03 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 46.100 / 54. 46.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'TruncatedPCMAudio_smallsample.avi': Duration: 00:03:52.47, start: 0.000000, bitrate: 88 kb/s Stream #0:0: Video: dvvideo, yuv411p, 720x480 [SAR 8:9 DAR 4:3], 28771 kb/s, 29.97 tbr, 29.97 tbn, 29.97 tbc Stream #0:1: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s Output #0, wav, to 'out.wav': Metadata: ISFT : Lavf54.46.100 Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 48000 Hz, stereo, s16, 1536 kb/s Stream mapping: Stream #0:1 -> #0:0 (pcm_s16le -> pcm_s16le) Press [q] to stop, [?] for help size= 6kB time=00:00:00.03 bitrate=1555.2kbits/s video:0kB audio:6kB subtitle:0 global headers:0kB muxing overhead 1.248439% }}} {{{ $ ffmpeg -i TruncatedPCMAudio_smallsample.avi -qscale 2 out.avi ffmpeg version N-47510-g0f65d56 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 6 2012 12:30:03 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 46.100 / 54. 46.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'TruncatedPCMAudio_smallsample.avi': Duration: 00:03:52.47, start: 0.000000, bitrate: 88 kb/s Stream #0:0: Video: dvvideo, yuv411p, 720x480 [SAR 8:9 DAR 4:3], 28771 kb/s, 29.97 tbr, 29.97 tbn, 29.97 tbc Stream #0:1: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s Please use -q:a or -q:v, -qscale is ambiguous Output #0, avi, to 'out.avi': Metadata: ISFT : Lavf54.46.100 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 720x480 [SAR 8:9 DAR 4:3], q=2-31, 200 kb/s, 29.97 tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s Stream mapping: Stream #0:0 -> #0:0 (dvvideo -> mpeg4) Stream #0:1 -> #0:1 (pcm_s16le -> ac3) Press [q] to stop, [?] for help [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] Last message repeated 2 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 AC EOB marker is absent pos=67 AC EOB marker is absent pos=64messsage repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=67 Last message repeated 4 times Last message repeated 4 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=87 [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 AC EOB marker is absent pos=66mes [dvvideo @ 0x337b540] AC EOB marker is absent pos=77 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 AC EOB marker is absent pos=67 Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=78 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] AC EOB marker is absent pos=75 [dvvideo @ 0x337b540] AC EOB marker is absent pos=71 Last message repeated 6 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 AC EOB marker is absent pos=64mes Last message repeated 3 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=74 [dvvideo @ 0x337b540] AC EOB marker is absent pos=67 [dvvideo @ 0x337b540] AC EOB marker is absent pos=84 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 Last message repeated 2 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 Last message repeated 1 timesssage repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 AC EOB marker is absent pos=64mes [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] Last message repeated 1 times Last message repeated 1 times AC EOB marker is absent pos=65 Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 AC EOB marker is absent pos=71 [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=69 Last message repeated 2 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=68 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 Last message repeated 2 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 Last message repeated 2 times [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=72 [dvvideo @ 0x337b540] AC EOB marker is absent pos=67 AC EOB marker is absent pos=71 [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 Last message repeated 1 times [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 AC EOB marker is absent pos=75 [dvvideo @ 0x337b540] AC EOB marker is absent pos=67 [dvvideo @ 0x337b540] AC EOB marker is absent pos=68 Last message repeated 1 timesssage repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=78 Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=79 AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=74 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 AC EOB marker is absent pos=66mes Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=65 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=73 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 [dvvideo @ 0x337b540] AC EOB marker is absent pos=66 AC EOB marker is absent pos=65 AC EOB marker is absent pos=79 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 [dvvideo @ 0x337b540] AC EOB marker is absent pos=79 Last message repeated 1 times [dvvideo @ 0x337b540] AC EOB marker is absent pos=82 [dvvideo @ 0x337b540] AC EOB marker is absent pos=71 [dvvideo @ 0x337b540] AC EOB marker is absent pos=64 Truncating packet of size 120000 to 88569 frame= 20 fps=0.0 q=2.0 Lsize= 1333kB time=00:00:00.67 bitrate=16253.5kbits/s video:1307kB audio:16kB subtitle:0 global headers:0kB muxing overhead 0.810966% }}} {{{ $ ffmpeg -i out.avi out2.wav ffmpeg version N-47510-g0f65d56 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 6 2012 12:30:03 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 46.100 / 54. 46.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'out.avi': Metadata: encoder : Lavf54.46.100 Duration: 00:00:00.67, start: 0.000000, bitrate: 16253 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, s16, 192 kb/s Output #0, wav, to 'out2.wav': Metadata: ISFT : Lavf54.46.100 Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 48000 Hz, stereo, s16, 1536 kb/s Stream mapping: Stream #0:1 -> #0:0 (ac3 -> pcm_s16le) Press [q] to stop, [?] for help size= 126kB time=00:00:00.67 bitrate=1537.0kbits/s video:0kB audio:126kB subtitle:0 global headers:0kB muxing overhead 0.062004% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:37:13 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:37:13 -0000 Subject: [FFmpeg-trac] #1802(undetermined:new): Segmentation fault with ffserver In-Reply-To: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> References: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> Message-ID: <049.eea62ecb79fd02083c011cdf1bae2c68@avcodec.org> #1802: Segmentation fault with ffserver -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => important -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 12:41:48 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 11:41:48 -0000 Subject: [FFmpeg-trac] #1996(avcodec:open): why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? In-Reply-To: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> References: <038.56d06031c63bf4e43c4ea9c68422d127@avcodec.org> Message-ID: <053.116a70d1878fde17accbfbf9c5228bd8@avcodec.org> #1996: why avcodec_get_context_defaults3 does NOT set codec_id field corresponding to the gived codec? -------------------------------------+----------------------------------- Reporter: theateist | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by cehoyos): No. First clone ffmpeg git as explained on http://ffmpeg.org/download.html (first paragraph). Then make your changes. Then either produce a diff file with the following command: $ git diff >set_codec_id.diff and send the resulting file with an explanation to ffmpeg-devel or use this preferred variant: Commit the changes you made to your local repository and either use "git send-email" to send your changes to the mailing list or use "git format- patch" to produce a - more useful than above - diff file that you can send as an attachment, see http://ffmpeg.org/developer.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 13:24:56 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 12:24:56 -0000 Subject: [FFmpeg-trac] #1872(FFserver:new): aac bitstream not in adts format and extradata missing In-Reply-To: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> References: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> Message-ID: <056.872bf16838e9821fc7e90ea98b766ab4@avcodec.org> #1872: aac bitstream not in adts format and extradata missing --------------------------------------+------------------------------------ Reporter: yogesh.tyagi | Owner: Type: defect | Status: new Priority: normal | Component: FFserver Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Comment (by yogesh.tyagi): Yes It compiled.Thanks. I am getting even more errors with FFMpeg version 896e597. Following is the log of ffserver. ./ffserver -f /etc/ffserver.conf ffserver version N-31423-g896e597, Copyright (c) 2000-2011 the FFmpeg developers built on Dec 6 2012 17:04:11 with gcc 4.4.5 configuration: --enable-libx264 --enable-gpl --enable-static --disable- shared libavutil 51. 11. 0 / 51. 11. 0 libavcodec 53. 7. 0 / 53. 7. 0 libavformat 53. 5. 0 / 53. 5. 0 libavdevice 53. 2. 0 / 53. 2. 0 libavfilter 2. 24. 4 / 2. 24. 4 libswscale 2. 0. 0 / 2. 0. 0 libpostproc 51. 2. 0 / 51. 2. 0 Thu Dec 6 17:49:02 2012 FFserver started. Thu Dec 6 17:49:05 2012 muxrate VBR, pcr every 1 pkts, sdt every 200, pat/pmt every 40 pkts Thu Dec 6 17:49:05 2012 aac bitstream not in adts format and extradata missing Thu Dec 6 17:49:05 2012 Error writing frame to output Thu Dec 6 17:49:17 2012 10.112.47.18 - - [GET] "/feed1.ffm HTTP/1.1" 200 4149 Thu Dec 6 17:49:17 2012 aac bitstream not in adts format and extradata missing Thu Dec 6 17:49:17 2012 Error writing frame to output Thu Dec 6 17:49:17 2012 h264 bitstream malformated, no startcode found, use -vbsf h264_mp4toannexb Thu Dec 6 17:49:17 2012 Error writing frame to output Thu Dec 6 17:49:17 2012 aac bitstream not in adts format and extradata missing Thu Dec 6 17:49:17 2012 Error writing frame to output Thu Dec 6 17:49:17 2012 10.112.62.79 - - [GET] "/test.ts HTTP/1.1" 200 1947 Thu Dec 6 17:49:33 2012 10.112.47.18 - - [POST] "/feed1.ffm HTTP/1.1" 200 2162688 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 13:55:42 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 12:55:42 -0000 Subject: [FFmpeg-trac] #1997(undetermined:new): setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit Message-ID: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> #1997: setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit -------------------------------------+------------------------------------- Reporter: kahphi | Type: defect Status: new | Priority: minor Component: | Version: 1.0 undetermined | Blocked By: Keywords: webm, | Reproduced by developer: 0 libvpx, setdar, setsar | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- I want to transcode mp4 files (with wrong DAR=5:4 and SAR=1:1) into webm using ffmpeg and thereby set the aspect ratios to DAR=4:3 and SAR=16:15. This works well on a machine with Ubuntu 12.04 64 bit and also on Centos 6. However I am running Ubuntu 12.04 32bit on the production machine and exactly this setup produces erroneous files with SAR=212:199 and DAR=265:199 on the very same input. The ffmpeg console output thereby contains the correct values (DAR=4:3 and SAR=16:15) for the produced vp8 stream but ffprobe tells the afore- mentioned values. The result was the same for an uncompressed avi with no values for DAR/SAR. Using setsar=16:15 and both setdar and setsar does not make a difference. I tried Ffmpeg versions 1.0, 1.0.1 and the current one from git with the same result. Differences on the other machines are: Ubuntu 64 bit: nothing but the runtime environment. Centos: more recent libogg (1.3.0), libvorbis (1.3.3) but older gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4) I already tried both libvpx from the Ubuntu repository (1.0.0.1) and the current git version (1.1.0) built upon {{{ ./configure --extra-cflags="-fPIC" --enable-pic --enable-shared }}} How to reproduce: {{{ % /usr/local/bin/ffmpeg -v debug -i mp4_test.mp4 -vcodec libvpx -acodec libvorbis -vf setdar=4:3 -f webm out_mp4-webm_setdaronly.webm ffmpeg version 1.0 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 3 2012 17:02:53 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5) configuration: --prefix=/usr/local/ --enable-shared --enable-avfilter --enable-libvorbis --enable-pthreads --enable-libvpx --enable-gpl --enable-pic libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] ISO: File Type Major Brand: isom [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] File position before avformat_find_stream_info() is 7551734 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] File position after avformat_find_stream_info() is 34562 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'mp4_test.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2mp41 creation_time : 1970-01-01 00:00:00 encoder : Umile Encoder 3 Duration: 00:00:10.40, start: 0.000000, bitrate: 5809 kb/s Stream #0:0(und), 1, 1/25: Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 720x576 [SAR 1:1 DAR 5:4], 1/25, 5612 kb/s, 25 fps, 25 tbr, 25 tbn, 25 tbc Metadata: creation_time : 1970-01-01 00:00:00 handler_name : VideoHandler Stream #0:1(und), 1, 1/48000: Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, s16, 192 kb/s Metadata: creation_time : 1970-01-01 00:00:00 handler_name : SoundHandler [Parsed_setdar_0 @ 0x851e920] a:4/3 [buffer @ 0x852ef20] Setting entry with key 'video_size' to value '720x576' [buffer @ 0x852ef20] Setting entry with key 'pix_fmt' to value '0' [buffer @ 0x852ef20] Setting entry with key 'time_base' to value '1/25' [buffer @ 0x852ef20] Setting entry with key 'pixel_aspect' to value '1/1' [buffer @ 0x852ef20] Setting entry with key 'sws_param' to value 'flags=2' [buffer @ 0x852ef20] Setting entry with key 'frame_rate' to value '25/1' [graph 0 input from stream 0:0 @ 0x853e5c0] w:720 h:576 pixfmt:yuv420p tb:1/25 fr:25/1 sar:1/1 sws_param:flags=2 [Parsed_setdar_0 @ 0x851e920] w:720 h:576 -> dar:4/3 sar:16/15 [abuffer @ 0x853e040] Setting entry with key 'time_base' to value '1/48000' [abuffer @ 0x853e040] Setting entry with key 'sample_rate' to value '48000' [abuffer @ 0x853e040] Setting entry with key 'sample_fmt' to value 's16' [abuffer @ 0x853e040] Setting entry with key 'channel_layout' to value '0x3' [graph 1 input from stream 0:1 @ 0x853dd40] tb:1/48000 samplefmt:s16 samplerate:48000 chlayout:0x3 [aformat @ 0x853d8e0] Setting entry with key 'sample_fmts' to value 'flt' [audio format for output stream 0:1 @ 0x853d840] auto-inserting filter 'auto-inserted resampler 0' between the filter 'Parsed_anull_0' and the filter 'audio format for output stream 0:1' [auto-inserted resampler 0 @ 0x8514c60] chl:stereo fmt:s16 r:48000Hz -> chl:stereo fmt:flt r:48000Hz [libvpx @ 0x853ed80] v1.1.0 [libvpx @ 0x853ed80] --extra-cflags=-fPIC --enable-pic --enable-shared [libvpx @ 0x853ed80] vpx_codec_enc_cfg [libvpx @ 0x853ed80] generic settings g_usage: 0 g_threads: 0 g_profile: 0 g_w: 320 g_h: 240 g_timebase: {1/30} g_error_resilient: 0 g_pass: 0 g_lag_in_frames: 0 [libvpx @ 0x853ed80] rate control settings rc_dropframe_thresh: 0 rc_resize_allowed: 0 rc_resize_up_thresh: 60 rc_resize_down_thresh: 30 rc_end_usage: 0 rc_twopass_stats_in: (nil)(0) rc_target_bitrate: 256 [libvpx @ 0x853ed80] quantizer settings rc_min_quantizer: 4 rc_max_quantizer: 63 [libvpx @ 0x853ed80] bitrate tolerance rc_undershoot_pct: 100 rc_overshoot_pct: 100 [libvpx @ 0x853ed80] decoder buffer model rc_buf_sz: 6000 rc_buf_initial_sz: 4000 rc_buf_optimal_sz: 5000 [libvpx @ 0x853ed80] 2 pass rate control settings rc_2pass_vbr_bias_pct: 50 rc_2pass_vbr_minsection_pct: 0 rc_2pass_vbr_maxsection_pct: 400 [libvpx @ 0x853ed80] keyframing settings kf_mode: 1 kf_min_dist: 0 kf_max_dist: 128 [libvpx @ 0x853ed80] [libvpx @ 0x853ed80] vpx_codec_enc_cfg [libvpx @ 0x853ed80] generic settings g_usage: 0 g_threads: 0 g_profile: 0 g_w: 720 g_h: 576 g_timebase: {1/25} g_error_resilient: 0 g_pass: 0 g_lag_in_frames: 25 [libvpx @ 0x853ed80] rate control settings rc_dropframe_thresh: 0 rc_resize_allowed: 0 rc_resize_up_thresh: 60 rc_resize_down_thresh: 30 rc_end_usage: 0 rc_twopass_stats_in: (nil)(0) rc_target_bitrate: 200 [libvpx @ 0x853ed80] quantizer settings rc_min_quantizer: 4 rc_max_quantizer: 63 [libvpx @ 0x853ed80] bitrate tolerance rc_undershoot_pct: 100 rc_overshoot_pct: 100 [libvpx @ 0x853ed80] decoder buffer model rc_buf_sz: 6000 rc_buf_initial_sz: 4000 rc_buf_optimal_sz: 5000 [libvpx @ 0x853ed80] 2 pass rate control settings rc_2pass_vbr_bias_pct: 50 rc_2pass_vbr_minsection_pct: 0 rc_2pass_vbr_maxsection_pct: 400 [libvpx @ 0x853ed80] keyframing settings kf_mode: 1 kf_min_dist: 0 kf_max_dist: 128 [libvpx @ 0x853ed80] [libvpx @ 0x853ed80] vpx_codec_control [libvpx @ 0x853ed80] VP8E_SET_CPUUSED: 3 [libvpx @ 0x853ed80] VP8E_SET_ARNR_MAXFRAMES: 0 [libvpx @ 0x853ed80] VP8E_SET_ARNR_STRENGTH: 3 [libvpx @ 0x853ed80] VP8E_SET_ARNR_TYPE: 3 [libvpx @ 0x853ed80] VP8E_SET_NOISE_SENSITIVITY: 0 [libvpx @ 0x853ed80] VP8E_SET_TOKEN_PARTITIONS: 0 [libvpx @ 0x853ed80] VP8E_SET_STATIC_THRESHOLD: 0 [libvpx @ 0x853ed80] VP8E_SET_CQ_LEVEL: 0 [libvpx @ 0x853ed80] Using deadline: 1000000 [mpeg4 @ 0x851cee0] detected 2 logical cores Output #0, webm, to 'out_mp4-webm_setdaronly.webm': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2mp41 encoder : Lavf54.29.104 Stream #0:0(und), 0, 1/1000: Video: vp8, yuv420p, 720x576 [SAR 16:15 DAR 4:3], 1/25, q=-1--1, 200 kb/s, 1k tbn, 25 tbc Metadata: creation_time : 1970-01-01 00:00:00 handler_name : VideoHandler Stream #0:1(und), 0, 1/1000: Audio: vorbis, 48000 Hz, stereo, flt Metadata: creation_time : 1970-01-01 00:00:00 handler_name : SoundHandler Stream mapping: Stream #0:0 -> #0:0 (mpeg4 -> libvpx) Stream #0:1 -> #0:1 (aac -> libvorbis) Press [q] to stop, [?] for help [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8516500] demuxer injecting skip 1024 [aac @ 0x851dbe0] skip 1024 samples due to side data [aac @ 0x851dbe0] skip whole frame, skip left: 0 [libvorbis @ 0x852e420] Que input is backward in time [webm @ 0x853e6c0] Writing block at offset 4481, size 35867, pts 0, dts 0, duration 40, flags 128 [webm @ 0x853e6c0] Writing block at offset 40356, size 40, pts 21, dts 21, duration 3, flags 128 [webm @ 0x853e6c0] Writing block at offset 40402, size 222, pts 24, dts 24, duration 12, flags 128 [webm @ 0x853e6c0] Writing block at offset 40631, size 208, pts 36, dts 36, duration 21, flags 128 ... }}} FFprobe: {{{ % /usr/local/bin/ffprobe -print_format json -show_format -show_streams out_mp4-webm_setdaronly.webm ffprobe version 1.0 Copyright (c) 2007-2012 the FFmpeg developers built on Dec 3 2012 17:02:53 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5) configuration: --prefix=/usr/local/ --enable-shared --enable-avfilter --enable-libvorbis --enable-pthreads --enable-libvpx --enable-gpl --enable-pic libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 { Input #0, matroska,webm, from 'out_mp4-webm_setdaronly.webm': Duration: 00:00:11.33, start: 0.000000, bitrate: 273 kb/s Stream #0:0: Video: vp8, yuv420p, 720x576, SAR 212:199 DAR 265:199, 25 fps, 25 tbr, 1k tbn, 1k tbc (default) Stream #0:1: Audio: vorbis, 48000 Hz, stereo, s16 (default) "streams": [ { "index": 0, "codec_name": "vp8", "codec_long_name": "On2 VP8", "codec_type": "video", "codec_time_base": "1/1000", "codec_tag_string": "[0][0][0][0]", "codec_tag": "0x0000", "width": 720, "height": 576, "has_b_frames": 0, "sample_aspect_ratio": "212:199", "display_aspect_ratio": "265:199", "pix_fmt": "yuv420p", "level": -99, "r_frame_rate": "25/1", "avg_frame_rate": "25/1", "time_base": "1/1000", "start_pts": 0, "start_time": "0.000000" }, { "index": 1, "codec_name": "vorbis", "codec_long_name": "Vorbis", "codec_type": "audio", "codec_time_base": "1/48000", "codec_tag_string": "[0][0][0][0]", "codec_tag": "0x0000", "sample_fmt": "s16", "sample_rate": "48000", "channels": 2, "bits_per_sample": 0, "r_frame_rate": "0/0", "avg_frame_rate": "0/0", "time_base": "1/1000", "start_pts": 0, "start_time": "0.000000" } ], "format": { "filename": "out_mp4-webm_setdaronly.webm", "nb_streams": 2, "format_name": "matroska,webm", "format_long_name": "Matroska / WebM", "start_time": "0.000000", "duration": "11.332000", "size": "387786", "bit_rate": "273763" } } }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 15:47:13 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 14:47:13 -0000 Subject: [FFmpeg-trac] #1929(build system:new): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.d001da471634dd58dd3d76baa2e0195d@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: new Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rogerdpack): My latest guess is that configure does this test compile: {{{ extern int pthread_create(); int main(void){ pthread_create(); } }}} then compiles it like $ gcc -c input_filename -o output.o which happily creates output.o (but output.o would fail at link time since libpthread.a library is absent). I believe my initial report was reporting that I had configured it without passing the right compiler directive flags to *use* libpthread.a correctly, the second report was when I had no libpthread.a file present on the system at all. So that's why the 2 messages differ--they both had broken pthread libraries (or absent), but they were broken in slightly different ways. HTH. roger- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 23:15:30 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 22:15:30 -0000 Subject: [FFmpeg-trac] #925(avcodec:open): lead h263 - reject files encoded in "high compression" / rtp modes In-Reply-To: <038.4fb99c6856eb93df18f1fd40724a3273@avcodec.org> References: <038.4fb99c6856eb93df18f1fd40724a3273@avcodec.org> Message-ID: <053.7af90275c672301548a0d76ad56a1587@avcodec.org> #925: lead h263 - reject files encoded in "high compression" / rtp modes ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: h263 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ami_stuff): Replying to [comment:3 ami_stuff]: > The only problem with ehc is that the video is squeezed (height) compared to what I get from original codec (no such problem happens with sorenson output - see attached). This is another problem with aspect ratio: C:\>ffmpeg -i lead_h263_ehc.avi -vcodec msmpeg4v2 out.avi out.avi is displayed correctly by ffplay -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 23:27:08 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 22:27:08 -0000 Subject: [FFmpeg-trac] #1929(build system:new): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.195d4a873b4e0074314022aa07f82434@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: new Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:6 rogerdpack]: > My latest guess is that configure does this test compile: > {{{ > extern int pthread_create(); > int main(void){ pthread_create(); } > }}} > > then compiles it like $ gcc -c input_filename -o output.o > > which happily creates output.o (but output.o would fail at link time since libpthread.a library is absent). Your config.log output above shows that configure does link pthreads: $ gcc -pthread -o ffconf.iBCSJu0K.exe /tmp/ffconf.pdlULg0G.o (simplified) > I believe my initial report was reporting that I had configured it without passing the right compiler directive flags to *use* libpthread.a correctly, the second report was when I had no libpthread.a file present on the system at all. It is not a good idea to change the report in the middle of the ticket. Please elaborate which is the (bottom of the) output of: $ make distclean && ./configure --disable-w32threads && make ffmpeg; make V=1 ffmpeg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 6 23:56:06 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 22:56:06 -0000 Subject: [FFmpeg-trac] #1997(undetermined:new): setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.654a377031e508b2d837ff769f51238f@avcodec.org> #1997: setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit --------------------------------+---------------------------------------- Reporter: kahphi | Owner: Type: defect | Status: new Priority: minor | Component: undetermined Version: 1.0 | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Changes (by cehoyos): * keywords: webm, libvpx, setdar, setsar => mkv Comment: Maybe I am missing something, but isn't 16/15 ~ 212/199 and 4/3 ~ 265/199 ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 00:14:26 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 23:14:26 -0000 Subject: [FFmpeg-trac] #1929(build system:new): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.79a7c0151a9710114fec5a182e36bc81@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: new Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rogerdpack): If I remove the file "libpthread.a" from my system, then the output is {{{ /home/rogerdpack/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/lib/gcc/i686-w64-mingw32/4.7.1/../../../../i686-w64-mingw32/bin/ld: cannot find -lpthread }}} Could you post to me the exact line you are seeing from config.log that shows it 'succeeding' so I can check it? (my thought is that it will have a "-c" in it, which means it happily creates a .o file, thinking that linking will later work--it doesn't). So basically what we have here is a *freaky* case where gcc responds to "-pthread" but doing so doesn't actually give you pthreads, is my guess. FWIW. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 00:35:41 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 06 Dec 2012 23:35:41 -0000 Subject: [FFmpeg-trac] #1929(build system:new): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.808b2f96405f66985c4cef9d1e83d19a@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: new Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:8 rogerdpack]: > Could you post to me the exact line you are seeing from config.log that shows it 'succeeding' so I can check it? {{{ /home/rogerdpack/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Wl,--as-needed -pthread -o /tmp/ffconf.iBCSJu0K.exe /tmp/ffconf.pdlULg0G.o -lbz2 -lz -lpsapi -ladvapi32 -lshell32 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 03:58:17 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 02:58:17 -0000 Subject: [FFmpeg-trac] #1713(build system:closed): Linkage fails due to relocations In-Reply-To: <036.23574f4c51322f329207cd29906695e7@avcodec.org> References: <036.23574f4c51322f329207cd29906695e7@avcodec.org> Message-ID: <051.1e4c7376d8e8b24c79b4b22b308bf375@avcodec.org> #1713: Linkage fails due to relocations -------------------------------------+------------------------------------- Reporter: Krieger | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rminsk): Replying to [comment:1 Krieger]: > This is fixed by adding -Wl,-Bsymbolic to last linkage command: > {{{ > gcc -fPIC -shared -o mylib.so mylib.o -Wl,-Bdynamic $FFMPEG_PATH/libav{format,codec,util}.a > }}} Sorry about commenting on a closed case. I have the exact same problem. I have compiled static libraries for ffmpeg with --enable-pic. Adding -Wl,-Bdynamic did not help. The only solution seems to be adding the "--disable-asm" flag when building ffmpeg. {{{ g++ -fPIC -L/tools/shed/opensource/ffmpeg/1.0.1/payload/lib64 -L../../lib -shared audio.o lqt_ffmpeg.o params.o video.o -o lqt_ffmpeg.so -Wl,-Bdynamic -lquicktime -lavformat -lavcodec -lswscale -lavutil -Wl ,--no-whole-archive /usr/bin/ld: /tools/shed/opensource/ffmpeg/1.0.1/payload/lib64/libavcodec.a(h264_cabac.o): relocation R_X86_64_PC32 against `ff_h264_cabac_tables' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: final link failed: Bad value collect2: ld returned 1 exit status make: *** [lqt_ffmpeg.so] Error 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 04:10:27 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 03:10:27 -0000 Subject: [FFmpeg-trac] #1998(build system:new): Please reopen Ticket #1713 - Linkage fails due to relocations Message-ID: <035.7150951b20aaef5f41314ec3e4913372@avcodec.org> #1998: Please reopen Ticket #1713 - Linkage fails due to relocations --------------------------------------+---------------------------------- Reporter: rminsk | Type: defect Status: new | Priority: normal Component: build system | Version: 1.0 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+---------------------------------- Summary of the bug: Please reexamine Ticket #1713. The solution of adding -Wl,-Bdynamic does not seem to work. Only adding --disable-asm seems to work. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 08:36:44 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 07:36:44 -0000 Subject: [FFmpeg-trac] #1998(build system:closed): Please reopen Ticket #1713 - Linkage fails due to relocations In-Reply-To: <035.7150951b20aaef5f41314ec3e4913372@avcodec.org> References: <035.7150951b20aaef5f41314ec3e4913372@avcodec.org> Message-ID: <050.7e26118f7d115ed1961f59c6837b7063@avcodec.org> #1998: Please reopen Ticket #1713 - Linkage fails due to relocations --------------------------------+---------------------------------------- Reporter: rminsk | Owner: Type: defect | Status: closed Priority: normal | Component: build system Version: 1.0 | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 08:52:51 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 07:52:51 -0000 Subject: [FFmpeg-trac] #1713(build system:closed): Linkage fails due to relocations In-Reply-To: <036.23574f4c51322f329207cd29906695e7@avcodec.org> References: <036.23574f4c51322f329207cd29906695e7@avcodec.org> Message-ID: <051.d7660906da75ee590a5f6f2c4fcd7e8c@avcodec.org> #1713: Linkage fails due to relocations -------------------------------------+------------------------------------- Reporter: Krieger | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:3 rminsk]: > Replying to [comment:1 Krieger]: > > This is fixed by adding -Wl,-Bsymbolic to last linkage command: > > {{{ > > gcc -fPIC -shared -o mylib.so mylib.o -Wl,-Bdynamic $FFMPEG_PATH/libav{format,codec,util}.a > > }}} > > Sorry about commenting on a closed case. I have the exact same problem. I have compiled static libraries for ffmpeg with --enable-pic. Adding -Wl,-Bdynamic did not help. That would indicate that you do not have the same problem, but ... > {{{ > g++ -fPIC -L/tools/shed/opensource/ffmpeg/1.0.1/payload/lib64 -L../../lib -shared audio.o lqt_ffmpeg.o params.o video.o -o lqt_ffmpeg.so -Wl,-Bdynamic -lquicktime -lavformat -lavcodec -lswscale -lavutil -Wl ,--no-whole-archive > /usr/bin/ld: /tools/shed/opensource/ffmpeg/1.0.1/payload/lib64/libavcodec.a(h264_cabac.o): relocation R_X86_64_PC32 against `ff_h264_cabac_tables' can not be used when making a shared object; recompile with -fPIC > /usr/bin/ld: final link failed: Bad value > collect2: ld returned 1 exit status > make: *** [lqt_ffmpeg.so] Error 1 > }}} ... please add the output if you add -Wl,-Bsymbolic to the command. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 13:54:45 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 12:54:45 -0000 Subject: [FFmpeg-trac] #1997(undetermined:new): setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.c4c9bc4edd83b7436d32eb3ab45695b9@avcodec.org> #1997: setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit --------------------------------+---------------------------------------- Reporter: kahphi | Owner: Type: defect | Status: new Priority: minor | Component: undetermined Version: 1.0 | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by cehoyos): Is this reproducible with current git head? I ask because you wrote that is also fails with current git head, but your output indicates you tested 1.0.1. Please provide mp4_test.mp4 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 15:48:12 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 14:48:12 -0000 Subject: [FFmpeg-trac] #1997(undetermined:new): setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.25a560c47553580f8a1392d29ed6a418@avcodec.org> #1997: setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit --------------------------------+---------------------------------------- Reporter: kahphi | Owner: Type: defect | Status: new Priority: minor | Component: undetermined Version: 1.0 | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by kahphi): You are right, it is approximately the same. Nevertheless, I am confused that the given input is approximated. The behavior also shows when using the git head version for both mkv packaging (using vcodec mpeg4) and webm. I also uploaded a sample to the Mplayer ftp: ffmpeg_ticket_1997.mp4 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 15:50:20 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 14:50:20 -0000 Subject: [FFmpeg-trac] #1993(avformat:open): Badly interleaved partial AVI file causes audio/video desync In-Reply-To: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> References: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> Message-ID: <050.3a946a06352e3d4700f8da967ce57fee@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 Comment: FFmpeg does not support non-interleaved avi files without index, ie if the index gets removed from a non-interleaved avi, it cannot be played anymore with ffplay and mplayer -demuxer avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 16:09:56 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 15:09:56 -0000 Subject: [FFmpeg-trac] #1993(avformat:open): Badly interleaved partial AVI file causes audio/video desync In-Reply-To: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> References: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> Message-ID: <050.0ffe7028262247fb2ce2f561aa9845a7@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by gjdfgh): mplayer -demuxer avi can play it. You need to add -idx to seek in it. (I'm assuming the index is located in the last few megabytes of the avi file, so an incomplete avi file would always be without index.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 16:42:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 15:42:41 -0000 Subject: [FFmpeg-trac] #1997(avformat:open): setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit (was: setdar/setsar on webm transcoding produces files with wrong aspect ratio on Ubuntu 12.04 32 bit) In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.4af3a94693a69002e9e538322aa2088b@avcodec.org> #1997: setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit ------------------------------------+------------------------------------ Reporter: kahphi | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => avformat * version: 1.0 => git-master * analyzed: 0 => 1 Comment: Reproducible without external libraries: {{{ $ ./ffmpeg -i tests/lena.pnm -s 720x576 -vf setdar=5:4 -vcodec flv1 out.mkv $ ./ffmpeg -i out.mkv -vf setdar=4:3 -vcodec flv1 out2.mkv }}} If ffmpeg was compiled with -m64, the resulting file out2.mkv has MATROSKA_ID_VIDEODISPLAYWIDTH set to 768 and DAR is 4:3. If ffmpeg was compiled with -m32, out2.mkv has MATROSKA_ID_VIDEODISPLAYWIDTH set to 767 (and DAR is 265:199) because d_width in mkv_write_tracks() is calculated as 767. {{{ $ ./ffmpeg -i out.mkv -vf setdar=4:3 -vcodec flv1 out32.mkv ffmpeg version N-47576-g6777aa6 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 7 2012 16:37:06 with gcc 4.7 (SUSE Linux) configuration: --cc='cc -m32' libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 47.100 / 54. 47.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 25.101 / 3. 25.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 Input #0, matroska,webm, from 'out.mkv': Metadata: ENCODER : Lavf54.47.100 Duration: 00:00:00.04, start: 0.000000, bitrate: 6428 kb/s Stream #0:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576, SAR 1:1 DAR 5:4, 25 fps, 25 tbr, 1k tbn, 1k tbc (default) [Parsed_setdar_0 @ 0x93a11e0] num:den syntax is deprecated, please use num/den or named options instead Output #0, matroska, to 'out32.mkv': Metadata: encoder : Lavf54.47.100 Stream #0:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576 [SAR 16:15 DAR 4:3], q=2-31, 200 kb/s, 1k tbn, 25 tbc (default) Stream mapping: Stream #0:0 -> #0:0 (flv -> flv) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=5.0 Lsize= 31kB time=00:00:00.04 bitrate=6429.2kbits/s video:31kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1.963396% }}} {{{ $ ./ffmpeg -i out.mkv -vf setdar=4:3 -vcodec flv1 out64.mkv ffmpeg version N-47576-g6777aa6 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 7 2012 16:38:57 with gcc 4.7 (SUSE Linux) configuration: --cc='cc -m64' libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 47.100 / 54. 47.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 25.101 / 3. 25.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 Input #0, matroska,webm, from 'out.mkv': Metadata: ENCODER : Lavf54.47.100 Duration: 00:00:00.04, start: 0.000000, bitrate: 6428 kb/s Stream #0:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576, SAR 1:1 DAR 5:4, 25 fps, 25 tbr, 1k tbn, 1k tbc (default) [Parsed_setdar_0 @ 0x2584980] num:den syntax is deprecated, please use num/den or named options instead Output #0, matroska, to 'out64.mkv': Metadata: encoder : Lavf54.47.100 Stream #0:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576 [SAR 16:15 DAR 4:3], q=2-31, 200 kb/s, 1k tbn, 25 tbc (default) Stream mapping: Stream #0:0 -> #0:0 (flv -> flv) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=5.0 Lsize= 31kB time=00:00:00.04 bitrate=6429.2kbits/s video:31kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1.963396% }}} {{{ $ ffmpeg -i out32.mkv -i out64.mkv ffmpeg version N-47576-g6777aa6 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 7 2012 16:40:58 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 11.102 / 52. 11.102 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 47.100 / 54. 47.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 25.101 / 3. 25.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, matroska,webm, from 'out32.mkv': Metadata: ENCODER : Lavf54.47.100 Duration: 00:00:00.04, start: 0.000000, bitrate: 6429 kb/s Stream #0:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576, SAR 212:199 DAR 265:199, 25 fps, 25 tbr, 1k tbn, 1k tbc (default) Input #1, matroska,webm, from 'out64.mkv': Metadata: ENCODER : Lavf54.47.100 Duration: 00:00:00.04, start: 0.000000, bitrate: 6429 kb/s Stream #1:0: Video: flv1 (FLV1 / 0x31564C46), yuv420p, 720x576, SAR 16:15 DAR 4:3, 25 fps, 25 tbr, 1k tbn, 1k tbc (default) At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 16:44:55 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 15:44:55 -0000 Subject: [FFmpeg-trac] #1993(avformat:open): Badly interleaved partial AVI file causes audio/video desync In-Reply-To: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> References: <035.80e603599249cbd3cb6516fd3cbadc8b@avcodec.org> Message-ID: <050.2ca88fbf722a36a9eb727016c735e2d6@avcodec.org> #1993: Badly interleaved partial AVI file causes audio/video desync ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [comment:4 gjdfgh]: > mplayer -demuxer avi can play it. You need to add -idx to seek in it. Sorry, there was a typo in my message, it should read "it cannot be played ... with ffplay and mplayer -demuxer lavf" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 17:07:39 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 16:07:39 -0000 Subject: [FFmpeg-trac] #1999(undetermined:new): fax 2d decompression bug Message-ID: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> #1999: fax 2d decompression bug -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- there must be some error (maybe off by one) in fax decoding code attached files have normal FillOrder and were created with tiffcp tiffcp -f msb2lsb -c g3:2d test.tif g3_2d_msb2lsb.tif tiffcp -f msb2lsb -c g4 test.tif g4_msb2lsb.tif (-c g3:1d decodes ok) {{{ C:\>ffmpeg -i g3_2d_msb2lsb.tif -f null - ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [tiff @ 0x1eec9e0] Run overrun Last message repeated 6 times Input #0, image2, from 'g3_2d_msb2lsb.tif': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: tiff, monob, 1024x768, 25 tbr, 25 tbn, 25 tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.41.100 Stream #0:0: Video: rawvideo (B0W1 / 0x31573042), monob, 1024x768, q=2-31, 2 00 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (tiff -> rawvideo) Press [q] to stop, [?] for help [tiff @ 0x1eec9e0] Run overrun Last message repeated 6 times [null @ 0x1fc5da0] Encoder did not produce proper pts, making some up. frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} {{{ C:\>ffmpeg -i g4_msb2lsb.tif -f null - ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [tiff @ 0x1eec9e0] Run overrun Input #0, image2, from 'g4_msb2lsb.tif': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: tiff, monob, 1024x768, 25 tbr, 25 tbn, 25 tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.41.100 Stream #0:0: Video: rawvideo (B0W1 / 0x31573042), monob, 1024x768, q=2-31, 2 00 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (tiff -> rawvideo) Press [q] to stop, [?] for help [tiff @ 0x1eec9e0] Run overrun [null @ 0x1fc5da0] Encoder did not produce proper pts, making some up. frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 17:38:03 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 16:38:03 -0000 Subject: [FFmpeg-trac] #1999(avcodec:open): fax 2d decompression bug In-Reply-To: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> References: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> Message-ID: <053.3135d96952e100d6f13bc557dbc28d8d@avcodec.org> #1999: fax 2d decompression bug ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => tif * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 Comment: Artefacts are visible for both samples. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 17:39:05 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 16:39:05 -0000 Subject: [FFmpeg-trac] #1938(build system:open): Provide c99wrap.exe and c99conv.exe In-Reply-To: <038.a65c2541dd0fc4c6d12e0249656ac5e2@avcodec.org> References: <038.a65c2541dd0fc4c6d12e0249656ac5e2@avcodec.org> Message-ID: <053.82584f8f6c49e45219313d48c1c7a8b6@avcodec.org> #1938: Provide c99wrap.exe and c99conv.exe -------------------------------------+------------------------------------- Reporter: theateist | Owner: Type: enhancement | Status: open Priority: wish | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by rafi): * component: documentation => build system Comment: Replying to [comment:9 theateist]: > Replying to [comment:8 cehoyos]: > > Use these executables until we can provide them: > > https://github.com/libav/c99-to-c89/downloads > > 1 - I placed makedef, c99wrap.exe, c99conv.exe, and yasm.exe to "c:\ex" and added "c:\ex" to PATH > 2 - I downloaded latest ffmpeg source to "c:\ff_src" and placed inttypes.h to "c:\ff_src" > 3 - I ran msys.bat from the Visual Studio command prompt. > 4 - ran ./configure --toolchain=msvc > 5 - ran make > > I expected that after "make" I'll get compiled ffmpeg in VS manner and namely lib,pdb,exe files, but I get .a,.d,.o files instead. It seems that it was compiled by gcc and not cl! > > What could happened? > > Thank you hello i followed the steps as described above. but when i run the msys.bat which is located in my directory : C:\MinGW\msys\1.0 it just enter into some command shell & thats it. when i edit the msys.bat i see it is shown in my notpad with no CRLF but as long line. can you help ? thanks rafi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 17:43:23 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 16:43:23 -0000 Subject: [FFmpeg-trac] #1938(build system:open): Provide c99wrap.exe and c99conv.exe In-Reply-To: <038.a65c2541dd0fc4c6d12e0249656ac5e2@avcodec.org> References: <038.a65c2541dd0fc4c6d12e0249656ac5e2@avcodec.org> Message-ID: <053.c3a7b308d28ddfd9cfc7bd2e0643eed2@avcodec.org> #1938: Provide c99wrap.exe and c99conv.exe -------------------------------------+------------------------------------- Reporter: theateist | Owner: Type: enhancement | Status: open Priority: wish | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:19 rafi]: > i followed the steps as described above. but when i run the msys.bat which is located in > my directory : C:\MinGW\msys\1.0 > it just enter into some command shell & thats it. This is what should be expected when running msys.bat afaik -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 17:44:25 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 16:44:25 -0000 Subject: [FFmpeg-trac] #2000(build system:new): does not succeed in building ffmpeg to msvs Message-ID: <033.79b35f3ae4fe84cf88436bdc433e7597@avcodec.org> #2000: does not succeed in building ffmpeg to msvs -------------------------------------+------------------------------------- Reporter: rafi | Type: defect Status: new | Priority: wish Component: build | Version: system | unspecified Keywords: FFmpeg | Blocked By: built with MSVC using | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- i followed the steps as documented in http://ffmpeg.org/platform.html#Microsoft-Visual-C_002b_002b still when i activate: C:\MinGW\msys\1.0\msys.bat it just activate some csh/command interpeter and thats all canyou help ? thanks rafi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 18:34:53 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 17:34:53 -0000 Subject: [FFmpeg-trac] #2000(build system:closed): does not succeed in building ffmpeg to msvs In-Reply-To: <033.79b35f3ae4fe84cf88436bdc433e7597@avcodec.org> References: <033.79b35f3ae4fe84cf88436bdc433e7597@avcodec.org> Message-ID: <048.e59dae8f46454ab446b33b2496d2894e@avcodec.org> #2000: does not succeed in building ffmpeg to msvs -------------------------------------+------------------------------------- Reporter: rafi | Owner: Type: defect | Status: closed Priority: wish | Component: build Version: unspecified | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: FFmpeg built with MSVC using => * status: new => closed * resolution: => invalid Comment: This is the FFmpeg bug tracker, you can report bugs that are reproducible with either a program or a library from the FFmpeg project, and you can request enhancements. This is not the help forum for compilation problems and it is certainly no forum to learn shell basics. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 20:55:14 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 19:55:14 -0000 Subject: [FFmpeg-trac] #1929(build system:new): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.057738caf5cef3efed50b7cc91ee676e@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: new Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rogerdpack): Ok I think I may have pasted a poor config.log file initially, my fault, and my apologies. The specific issue I will address is if there is "no" libpthread.a on the system. I'll focus for that now (the headers may be there, however). So here is the output, starting over: So, after removing libpthread.a, and then configuring and building ffmpeg with --disable-w32threads, I get this error at link time: {{{ ffmpeg_git$ make V=1 /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl,--warn- common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffmpeg_g.exe ffmpeg_opt.o ffmpeg_filter.o ffmpeg.o cmdutils.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -lavicap32 -lpsapi -lole32 -lstrmiids -luuid -ldl -ldl -lws2_32 -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lmingw32 -lSDLmain -lSDL -lm -luser32 -lgdi32 -lwinmm -ldxguid -lnettle -lhogweed -lgmp -lxvidcore -lxavs -lvpx -lvpx -lvorbisenc -lvorbis -logg -lvo-amrwbenc -lvo-aacenc -lutvideo -lstdc++ -ltheoraenc -ltheoradec -logg -lspeex -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lrtmp -lwinmm -lz -lgnutls -lnettle -lhogweed -lgmp -lcrypt32 -lws2_32 -L/home/rdp/dev /ffmpeg-windows-build-helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lopus -lopenjpeg -lopencore-amrwb -lopencore-amrnb -lmp3lame -lgsm -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lfreetype -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lass -lm -lfontconfig -lexpat -lfribidi -lfreetype -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lgnutls -lnettle -lhogweed -lgmp -lcrypt32 -lws2_32 -L/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib -lfontconfig -lfreetype -lexpat -lavifil32 -lm -lbz2 -lz -lpsapi -ladvapi32 -lshell32 /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/i686-w64-mingw32/lib/libvpx.a(systemdependent.c.o):(.text+0x21): undefined reference to `pthread_once' collect2: error: ld returned 1 exit status make: *** [ffmpeg_g.exe] Error 1 }}} The relevant part of config.log is this {{{ check_func pthread_create check_ld cc check_cc BEGIN /tmp/ffconf.n0EK4a2U.c 1 extern int pthread_create(); 2 int main(void){ pthread_create(); } END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -c -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Wl,--as-needed -o /tmp/ffconf.1rQfly6Z.exe /tmp/ffconf.OzeIGWH5.o -lbz2 -lz -lpsapi -ladvapi32 -lshell32 /tmp/ffconf.OzeIGWH5.o:ffconf.n0EK4a2U.c:(.text+0xc): undefined reference to `pthread_create' collect2: error: ld returned 1 exit status check_func pthread_create -pthread check_ld cc -pthread check_cc -pthread BEGIN /tmp/ffconf.n0EK4a2U.c 1 extern int pthread_create(); 2 int main(void){ pthread_create(); } END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -pthread -c -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Wl,--as-needed -pthread -o /tmp/ffconf.1rQfly6Z.exe /tmp/ffconf.OzeIGWH5.o -lbz2 -lz -lpsapi -ladvapi32 -lshell32 /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/lib/gcc/i686-w64-mingw32/4.7.2/../../../../i686-w64-mingw32/bin/ld: cannot find -lpthread collect2: error: ld returned 1 exit status check_func pthread_create -pthreads check_ld cc -pthreads check_cc -pthreads BEGIN /tmp/ffconf.n0EK4a2U.c 1 extern int pthread_create(); 2 int main(void){ pthread_create(); } END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -pthreads -c -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c i686-w64-mingw32-gcc: error: unrecognized command line option '-pthreads' check_func pthread_create -lpthreadGC2 check_ld cc -lpthreadGC2 check_cc BEGIN /tmp/ffconf.n0EK4a2U.c 1 extern int pthread_create(); 2 int main(void){ pthread_create(); } END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -c -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Wl,--as-needed -o /tmp/ffconf.1rQfly6Z.exe /tmp/ffconf.OzeIGWH5.o -lpthreadGC2 -lbz2 -lz -lpsapi -ladvapi32 -lshell32 /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/lib/gcc/i686-w64-mingw32/4.7.2/../../../../i686-w64-mingw32/bin/ld: cannot find -lpthreadGC2 collect2: error: ld returned 1 exit status check_lib pthread.h pthread_create -lpthread check_header pthread.h check_cpp BEGIN /tmp/ffconf.n0EK4a2U.c 1 #include 2 int x; END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -E -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c check_func pthread_create -lpthread check_ld cc -lpthread check_cc BEGIN /tmp/ffconf.n0EK4a2U.c 1 extern int pthread_create(); 2 int main(void){ pthread_create(); } END /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -DPTW32_STATIC_LIB -std=c99 -fomit-frame-pointer -c -o /tmp/ffconf.OzeIGWH5.o /tmp/ffconf.n0EK4a2U.c /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32-gcc -Wl,--as-needed -o /tmp/ffconf.1rQfly6Z.exe /tmp/ffconf.OzeIGWH5.o -lpthread -lbz2 -lz -lpsapi -ladvapi32 -lshell32 /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/lib/gcc/i686-w64-mingw32/4.7.2/../../../../i686-w64-mingw32/bin/ld: cannot find -lpthread collect2: error: ld returned 1 exit status check_lib math.h sin -lm ... }}} I think I copied and pasted it in there ok. It appears to find the file "pthread.h" but the linking tests all fail, but I would be happy to be proven wrong. Thanks! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 21:04:57 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 20:04:57 -0000 Subject: [FFmpeg-trac] #1999(avcodec:open): fax 2d decompression bug In-Reply-To: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> References: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> Message-ID: <053.bfd762e8185f3cfe65c406dba671569e@avcodec.org> #1999: fax 2d decompression bug ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ami_stuff): The problem seems to be with size of buffer, see attached hack. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 21:29:16 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 20:29:16 -0000 Subject: [FFmpeg-trac] #1828(avformat:closed): Start timestamp ignored when muxing dvd_subtitle In-Reply-To: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> References: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> Message-ID: <050.9a117e574d1646a3d7c1365149d7923d@avcodec.org> #1828: Start timestamp ignored when muxing dvd_subtitle -------------------------------------+------------------------------------ Reporter: billie | Owner: ubitux Type: enhancement | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: vobsub | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by ubitux): * status: open => closed * resolution: => fixed Comment: Added in 710c4baf. You can try to mux with -i sub.idx. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 23:40:02 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 22:40:02 -0000 Subject: [FFmpeg-trac] #1828(avformat:closed): Start timestamp ignored when muxing dvd_subtitle In-Reply-To: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> References: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> Message-ID: <050.576c52e9022c2348e9888418735ad8b2@avcodec.org> #1828: Start timestamp ignored when muxing dvd_subtitle -------------------------------------+------------------------------------ Reporter: billie | Owner: ubitux Type: enhancement | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: vobsub => dvdsub -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 23:41:04 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 22:41:04 -0000 Subject: [FFmpeg-trac] #1806(avformat:open): Audio/video stream order reversed in remuxed VOB files In-Reply-To: <035.a3b814d6a21bb6343a4e17bdb0651e66@avcodec.org> References: <035.a3b814d6a21bb6343a4e17bdb0651e66@avcodec.org> Message-ID: <050.002120b3487607a7c8fd6b0c7ca73235@avcodec.org> #1806: Audio/video stream order reversed in remuxed VOB files ------------------------------------+------------------------------------ Reporter: paulbu | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: stream VOB => mpegps -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 7 23:45:51 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 22:45:51 -0000 Subject: [FFmpeg-trac] #1929(build system:closed): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.93f972d01f08eefac82c1d47e86aed9b@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: If you want to reopen this ticket, please provide the following: * The exact configure line you are using including its output until (and including) the line starting with "makeinfo enabled". * The complete, uncut output of "make V=1" (including this command) after running make before (at least twice) and getting a linking failure. * You may be asked to provide an excerpt of config.log, if you prefer attach the complete file. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 00:32:33 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 23:32:33 -0000 Subject: [FFmpeg-trac] #726(undetermined:open): support for copying SMPTE 436M caption tracks In-Reply-To: <036.1341575c7004a7bcdb9adc617d5bd82d@avcodec.org> References: <036.1341575c7004a7bcdb9adc617d5bd82d@avcodec.org> Message-ID: <051.64a909bbc690676fe737e43560ec2786@avcodec.org> #726: support for copying SMPTE 436M caption tracks -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: cc mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: cc => cc mxf -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 00:41:19 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 23:41:19 -0000 Subject: [FFmpeg-trac] #1165(avcodec:closed): h264 seeking regression. In-Reply-To: <039.7c15a145db8e3a47f210ce06cd906d46@avcodec.org> References: <039.7c15a145db8e3a47f210ce06cd906d46@avcodec.org> Message-ID: <054.5e6e65f7ae1812eb4958d126167464a0@avcodec.org> #1165: h264 seeking regression. ------------------------------------+----------------------------------- Reporter: dalecurtis | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 seek | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: h264 random access => h264 seek -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 00:41:30 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 07 Dec 2012 23:41:30 -0000 Subject: [FFmpeg-trac] #852(avcodec:closed): MTS files from Canon HG20 no longer replayed In-Reply-To: <036.34622a1c28b2a480a8ff9a5482bb7883@avcodec.org> References: <036.34622a1c28b2a480a8ff9a5482bb7883@avcodec.org> Message-ID: <051.0c480573b7243d0d8a17e16d068f1699@avcodec.org> #852: MTS files from Canon HG20 no longer replayed ------------------------------------+----------------------------------- Reporter: stef716 | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 seek | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: h264 random access => h264 seek -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 11:58:32 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 10:58:32 -0000 Subject: [FFmpeg-trac] #1997(avformat:open): setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.79a39795fdfeaaeb993c665aab92074c@avcodec.org> #1997: setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit ------------------------------------+------------------------------------ Reporter: kahphi | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Comment (by Cigaes): Does the following patch fix things for you? [http://ffmpeg.org/pipermail/ffmpeg-devel/2012-December/135431.html] (by the way, it would be nice to have an archive where patches could be extracted more easily) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 15:31:06 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 14:31:06 -0000 Subject: [FFmpeg-trac] #2001(avformat:new): ffmpeg can't handle mms streaming using http:// prefix Message-ID: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> #2001: ffmpeg can't handle mms streaming using http:// prefix ----------------------------------+-------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: avformat | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- This works and shows a video: {{{ mplayer http://direct.francetv.fr/regions/evt/medit-nice- direct.wsx?MSWMExt=.asf }}} while {{{ ffplay http://direct.francetv.fr/regions/evt/medit-nice- direct.wsx?MSWMExt=.asf }}} does not. Note that the actual stream works nice with ffmpeg: {{{ ffplay mmsh://direct.francetv.fr/regions/evt/medit-nice- direct.wsx?MSWMExt=.asf }}} this works and shows a video. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 15:38:10 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 14:38:10 -0000 Subject: [FFmpeg-trac] #2002(avformat:new): mms streaming always requests all streams Message-ID: <035.3f4ef5bc7df568c110cfde0735d70464@avcodec.org> #2002: mms streaming always requests all streams ----------------------------------+-------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: avformat | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- The mms protocol can support multiple video streams. Each of these streams shows the same video, but at a different quality. This is intended to save bandwidth. Looking at libavformat/mmsh.c, it seems all streams are requested, so that all streams are demuxable. This is not very useful, and in particular inteferes with the idea of saving bandwidth by selecting a single stream. It should be possible for applications to select specific streams only. (This would prevent the server from sending packets for streams that are not wanted.) The corresponding mms header for this is "Pragma: stream-switch-entry". mmsh.c just adds every stream to this. mplayer handles this correctly. Example stream: mms://wm.microsoft.com/ms/evnet/Vista_Diagnostics_s_ch9.wmv -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 16:24:39 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 15:24:39 -0000 Subject: [FFmpeg-trac] #2000(build system:closed): does not succeed in building ffmpeg to msvs In-Reply-To: <033.79b35f3ae4fe84cf88436bdc433e7597@avcodec.org> References: <033.79b35f3ae4fe84cf88436bdc433e7597@avcodec.org> Message-ID: <048.3c16d69f64645da8fce776a98fd2db3b@avcodec.org> #2000: does not succeed in building ffmpeg to msvs -------------------------------------+------------------------------------- Reporter: rafi | Owner: Type: defect | Status: closed Priority: wish | Component: build Version: unspecified | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by reimar): The instructions are confusingly written, but that command interpreter is where you have to run configure, make etc. as described later in the text. The point of running msys.bat from VS is to have the compiler etc. in the PATH. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 16:30:38 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 15:30:38 -0000 Subject: [FFmpeg-trac] #1929(build system:closed): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.5771046b4efa008a42e86f67682dc46d@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by reimar): You're making this very confusing by reporting a new issue with each post. If you know exactly what you want to report, IMHO please open a new issue, this one is just too confusing. However it seems like FFmpeg as desired by you does not use pthreads anymore. But since you compiled libvpx against pthreads it has become unusable. Since you didn't provide a full config.log I can't say why it decides to use the broken libvpx and whether that should be considered a bug. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 16:38:24 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 15:38:24 -0000 Subject: [FFmpeg-trac] #2003(undetermined:new): jpeg: support restart interval in rows for progressive Message-ID: <038.6ce1c3cd51833d52c83c7a6022b1cefe@avcodec.org> #2003: jpeg: support restart interval in rows for progressive -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- attached image was created with: {{{ cjpeg -targa -restart 1 -progressive test.tga >test.jpg }}} and decodes incorrectly without "-progressive" switch output jpeg is decoded correctly by ffmpeg {{{ C:\>ffmpeg -i test.jpg out.bmp ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=3 x=48 [mjpeg @ 0x1eec980] error count: 268435461 [mjpeg @ 0x1eec980] error y=1 x=115 [mjpeg @ 0x1eec980] error count: 268435462 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435457 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=4 x=113 Input #0, image2, from 'test.jpg': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj420p, 1024x768 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.bmp': Metadata: encoder : Lavf54.41.100 Stream #0:0: Video: bmp, bgr24, 1024x768 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s , 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> bmp) Press [q] to stop, [?] for help [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=3 x=48 [mjpeg @ 0x1eec980] error count: 268435461 [mjpeg @ 0x1eec980] error y=1 x=115 [mjpeg @ 0x1eec980] error count: 268435462 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435457 [mjpeg @ 0x1eec980] error y=1 x=0 [mjpeg @ 0x1eec980] error count: 268435456 [mjpeg @ 0x1eec980] error y=4 x=113 frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:2304kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000 % }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 17:52:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 16:52:09 -0000 Subject: [FFmpeg-trac] #2004(undetermined:new): jpeg: support some more pix fmts Message-ID: <038.3362ccf7e680ba5bc877b575a0e98c9d@avcodec.org> #2004: jpeg: support some more pix fmts -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- created with {{{ cjpeg -sample 3x1/[...] test.tga >test_31.jpg }}} {{{ C:\>ffmpeg -i test_31.jpg ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mjpeg @ 0x1eec980] Unhandled pixel format 0x31111100 [image2 @ 0x1eebe20] decoding for stream 0 failed [image2 @ 0x1eebe20] Could not find codec parameters for stream 0 (Video: mjpeg, 1024x768 [SAR 1:1 DAR 4:3]): unspecified pixel format Consider increasing the value for the 'analyzeduration' and 'probesize' options test_31.jpg: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 18:17:03 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 17:17:03 -0000 Subject: [FFmpeg-trac] #2004(undetermined:new): jpeg: support some more pix fmts In-Reply-To: <038.3362ccf7e680ba5bc877b575a0e98c9d@avcodec.org> References: <038.3362ccf7e680ba5bc877b575a0e98c9d@avcodec.org> Message-ID: <053.da62952ea62bfda33729e2e416b12b9d@avcodec.org> #2004: jpeg: support some more pix fmts -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ami_stuff): test_41.jpg works with this (4:1:1 41:11:11): case 0x41111100: // case 0x14111100: s->avctx->pix_fmt = AV_PIX_FMT_YUV411P; s->avctx->color_range = s->cs_itu601 ? AVCOL_RANGE_MPEG : AVCOL_RANGE_JPEG; break; test_14.jpg (4:1:1 14:11:11) needs some tweaks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 18:50:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 17:50:18 -0000 Subject: [FFmpeg-trac] #2003(avcodec:open): jpeg: support restart interval in rows for progressive In-Reply-To: <038.6ce1c3cd51833d52c83c7a6022b1cefe@avcodec.org> References: <038.6ce1c3cd51833d52c83c7a6022b1cefe@avcodec.org> Message-ID: <053.7848d26bd927ad5f90754963831fd9de@avcodec.org> #2003: jpeg: support restart interval in rows for progressive ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => mjpeg * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 18:55:02 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 17:55:02 -0000 Subject: [FFmpeg-trac] #2004(avcodec:open): jpeg: support some more pix fmts In-Reply-To: <038.3362ccf7e680ba5bc877b575a0e98c9d@avcodec.org> References: <038.3362ccf7e680ba5bc877b575a0e98c9d@avcodec.org> Message-ID: <053.2ea2c5b0757897a2a65158894c7c0cd4@avcodec.org> #2004: jpeg: support some more pix fmts -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => avcodec * priority: normal => wish * version: unspecified => git-master * keywords: => mjpeg * type: defect => enhancement -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:20:17 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:20:17 -0000 Subject: [FFmpeg-trac] #1997(avformat:open): setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.9603cfc93194b035a0445705e8d28b80@avcodec.org> #1997: setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit ------------------------------------+------------------------------------ Reporter: kahphi | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Comment (by cehoyos): Yes, your patch fixes the problem on ia32. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:23:04 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:23:04 -0000 Subject: [FFmpeg-trac] #2002(avformat:new): mms streaming always requests all streams In-Reply-To: <035.3f4ef5bc7df568c110cfde0735d70464@avcodec.org> References: <035.3f4ef5bc7df568c110cfde0735d70464@avcodec.org> Message-ID: <050.e7285c569256f87c112bb65ded74c86a@avcodec.org> #2002: mms streaming always requests all streams ------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mms | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => mms Comment: Please add the (ffmpeg) command line together with complete, uncut console output to make this a valid ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:25:26 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:25:26 -0000 Subject: [FFmpeg-trac] #2001(avformat:closed): ffmpeg can't handle mms streaming using http:// prefix In-Reply-To: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> References: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> Message-ID: <050.208b419c5b2acb06c600c18e7e21ba7b@avcodec.org> #2001: ffmpeg can't handle mms streaming using http:// prefix -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: enhancement | Status: closed Priority: wish | Component: avformat Version: git-master | Resolution: duplicate Keywords: mms | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mms * priority: normal => wish * status: new => closed * resolution: => duplicate * type: defect => enhancement Comment: This seems related to ticket #998. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:25:38 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:25:38 -0000 Subject: [FFmpeg-trac] #998(undetermined:open): Must convert mms://... streams to mmsh://... for FFmpeg to work In-Reply-To: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> References: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> Message-ID: <051.9a351f17fd4b5c416b58f28fdf6914ac@avcodec.org> #998: Must convert mms://... streams to mmsh://... for FFmpeg to work -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: mms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): Ticket #2001 contains a related problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:47:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:47:18 -0000 Subject: [FFmpeg-trac] #2005(avcodec:new): Wrong palette colors with DVD subtitles encoding Message-ID: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding --------------------------------------+--------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Keywords: dvdsub Blocked By: | Blocking: Reproduced by developer: 1 | Analyzed by developer: 0 --------------------------------------+--------------------------------- Generate a reference file: {{{ ./ffmpeg -f lavfi -i testsrc=s=720x480:d=400 ref.mkv }}} Mux DVD subtitles in: {{{ ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -y test- remux.mkv }}} Here, colors are fine (yellow foreground): {{{ mpv --start=03:00 test-remux.mkv mplayer -ss 00:03 test-remux.mkv mplayer2 --ss=00:03 test-remux.mkv }}} Note: mpv? and vlc show this properly, mplayer and mplayer2 display them in black & white (which is fine), ffplay seems to have various troubles. Now encoding DVD subtitles in: {{{ ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -c:s dvdsub -y test-encode.mkv }}} Problem: the colors of the subtitles are negated (or shuffled dunno). They also appear differently with players displaying them in black and white. [1]: a mplayer2 fork https://github.com/mpv-player/mpv/, https://github.com/mpv-player/mpv/blob/master/DOCS/man/en/changes.rst -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:47:24 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:47:24 -0000 Subject: [FFmpeg-trac] #2001(avformat:reopened): ffmpeg can't handle mms streaming using http:// prefix In-Reply-To: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> References: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> Message-ID: <050.56a34b01eb65005e4b93bb38bb47fecc@avcodec.org> #2001: ffmpeg can't handle mms streaming using http:// prefix -------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: enhancement | Status: reopened Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mms | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by gjdfgh): * status: closed => reopened * resolution: duplicate => Comment: No, that's something completely different. Ticket #998 talks about adding the "mms://" prefix. That would be no problem, as "mms://" is not yet taken. This ticket talks about adding MMS support to "http://", which is more complicated, because "http://" is already taken by the http protocol. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 8 19:50:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 18:50:09 -0000 Subject: [FFmpeg-trac] #2005(avcodec:new): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.6fc9936df60500f90cd83b90f2e301a6@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Description changed by ubitux: Old description: > Generate a reference file: > > {{{ > ./ffmpeg -f lavfi -i testsrc=s=720x480:d=400 ref.mkv > }}} > > Mux DVD subtitles in: > > {{{ > ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -y test- > remux.mkv > }}} > > Here, colors are fine (yellow foreground): > > {{{ > mpv --start=03:00 test-remux.mkv > mplayer -ss 00:03 test-remux.mkv > mplayer2 --ss=00:03 test-remux.mkv > }}} > > Note: mpv? and vlc show this properly, mplayer and mplayer2 display them > in black & white (which is fine), ffplay seems to have various troubles. > > Now encoding DVD subtitles in: > > {{{ > ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -c:s dvdsub > -y test-encode.mkv > }}} > > Problem: the colors of the subtitles are negated (or shuffled dunno). > They also appear differently with players displaying them in black and > white. > > [1]: a mplayer2 fork https://github.com/mpv-player/mpv/, > https://github.com/mpv-player/mpv/blob/master/DOCS/man/en/changes.rst New description: Generate a reference file: {{{ ./ffmpeg -f lavfi -i testsrc=s=720x480:d=400 ref.mkv }}} Mux DVD subtitles in: {{{ ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -y test- remux.mkv }}} Here, colors are fine (yellow foreground): {{{ mpv --start=03:00 test-remux.mkv mplayer -ss 03:00 test-remux.mkv mplayer2 --ss=03:00 test-remux.mkv }}} Note: mpv? and vlc show this properly, mplayer and mplayer2 display them in black & white (which is fine), ffplay seems to have various troubles. Now encoding DVD subtitles in: {{{ ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -c:s dvdsub -y test-encode.mkv }}} Problem: the colors of the subtitles are negated (or shuffled dunno). They also appear differently with players displaying them in black and white. [1]: a mplayer2 fork https://github.com/mpv-player/mpv/, https://github.com/mpv-player/mpv/blob/master/DOCS/man/en/changes.rst -- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 00:36:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 08 Dec 2012 23:36:51 -0000 Subject: [FFmpeg-trac] #1929(build system:closed): ./configure --disable-w32threads doesn't check for presence of pthreads In-Reply-To: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> References: <039.fb730e87a5e7b0f3f1e51a59649308de@avcodec.org> Message-ID: <054.a37dd90c1421f2f51965983713b20bbf@avcodec.org> #1929: ./configure --disable-w32threads doesn't check for presence of pthreads -------------------------------------+------------------------------------- Reporter: rogerdpack | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: unspecified | system Keywords: win | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rogerdpack): Ok, before filing a new post, as a point of reference, if I'm compiling for windows, and I pass configure "--disable-w32threads" and have no pthreads, should configure fail? Or does ffmpeg have some other option (like "disabling" threads) that it just uses in that case? Thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 04:31:48 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 03:31:48 -0000 Subject: [FFmpeg-trac] #2006(undetermined:new): tiff: support lzw with inverted FillOrder Message-ID: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> #2006: tiff: support lzw with inverted FillOrder -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- I attache a patch, but I'm not sure if it's correct and don't want to deal with this issue anymore, so if it's not correct please apply your version of code, thanks samples: http://www.datafilehost.com/download-e6dce279.html {{{ C:\>ffmpeg -i lzw_lsb2msb.tif ffmpeg version N-47325-gb90e795 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 1 2012 02:23:25 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 10.100 / 52. 10.100 libavcodec 54. 78.100 / 54. 78.100 libavformat 54. 41.100 / 54. 41.100 libavdevice 54. 3.101 / 54. 3.101 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [tiff @ 0x1eec980] Decoded only 1 bytes of 3072 Input #0, image2, from 'lzw_lsb2msb.tif': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: tiff, rgb24, 1024x768, 25 tbr, 25 tbn, 25 tbc At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 08:06:10 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 07:06:10 -0000 Subject: [FFmpeg-trac] #1639(avfilter:open): concat filter frozen In-Reply-To: <037.591e80d99a66edd81a521009f1264a67@avcodec.org> References: <037.591e80d99a66edd81a521009f1264a67@avcodec.org> Message-ID: <052.a02f48068407ca1d0dafb17e24516087@avcodec.org> #1639: concat filter frozen ------------------------------------+------------------------------------ Reporter: chinshou | Owner: Type: defect | Status: open Priority: normal | Component: avfilter Version: git-master | Resolution: Keywords: movie | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Comment (by chinshou): Please close this ticket , it seems the bug has already been fixed , I just test it with the latest ffmpeg commandline without frozen problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 10:27:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 09:27:05 -0000 Subject: [FFmpeg-trac] #1218(undetermined:closed): zerocodec: decodes upside-down In-Reply-To: <038.ec1317c300f03e793c10f764d3aabac8@avcodec.org> References: <038.ec1317c300f03e793c10f764d3aabac8@avcodec.org> Message-ID: <053.2956dcc5287af08589a6852dd78370cf@avcodec.org> #1218: zerocodec: decodes upside-down -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: zeco | Resolution: fixed Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Should be fixed, thank you for reporting and testing! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 10:29:11 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 09:29:11 -0000 Subject: [FFmpeg-trac] #1639(avfilter:closed): concat filter frozen In-Reply-To: <037.591e80d99a66edd81a521009f1264a67@avcodec.org> References: <037.591e80d99a66edd81a521009f1264a67@avcodec.org> Message-ID: <052.610113639d1666176a3e07e9bd56a1a7@avcodec.org> #1639: concat filter frozen ------------------------------------+------------------------------------ Reporter: chinshou | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: git-master | Resolution: fixed Keywords: movie | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: For future tickets: Please always post a (failing) command line together with complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 10:31:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 09:31:55 -0000 Subject: [FFmpeg-trac] #2006(avcodec:closed): tiff: support lzw with inverted FillOrder In-Reply-To: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> References: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> Message-ID: <053.99e9cfe977d9ff89475d7dc038e39d74@avcodec.org> #2006: tiff: support lzw with inverted FillOrder ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: new => closed * reproduced: 0 => 1 * component: undetermined => avcodec * version: unspecified => git-master * keywords: => tif * resolution: => fixed Comment: Fixed by you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 10:32:41 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 09:32:41 -0000 Subject: [FFmpeg-trac] #2001(avformat:reopened): ffmpeg can't handle mms streaming using http:// prefix In-Reply-To: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> References: <035.eddbfe8c24ba2cfa791af950dbf03318@avcodec.org> Message-ID: <050.24d5e353090720e6b1576cd888846106@avcodec.org> #2001: ffmpeg can't handle mms streaming using http:// prefix -------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: enhancement | Status: reopened Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mms | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Please add complete, uncut console output to make this a valid ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 15:10:29 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 14:10:29 -0000 Subject: [FFmpeg-trac] #2005(avcodec:new): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.99660493a1b9befb1603c4950dbe0af8@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Is this mkv-related or reproducible with other containers as well? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 16:48:45 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 15:48:45 -0000 Subject: [FFmpeg-trac] #1828(avformat:closed): Start timestamp ignored when muxing dvd_subtitle In-Reply-To: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> References: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> Message-ID: <050.7fbb3d060ff4ac26efb63dafce21c94a@avcodec.org> #1828: Start timestamp ignored when muxing dvd_subtitle -------------------------------------+------------------------------------ Reporter: billie | Owner: ubitux Type: enhancement | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by billie): Replying to [comment:5 ubitux]: > Added in 710c4baf. > > You can try to mux with -i sub.idx. Thank you very much for your work. Does this also work when directly using vob files as input? I tested one and it did work so I guess it does. When using version 0.10.5 I get errors like this for the subtitle streams: Application provided invalid, non monotonically increasing dts to muxer in stream 2: 203320 >= 203320 av_interleaved_write_frame(): Invalid argument -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 17:23:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 16:23:09 -0000 Subject: [FFmpeg-trac] #1986(FFserver:open): ffserver crashes while playing h264 video from matroska container over rtsp In-Reply-To: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> References: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> Message-ID: <051.53fa82c2a71feb5c943ad01e929346b8@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -------------------------------------+------------------------------------- Reporter: sonntex | Owner: Type: defect | Status: open Priority: important | Component: FFserver Version: git-master | Resolution: Keywords: crash | Blocked By: SIGSEGV regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: crash => crash SIGSEGV regression * status: new => open * version: 1.0 => git-master * reproduced: 0 => 1 Comment: Regression since d77f4af / 82edf67. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 18:16:35 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 17:16:35 -0000 Subject: [FFmpeg-trac] #1802(undetermined:new): Segmentation fault with ffserver In-Reply-To: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> References: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> Message-ID: <049.0cba9d705e3832aed2c981028f48aa44@avcodec.org> #1802: Segmentation fault with ffserver -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I failed to reproduce this problem, but I unfortunately cannot test the identical options, for example my video4linux driver does not accept setting the frame rate. Is this reproducible with current git head? Is a feed and a stream required to reproduce the crash? If a feed is required, is video4linux input required to reproduce the crash, or does it also crash with file input? Is audio required to reproduce the crash or does it also crash with video- only? Is libx264 required to reproduce the crash, or is it also reproducible with an internal encoder? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 18:25:46 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 17:25:46 -0000 Subject: [FFmpeg-trac] #1425(FFmpeg:reopened): Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers In-Reply-To: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> References: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> Message-ID: <049.ffc2241e6c2710c6b4ac54bdd061dac0@avcodec.org> #1425: Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers -------------------------------------+------------------------------------ Reporter: knovz | Owner: Type: defect | Status: reopened Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: segment mov | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by saste): Replying to [comment:7 knovz]: [...] > > Please check the attached patch, and specify the option -reset_timestamps 1. > > Works perfect for me (I did the same original tests, with the current git head applying the patch). > Thank you. I updated the patch, now it's simpler and should avoid potential desynch problems, will push in a few days. Please confirm that this one is working as expected, thank you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 18:36:21 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 17:36:21 -0000 Subject: [FFmpeg-trac] #1886(avformat:closed): avformat_write_header crashes on writing Live Smooth Streaming video In-Reply-To: <035.36dd505abcbe3fd42b599c842ba587da@avcodec.org> References: <035.36dd505abcbe3fd42b599c842ba587da@avcodec.org> Message-ID: <050.35e27f5d73cfb0bbb5d36852d900b8d9@avcodec.org> #1886: avformat_write_header crashes on writing Live Smooth Streaming video -------------------------------------+------------------------------------- Reporter: Morion | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen if you can add the missing information. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 18:38:12 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 17:38:12 -0000 Subject: [FFmpeg-trac] #1326(undetermined:closed): non-existing SPS XX referenced in buffering period - error while encoding UDP stream In-Reply-To: <041.297a7786fca8785532906a10c42ae133@avcodec.org> References: <041.297a7786fca8785532906a10c42ae133@avcodec.org> Message-ID: <056.ab4ff6b0f53bdf3253a3d231b8264919@avcodec.org> #1326: non-existing SPS XX referenced in buffering period - error while encoding UDP stream -------------------------------------+------------------------------------- Reporter: | Owner: streamingguy | Status: closed Type: defect | Component: Priority: important | undetermined Version: git-master | Resolution: Keywords: udp | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen if you can add the missing information. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 18:50:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 17:50:23 -0000 Subject: [FFmpeg-trac] #1496(FFserver:open): Stream passthru : VideoCodec copy In-Reply-To: <033.3f7f59b88730ed8678bf6ce4c7620bf4@avcodec.org> References: <033.3f7f59b88730ed8678bf6ce4c7620bf4@avcodec.org> Message-ID: <048.ad2a1b1208e0ce5cee11bd8283c7fa59@avcodec.org> #1496: Stream passthru : VideoCodec copy -------------------------------------+------------------------------------ Reporter: Lupu | Owner: Type: enhancement | Status: open Priority: wish | Component: FFserver Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: transcoding vcodec acodec copy => * priority: normal => wish * version: unspecified => git-master * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 19:02:33 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 18:02:33 -0000 Subject: [FFmpeg-trac] #2005(avcodec:new): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.c03093fd0ed6b8120474f6ec1bc52d42@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Old description: > Generate a reference file: > > {{{ > ./ffmpeg -f lavfi -i testsrc=s=720x480:d=400 ref.mkv > }}} > > Mux DVD subtitles in: > > {{{ > ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -y test- > remux.mkv > }}} > > Here, colors are fine (yellow foreground): > > {{{ > mpv --start=03:00 test-remux.mkv > mplayer -ss 03:00 test-remux.mkv > mplayer2 --ss=03:00 test-remux.mkv > }}} > > Note: mpv? and vlc show this properly, mplayer and mplayer2 display them > in black & white (which is fine), ffplay seems to have various troubles. > > Now encoding DVD subtitles in: > > {{{ > ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -c:s dvdsub > -y test-encode.mkv > }}} > > Problem: the colors of the subtitles are negated (or shuffled dunno). > They also appear differently with players displaying them in black and > white. > > [1]: a mplayer2 fork https://github.com/mpv-player/mpv/, > https://github.com/mpv-player/mpv/blob/master/DOCS/man/en/changes.rst New description: Generate a reference file: {{{ % ./ffmpeg -f lavfi -i testsrc=s=720x480:d=400 ref.mkv }}} Mux DVD subtitles in: {{{ % ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -y test- remux.mkv }}} Here, colors are fine (yellow foreground): {{{ mpv --start=03:00 test-remux.mkv mplayer -ss 03:00 test-remux.mkv mplayer2 --ss=03:00 test-remux.mkv }}} Note: mpv? and vlc show this properly, mplayer and mplayer2 display them in black & white (which is fine), ffplay seems to have various troubles. Now encoding DVD subtitles in: {{{ % ./ffmpeg -i ref.mkv -i ~/fate-samples/sub/vobsub.idx -c copy -c:s dvdsub -y test-encode.mkv ffmpeg version N-47665-g18eb319 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 9 2012 18:50:45 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 48.100 / 54. 48.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, matroska,webm, from 'ref.mkv': Metadata: ENCODER : Lavf54.48.100 Duration: 00:06:40.08, start: 0.000000, bitrate: 49 kb/s Stream #0:0: Video: h264 (High 4:4:4 Predictive), yuv444p, 720x480 [SAR 1:1 DAR 3:2], 25 fps, 25 tbr, 1k tbn, 50 tbc (default) [vobsub @ 0x18e79a0] Estimating duration from bitrate, this may be inaccurate Input #1, vobsub, from '/home/ubitux/fate-samples/sub/vobsub.idx': Duration: N/A, bitrate: N/A Stream #1:0[0x0](en): Subtitle: dvd_subtitle (default) Output #0, matroska, to 'test-encode.mkv': Metadata: encoder : Lavf54.48.100 Stream #0:0: Video: h264, yuv444p, 720x480 [SAR 1:1 DAR 3:2], q=2-31, 25 fps, 1k tbn, 1k tbc (default) Stream #0:1(en): Subtitle: dvd_subtitle (default) Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #1:0 -> #0:1 (dvdsub -> dvdsub) Press [q] to stop, [?] for help frame=10000 fps=884 q=-1.0 Lsize= 2507kB time=00:06:39.96 bitrate= 51.3kbits/s video:2369kB audio:0kB subtitle:72 global headers:0kB muxing overhead 2.711231% }}} Problem: the colors of the subtitles are negated (or shuffled dunno). They also appear differently with players displaying them in black and white. [1]: a mplayer2 fork https://github.com/mpv-player/mpv/, https://github.com/mpv-player/mpv/blob/master/DOCS/man/en/changes.rst -- Comment (by ubitux): When encoding and muxing to nut (which seems to be the only other format where muxing dvd subtitles is possible), the subtitles don't appear at all? (but they do on remux). So it's hard to tell. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 19:42:34 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 18:42:34 -0000 Subject: [FFmpeg-trac] #2007(avformat:new): buffer underflow flood while remuxing mpeg stream Message-ID: <035.eb50b62f598d67a9fb9bcb4676695383@avcodec.org> #2007: buffer underflow flood while remuxing mpeg stream --------------------------------------+---------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: minor | Component: avformat Version: git-master | Keywords: mpeg Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+---------------------------------- {{{ % ./ffmpeg -f lavfi -i testsrc=d=300 -y test.mpg ffmpeg version N-47665-g18eb319 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 9 2012 18:50:45 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 48.100 / 54. 48.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [lavfi @ 0x2aa0260] Estimating duration from bitrate, this may be inaccurate Input #0, lavfi, from 'testsrc=d=300': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc [mpeg @ 0x2aa1a80] VBV buffer size not set, muxing may fail Output #0, mpeg, to 'test.mpg': Metadata: encoder : Lavf54.48.100 Stream #0:0: Video: mpeg1video, yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg1video) Press [q] to stop, [?] for help frame= 7500 fps=987 q=8.6 Lsize= 7690kB time=00:04:59.96 bitrate= 210.0kbits/s video:7622kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.886493% }}} {{{ % ./ffmpeg -i test.mpg -c copy -y remux.mpg ffmpeg version N-47665-g18eb319 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 9 2012 18:50:45 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 48.100 / 54. 48.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg @ 0x3044240] max_analyze_duration 5000000 reached at 5000000 Input #0, mpeg, from 'test.mpg': Duration: 00:00:59.76, start: 1.000000, bitrate: 244 kb/s Stream #0:0[0x1e0]: Video: mpeg1video, yuv420p, 320x240 [SAR 1:1 DAR 4:3], 104857 kb/s, 25 fps, 25 tbr, 90k tbn, 25 tbc Output #0, mpeg, to 'remux.mpg': Metadata: encoder : Lavf54.48.100 Stream #0:0: Video: mpeg1video, yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 104857 kb/s, 25 fps, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (copy) Press [q] to stop, [?] for help [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10490 size=10833 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10490 size=10833 [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10640 size=10662 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10640 size=10662 [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10356 size=10841 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10356 size=10841 [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10882 size=11225 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10882 size=11225 [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10872 size=11165 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10872 size=11165 [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10408 size=11000 [mpeg @ 0x304b0a0] packet too large, ignoring buffer limits to mux it [mpeg @ 0x304b0a0] buffer underflow i=0 bufi=10408 size=11000 frame= 1500 fps=0.0 q=-1.0 Lsize= 1784kB time=00:00:59.96 bitrate= 243.7kbits/s video:1768kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.877842% }}} The file is playable so I believe the problem is minor. Still this flood should not happen, especially when the input is created with ffmpeg. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 22:30:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 21:30:42 -0000 Subject: [FFmpeg-trac] #2006(avcodec:reopened): tiff: support lzw with inverted FillOrder In-Reply-To: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> References: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> Message-ID: <053.e333fea5d1374283f68abdbb1ba9ee7d@avcodec.org> #2006: tiff: support lzw with inverted FillOrder ------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: defect | Status: reopened Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: closed => reopened * resolution: fixed => Comment: Sorry, I am not sure what I tested but this is a reproducible ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 22:39:54 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 21:39:54 -0000 Subject: [FFmpeg-trac] #228(FFserver:new): FFserver: reordering of ""s in config file makes difference In-Reply-To: <034.483826ed2380430390d2402e1c248439@avcodec.org> References: <034.483826ed2380430390d2402e1c248439@avcodec.org> Message-ID: <049.a513ef2f22b523f53e4bba9aa30e0f20@avcodec.org> #228: FFserver: reordering of ""s in config file makes difference -----------------------------------+------------------------------------ Reporter: burek | Owner: baptiste Type: defect | Status: new Priority: important | Component: FFserver Version: git | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+------------------------------------ Changes (by cehoyos): * keywords: ordering items config file => Comment: Is this reproducible with current git head? If yes, please add the necessary command lines together with complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 22:41:45 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 21:41:45 -0000 Subject: [FFmpeg-trac] #2006(avcodec:open): tiff: support lzw with inverted FillOrder In-Reply-To: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> References: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> Message-ID: <053.a37960a6fa489ba4941f60304b45bc07@avcodec.org> #2006: tiff: support lzw with inverted FillOrder ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: reopened => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 9 23:41:40 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 22:41:40 -0000 Subject: [FFmpeg-trac] #1966(avcodec:closed): first field missing playing dvd with commit 8824a9ed In-Reply-To: <034.fbd7327a47af4a7b2a4a5b151c77e873@avcodec.org> References: <034.fbd7327a47af4a7b2a4a5b151c77e873@avcodec.org> Message-ID: <049.3aaaeadd5be099d68c4c8c7e7eeb56ed@avcodec.org> #1966: first field missing playing dvd with commit 8824a9ed -------------------------------------+------------------------------------- Reporter: dylex | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: regression | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => fixed Comment: Both mplayer -demuxer mpeg -vc ffmpeg12 and mplayer -demuxer mpeg -vc ffmpeg12vdpau work fine with current git head, fixed by Michael. Please reopen the ticket if other applications still fail. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 00:22:17 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 09 Dec 2012 23:22:17 -0000 Subject: [FFmpeg-trac] #1986(FFserver:closed): ffserver crashes while playing h264 video from matroska container over rtsp In-Reply-To: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> References: <036.3bc9977f48823aa06b3612fe5ad5523d@avcodec.org> Message-ID: <051.61dc7814b97eb654bb50f88a4d6bd2be@avcodec.org> #1986: ffserver crashes while playing h264 video from matroska container over rtsp -------------------------------------+------------------------------------- Reporter: sonntex | Owner: Type: defect | Status: closed Priority: important | Component: FFserver Version: git-master | Resolution: fixed Keywords: crash | Blocked By: SIGSEGV regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Michael. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 09:47:35 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 08:47:35 -0000 Subject: [FFmpeg-trac] #1997(avformat:open): setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.124a75550ed5057325fe53d68df62f7d@avcodec.org> #1997: setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit ------------------------------------+------------------------------------ Reporter: kahphi | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Comment (by kahphi): The patch fixes it for me as well. Thank you very much, gentlemen! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 11:10:36 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 10:10:36 -0000 Subject: [FFmpeg-trac] #2008(undetermined:new): ffplay doesn't play encrypted HLS over https Message-ID: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------- Reporter: zgzong | Type: Status: new | enhancement Component: | Priority: normal undetermined | Version: git- Keywords: ffplay, | master hls, https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: How to reproduce: {{{ % ffplay https://hls.akamaihd.net/path/master.m3u8?hash_ssl_value ffplay version N-44391-gf9dd2e5 built on Sep 12 2012 12:42:23 with llvm-gcc 4.2.1 (LLVM build 2336.9.00) configuration: --prefix=/usr/local --shlibdir=/usr/local/lib64 --libdir=/usr/local/lib64 --mandir=/usr/local/man --incdir=/usr/local/include --enable-gpl --enable-ffplay --enable-libxvid --enable-libmp3lame --enable-libvorbis --enable-shared }}} Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 11:18:36 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 10:18:36 -0000 Subject: [FFmpeg-trac] #2008(undetermined:new): ffplay doesn't play encrypted HLS over https In-Reply-To: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> References: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> Message-ID: <050.d74ad59dc309b9c7f73c1657f298e6bc@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------- Reporter: zgzong | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: ffplay, | Resolution: hls, https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by zgzong): I cannot put a link for your guys to test, because any links will be expired after a hour. When I try it, ffplay complains that protocols not found. However when checks ffplay supported protocols, (type ffplay -protocols on terminate) Supported file protocols: Input: applehttp cache concat crypto ffrtmphttp file gopher hls http httpproxy mmsh mmst pipe rtmp rtmpt rtp tcp udp It doesn't support https protocol. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 11:48:07 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 10:48:07 -0000 Subject: [FFmpeg-trac] #2008(avformat:new): ffplay doesn't play encrypted HLS over https In-Reply-To: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> References: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> Message-ID: <050.256f96df9d2a1a26a54d90757bc39b82@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------ Reporter: zgzong | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: ffplay, hls, https => https * priority: normal => wish * component: undetermined => avformat Comment: The output you posted looks incomplete, please always post the complete, uncut console output. If ffmpeg shows the same problems, please post ffmpeg output (only post ffplay output for problems that are not reproducible with ffmpeg). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 14:04:29 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 13:04:29 -0000 Subject: [FFmpeg-trac] #1425(FFmpeg:reopened): Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers In-Reply-To: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> References: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> Message-ID: <049.0a08c24138336fe53a43c6a12f9d04d1@avcodec.org> #1425: Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers -------------------------------------+------------------------------------ Reporter: knovz | Owner: Type: defect | Status: reopened Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: segment mov | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by hackeron): I'm having the same issue and it is very annoying, I will try the attached patch, thank you! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 20:09:47 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 19:09:47 -0000 Subject: [FFmpeg-trac] #2009(build system:new): Bogus library dependencies (e.g. on SDL) Message-ID: <038.152d0de01ca29dcbad6954a428d09565@avcodec.org> #2009: Bogus library dependencies (e.g. on SDL) -------------------------------------+------------------------------------- Reporter: divVerent | Type: defect Status: new | Priority: normal Component: build | Version: system | unspecified Keywords: pkg-config | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: pkg-config files contain unneeded dependencies (e.g. libavcodec.pc contains -lSDL) How to reproduce: {{{ % grep SDL /usr/lib/pkgconfig/libav* /usr/lib/pkgconfig/libavcodec.pc:Libs: -L${libdir} -lavcodec -ldl -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lmp3lame -lfdk-aac -lfaac -lass -lm -pthread -lbz2 -lz -lrt /usr/lib/pkgconfig/libavdevice.pc:Libs: -L${libdir} -lavdevice -ldl -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lmp3lame -lfdk-aac -lfaac -lass -lm -pthread -lbz2 -lz -lrt /usr/lib/pkgconfig/libavfilter.pc:Libs: -L${libdir} -lavfilter -ldl -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lmp3lame -lfdk-aac -lfaac -lass -lm -pthread -lbz2 -lz -lrt /usr/lib/pkgconfig/libavformat.pc:Libs: -L${libdir} -lavformat -ldl -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lmp3lame -lfdk-aac -lfaac -lass -lm -pthread -lbz2 -lz -lrt % nm -A /usr/lib/libavcodec.a | grep SDL % }}} Issue is that $extralibs is generally used in the configure script for multiple modules, despite them needing different things. It causes issues for programs linking to both libavcodec/libavformat and SDL2. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 21:00:29 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 20:00:29 -0000 Subject: [FFmpeg-trac] #2010(undetermined:new): ffplay can't seek in file that vlc and mplayer -demuxer mov can seek Message-ID: <035.d47fb413ba36d0044314b518c92c5786@avcodec.org> #2010: ffplay can't seek in file that vlc and mplayer -demuxer mov can seek -------------------------------------+------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: | Version: git- undetermined | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- You can't seek in this file with ffplay: https://educast.fccn.pt/vod/clips/1aw3ugmjz0/quicktime.mov The file plays fine, but attempts to seek print "error while seeking" and cause audio and video to freeze. Observed with ffmpeg git 20899c54f03c4. mplayer -demuxer mov can seek in this file. (It fails to seek to key frames correctly, but recovers as more video is decoded.) VLC can seek in it as well. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 10 23:07:21 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 22:07:21 -0000 Subject: [FFmpeg-trac] #2010(undetermined:new): ffplay can't seek in file that vlc and mplayer -demuxer mov can seek In-Reply-To: <035.d47fb413ba36d0044314b518c92c5786@avcodec.org> References: <035.d47fb413ba36d0044314b518c92c5786@avcodec.org> Message-ID: <050.2aeb052cd602129bcffc89db0f9709f2@avcodec.org> #2010: ffplay can't seek in file that vlc and mplayer -demuxer mov can seek -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: seek | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => seek Comment: Please add a failing command line together with complete, uncut console output to make this a valid ticket. If the problem is reproducible with ffmpeg, please use a ffmpeg command line, if the problem is only reproducible with ffplay but not ffmpeg, please add ffplay command line and mention that it works fine with ffmpeg. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 00:24:34 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 23:24:34 -0000 Subject: [FFmpeg-trac] #1425(avformat:closed): Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers In-Reply-To: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> References: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> Message-ID: <049.1464fcba7cf4bc12e6bdf7c5aff87c4f@avcodec.org> #1425: Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers -------------------------------------+------------------------------------ Reporter: knovz | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: segment mov | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Changes (by saste): * status: reopened => closed * resolution: => fixed * component: FFmpeg => avformat Comment: Should be fixed in: {{{ commit 8e9056559e11cd708c68bf8a50ab1c13395ae9b0 Author: Stefano Sabatini Date: Thu Nov 29 13:45:50 2012 +0100 lavf/segment: add reset_timestamps option The new options reset the timestamps at each new segment, so that the generated segments will have timestamps starting close to 0. It is meant to address trac ticket #1425. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 00:41:55 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 10 Dec 2012 23:41:55 -0000 Subject: [FFmpeg-trac] #744(avcodec:open): tweak i263 pb-frames support to eliminate graphic corruption In-Reply-To: <038.19f63f19b2bf659e142abf5a74291ce2@avcodec.org> References: <038.19f63f19b2bf659e142abf5a74291ce2@avcodec.org> Message-ID: <053.863c1d03226f3ceafcd330069f6412ac@avcodec.org> #744: tweak i263 pb-frames support to eliminate graphic corruption ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: h263i | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): The artefacts were fixed by Michael, ffmpeg is still too verbose for the sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 01:56:30 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 00:56:30 -0000 Subject: [FFmpeg-trac] #2009(build system:open): Bogus library dependencies (e.g. on SDL) In-Reply-To: <038.152d0de01ca29dcbad6954a428d09565@avcodec.org> References: <038.152d0de01ca29dcbad6954a428d09565@avcodec.org> Message-ID: <053.a9544551c6e5b8afd29ca14769f230f2@avcodec.org> #2009: Bogus library dependencies (e.g. on SDL) -------------------------------------+------------------------------------- Reporter: divVerent | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: pkg-config | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 02:10:19 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 01:10:19 -0000 Subject: [FFmpeg-trac] #2011(undetermined:new): i263: artefacts with deblocking filter Message-ID: <038.030d0c92d13bcae516bb1fbb26a4d8cd@avcodec.org> #2011: i263: artefacts with deblocking filter -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- I have tested i263 codec a bit more and found another issue. Attached file was encoded with "deblocking filter" option enabled, (this is a normal video, not with pb-frames) and ffmpeg decodes it with visible artefacts. http://www.datafilehost.com/download-09b7dbe4.html {{{ C:\>ffmpeg -i normal_deblocking_filter.avi out.avi ffmpeg version N-47675-g20899c5 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 10 2012 02:38:00 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.100 / 54. 49.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'normal_deblocking_filter.avi': Metadata: encoder : VirtualDubMod 1.5.10.2 (build 2542/release) Duration: 00:00:15.12, start: 0.000000, bitrate: 1175 kb/s Stream #0:0: Video: h263i (I263 / 0x33363249), yuv420p, 320x240, 25 tbr, 25 tbn, 25 tbc Output #0, avi, to 'out.avi': Metadata: ISFT : Lavf54.49.100 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240, q=2-31, 200 kb/s, 25 tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (h263i -> mpeg4) Press [q] to stop, [?] for help frame= 137 fps=0.0 q=5.8 size= 262kB time=00:00:05.48 bitrate= 391.9kbits/s frame= 247 fps=0.0 q=12.1 size= 473kB time=00:00:09.88 bitrate= 392.1kbits/ frame= 378 fps=255 q=5.8 Lsize= 635kB time=00:00:15.12 bitrate= 344.1kbits/ s video:620kB audio:0kB subtitle:0 global headers:0kB muxing overhead 2.352102% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 02:32:07 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 01:32:07 -0000 Subject: [FFmpeg-trac] #2011(avcodec:open): i263: artefacts with deblocking filter In-Reply-To: <038.030d0c92d13bcae516bb1fbb26a4d8cd@avcodec.org> References: <038.030d0c92d13bcae516bb1fbb26a4d8cd@avcodec.org> Message-ID: <053.faa5c0ee3696748d61eda0bdb073aff9@avcodec.org> #2011: i263: artefacts with deblocking filter ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: h263i | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => h263i * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 Comment: Artefacts are visible after ~10 seconds. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 03:48:20 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 02:48:20 -0000 Subject: [FFmpeg-trac] #2012(FFmpeg:new): -filter without specifier fails without explicit error Message-ID: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> #2012: -filter without specifier fails without explicit error --------------------------------------+-------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: git-master | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+-------------------------------- Given a random input file with both audio and video: {{{ ? ./ffmpeg -f lavfi -i 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]' -t 5 -y test.avi ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [lavfi @ 0x2a3b260] Estimating duration from bitrate, this may be inaccurate Input #0, lavfi, from 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]': Duration: N/A, start: 0.000000, bitrate: 2822 kb/s Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s Output #0, avi, to 'test.avi': Metadata: ISFT : Lavf54.49.101 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s32p Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg4) Stream #0:1 -> #0:1 (pcm_f64le -> libmp3lame) Press [q] to stop, [?] for help frame= 125 fps=0.0 q=2.0 Lsize= 256kB time=00:00:05.01 bitrate= 418.1kbits/s video:199kB audio:39kB subtitle:0 global headers:0kB muxing overhead 7.317413% }}} ...and trying the following commands fail: {{{ ? ./ffmpeg -i test.avi -filter edgedetect -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [buffer @ 0x178f040] Unable to parse option value "0x0" as image size Error opening filters! }}} {{{ ? ./ffmpeg -i test.avi -filter volume -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [abuffer @ 0x1e057e0] Value inf for parameter 'time_base' out of range [0 - 2.14748e+09] Error opening filters! }}} It works fine when using {{{-filter:v}}} or {{{-vf}}}, and {{{-filter:a}}} or {{{-af}}} though. We should either fail with a more explicit error when the type specifier is not set, or have better heuristics to guess what the user wants. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 03:50:41 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 02:50:41 -0000 Subject: [FFmpeg-trac] #2012(FFmpeg:new): -filter without specifier fails without explicit error In-Reply-To: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> References: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> Message-ID: <050.eb0f518618d2e3441b5a3c1bfb389cd2@avcodec.org> #2012: -filter without specifier fails without explicit error ------------------------------------+---------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Description changed by ubitux: Old description: > Given a random input file with both audio and video: > > {{{ > ? ./ffmpeg -f lavfi -i 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]' -t > 5 -y test.avi > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > [lavfi @ 0x2a3b260] Estimating duration from bitrate, this may be > inaccurate > Input #0, lavfi, from 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]': > Duration: N/A, start: 0.000000, bitrate: 2822 kb/s > Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 > [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s > Output #0, avi, to 'test.avi': > Metadata: > ISFT : Lavf54.49.101 > Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR > 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s32p > Stream mapping: > Stream #0:0 -> #0:0 (rawvideo -> mpeg4) > Stream #0:1 -> #0:1 (pcm_f64le -> libmp3lame) > Press [q] to stop, [?] for help > frame= 125 fps=0.0 q=2.0 Lsize= 256kB time=00:00:05.01 bitrate= > 418.1kbits/s > video:199kB audio:39kB subtitle:0 global headers:0kB muxing overhead > 7.317413% > }}} > > ...and trying the following commands fail: > > {{{ > ? ./ffmpeg -i test.avi -filter edgedetect -f null - > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > Input #0, avi, from 'test.avi': > Metadata: > encoder : Lavf54.49.101 > Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s > Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), > yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, > 64 kb/s > [buffer @ 0x178f040] Unable to parse option value "0x0" as image size > Error opening filters! > }}} > > {{{ > ? ./ffmpeg -i test.avi -filter volume -f null - > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > Input #0, avi, from 'test.avi': > Metadata: > encoder : Lavf54.49.101 > Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s > Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), > yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, > 64 kb/s > [abuffer @ 0x1e057e0] Value inf for parameter 'time_base' out of range [0 > - 2.14748e+09] > Error opening filters! > }}} > > It works fine when using {{{-filter:v}}} or {{{-vf}}}, and > {{{-filter:a}}} or {{{-af}}} though. > > We should either fail with a more explicit error when the type specifier > is not set, or have better heuristics to guess what the user wants. New description: Given a random input file with both audio and video: {{{ ? ./ffmpeg -f lavfi -i 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]' -t 5 -y test.avi ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [lavfi @ 0x2a3b260] Estimating duration from bitrate, this may be inaccurate Input #0, lavfi, from 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]': Duration: N/A, start: 0.000000, bitrate: 2822 kb/s Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s Output #0, avi, to 'test.avi': Metadata: ISFT : Lavf54.49.101 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s32p Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg4) Stream #0:1 -> #0:1 (pcm_f64le -> libmp3lame) Press [q] to stop, [?] for help frame= 125 fps=0.0 q=2.0 Lsize= 256kB time=00:00:05.01 bitrate= 418.1kbits/s video:199kB audio:39kB subtitle:0 global headers:0kB muxing overhead 7.317413% }}} ...and trying the following commands fail: {{{ ? ./ffmpeg -i test.avi -filter edgedetect -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [buffer @ 0x178f040] Unable to parse option value "0x0" as image size Error opening filters! }}} {{{ ? ./ffmpeg -i test.avi -filter volume -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [abuffer @ 0x1e057e0] Value inf for parameter 'time_base' out of range [0 - 2.14748e+09] Error opening filters! }}} It works fine when using {{{-filter:v}}} or {{{-vf}}}, and {{{-filter:a}}} or {{{-af}}} though. Also note it's note the problem doesn't arise if the input is audio-only or video-only. We should either fail with a more explicit error when the type specifier is not set, or have better heuristics to guess what the user wants. -- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 11 03:51:07 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 11 Dec 2012 02:51:07 -0000 Subject: [FFmpeg-trac] #2012(FFmpeg:new): -filter without specifier fails without explicit error In-Reply-To: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> References: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> Message-ID: <050.205e3ef22d89801ef697a6fa078aec5a@avcodec.org> #2012: -filter without specifier fails without explicit error ------------------------------------+---------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Description changed by ubitux: Old description: > Given a random input file with both audio and video: > > {{{ > ? ./ffmpeg -f lavfi -i 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]' -t > 5 -y test.avi > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > [lavfi @ 0x2a3b260] Estimating duration from bitrate, this may be > inaccurate > Input #0, lavfi, from 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]': > Duration: N/A, start: 0.000000, bitrate: 2822 kb/s > Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 > [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s > Output #0, avi, to 'test.avi': > Metadata: > ISFT : Lavf54.49.101 > Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR > 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s32p > Stream mapping: > Stream #0:0 -> #0:0 (rawvideo -> mpeg4) > Stream #0:1 -> #0:1 (pcm_f64le -> libmp3lame) > Press [q] to stop, [?] for help > frame= 125 fps=0.0 q=2.0 Lsize= 256kB time=00:00:05.01 bitrate= > 418.1kbits/s > video:199kB audio:39kB subtitle:0 global headers:0kB muxing overhead > 7.317413% > }}} > > ...and trying the following commands fail: > > {{{ > ? ./ffmpeg -i test.avi -filter edgedetect -f null - > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > Input #0, avi, from 'test.avi': > Metadata: > encoder : Lavf54.49.101 > Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s > Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), > yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, > 64 kb/s > [buffer @ 0x178f040] Unable to parse option value "0x0" as image size > Error opening filters! > }}} > > {{{ > ? ./ffmpeg -i test.avi -filter volume -f null - > ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg > developers > built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) > configuration: --enable-gpl --enable-fontconfig --enable-libfreetype > --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 > --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg > --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc > --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- > runtime-cpudetect --enable-libcelt > libavutil 52. 12.100 / 52. 12.100 > libavcodec 54. 79.101 / 54. 79.101 > libavformat 54. 49.101 / 54. 49.101 > libavdevice 54. 3.102 / 54. 3.102 > libavfilter 3. 26.101 / 3. 26.101 > libswscale 2. 1.103 / 2. 1.103 > libswresample 0. 17.102 / 0. 17.102 > libpostproc 52. 2.100 / 52. 2.100 > Input #0, avi, from 'test.avi': > Metadata: > encoder : Lavf54.49.101 > Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s > Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), > yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc > Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, > 64 kb/s > [abuffer @ 0x1e057e0] Value inf for parameter 'time_base' out of range [0 > - 2.14748e+09] > Error opening filters! > }}} > > It works fine when using {{{-filter:v}}} or {{{-vf}}}, and > {{{-filter:a}}} or {{{-af}}} though. Also note it's note the problem > doesn't arise if the input is audio-only or video-only. > > We should either fail with a more explicit error when the type specifier > is not set, or have better heuristics to guess what the user wants. New description: Given a random input file with both audio and video: {{{ ? ./ffmpeg -f lavfi -i 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]' -t 5 -y test.avi ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [lavfi @ 0x2a3b260] Estimating duration from bitrate, this may be inaccurate Input #0, lavfi, from 'testsrc[out0]; aevalsrc=sin(2*PI*t*440)[out1]': Duration: N/A, start: 0.000000, bitrate: 2822 kb/s Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s Output #0, avi, to 'test.avi': Metadata: ISFT : Lavf54.49.101 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s32p Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg4) Stream #0:1 -> #0:1 (pcm_f64le -> libmp3lame) Press [q] to stop, [?] for help frame= 125 fps=0.0 q=2.0 Lsize= 256kB time=00:00:05.01 bitrate= 418.1kbits/s video:199kB audio:39kB subtitle:0 global headers:0kB muxing overhead 7.317413% }}} ...and trying the following commands fail: {{{ ? ./ffmpeg -i test.avi -filter edgedetect -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [buffer @ 0x178f040] Unable to parse option value "0x0" as image size Error opening filters! }}} {{{ ? ./ffmpeg -i test.avi -filter volume -f null - ffmpeg version N-47714-g7eafd27 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 03:04:42 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.101 / 54. 79.101 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.101 / 3. 26.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, avi, from 'test.avi': Metadata: encoder : Lavf54.49.101 Duration: 00:00:05.04, start: 0.000000, bitrate: 415 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p, 64 kb/s [abuffer @ 0x1e057e0] Value inf for parameter 'time_base' out of range [0 - 2.14748e+09] Error opening filters! }}} It works fine when using {{{-filter:v}}} or {{{-vf}}}, and {{{-filter:a}}} or {{{-af}}} though. Also note the problem doesn't arise if the input is audio-only or video-only. We should either fail with a more explicit error when the type specifier is not set, or have better heuristics to guess what the user wants. -- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 03:44:59 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 02:44:59 -0000 Subject: [FFmpeg-trac] #2013(undetermined:new): Winter Logo Design Message-ID: <038.6b9608ff6fe41a833a13e91b464a5f78@avcodec.org> #2013: Winter Logo Design -------------------------------------+------------------------------------- Reporter: Ornthorpe | Type: art Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- 3d FFMPDG on snow field with frosty trees in the background. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 03:49:48 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 02:49:48 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.a1ef9ed5ad661f8ea983cd4a87eefebc@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by ami_stuff): the correct duration shoud be calculated like this: int64_t filesize = avio_size(s->pb); st->duration = (filesize /* - audiotrack_size */ ) / video_size / calculated_fps; -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 04:35:15 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 03:35:15 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop Message-ID: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: If crop comes before scale in the video filters list it fails (when the crop width/height is > scale width/height) How to reproduce: '''DOES NOT WORK:''' {{{ ffmpeg -async 1 -threads 0 -y -i "D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.ts" -ss 3 -vf yadif=0:-1,hqdn3d,scale=720:trunc(720/dar/2)*2,crop=1920:1072:0:4 -vcodec libx264 -b 1800000 -subq 6 -x264opts direct=auto:level=4.1:partitions=p8x8,b8x8,i4x4:no- weightb=0:psnr=0:ssim=0:subme=7:ref=3:b-pyramid=none:no-mixed- refs=0:trellis=1:threads=auto -acodec libvo_aacenc -ab 192k -ac 2 "D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.mp4" --> ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers --> built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) --> configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable-bzlib --enable- frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable- libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinger --enable-libspeex --enable-libtheora --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable- libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib --> libavutil 52. 6.100 / 52. 6.100 --> libavcodec 54. 71.100 / 54. 71.100 --> libavformat 54. 36.100 / 54. 36.100 --> libavdevice 54. 3.100 / 54. 3.100 --> libavfilter 3. 23.100 / 3. 23.100 --> libswscale 2. 1.102 / 2. 1.102 --> libswresample 0. 16.100 / 0. 16.100 --> libpostproc 52. 1.100 / 52. 1.100 --> [mpegts @ 02e6dca0] max_analyze_duration 5000000 reached at 5024000 --> Input #0, mpegts, from 'D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.ts': --> Duration: 00:00:31.37, start: 1.400000, bitrate: 11422 kb/s --> Video duration=31.37 --> Program 1 --> Metadata: --> service_name : WMORDT (WMOR-DT) --> service_provider: WMORDT --> Stream #0:0[0x100]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, s16, 384 kb/s --> Stream #0:1[0x101]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 59.94 tbr, 90k tbn, 59.94 tbc --> Please use -b:a or -b:v, -b is ambiguous --> [Parsed_crop_3 @ 02f49c60] Invalid too big or non positive size for width '1920' or height '1072' --> [Parsed_scale_2 @ 02ebaa80] Failed to configure input pad on Parsed_crop_3 --> Error opening filters! }}} '''WORKS:''' {{{ ffmpeg -async 1 -threads 0 -y -i "D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.ts" -ss 3 -vf yadif=0:-1,hqdn3d,crop=1920:1072:0:4,scale=720:trunc(720/dar/2)*2 -vcodec libx264 -b 1800000 -subq 6 -x264opts direct=auto:level=4.1:partitions=p8x8,b8x8,i4x4:no- weightb=0:psnr=0:ssim=0:subme=7:ref=3:b-pyramid=none:no-mixed- refs=0:trellis=1:threads=auto -acodec libvo_aacenc -ab 192k -ac 2 "D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.mp4" --> ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers --> built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) --> configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable-bzlib --enable- frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable- libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinger --enable-libspeex --enable-libtheora --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable- libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib --> libavutil 52. 6.100 / 52. 6.100 --> libavcodec 54. 71.100 / 54. 71.100 --> libavformat 54. 36.100 / 54. 36.100 --> libavdevice 54. 3.100 / 54. 3.100 --> libavfilter 3. 23.100 / 3. 23.100 --> libswscale 2. 1.102 / 2. 1.102 --> libswresample 0. 16.100 / 0. 16.100 --> libpostproc 52. 1.100 / 52. 1.100 --> [mpegts @ 02d5dca0] max_analyze_duration 5000000 reached at 5024000 --> Input #0, mpegts, from 'D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.ts': --> Duration: 00:00:31.37, start: 1.400000, bitrate: 11422 kb/s --> Video duration=31.37 --> Program 1 --> Metadata: --> service_name : WMORDT (WMOR-DT) --> service_provider: WMORDT --> Stream #0:0[0x100]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, s16, 384 kb/s --> Stream #0:1[0x101]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 59.94 tbr, 90k tbn, 59.94 tbc --> Please use -b:a or -b:v, -b is ambiguous --> -async is forwarded to lavfi similarly to -af aresample=min_comp=0.001:min_hard_comp=0.100000. --> [libx264 @ 03610700] using SAR=1/1 --> [libx264 @ 03610700] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 --> [libx264 @ 03610700] profile High, level 4.1 --> [libx264 @ 03610700] 264 - core 128 r2216 198a7ea - H.264/MPEG-4 AVC codec - Copyleft 2003-2012 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=0 b_adapt=1 b_bias=0 direct=3 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=abr mbtree=1 bitrate=1800 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 --> Output #0, mp4, to 'D:\MCEBuddy\MCEBuddy 2.x\MCEBuddy.ServiceCMD\bin\x86\Debug\working0\My Name Is Earl_WMORDT_2012_03_28_15_28_00.mp4': --> Metadata: --> encoder : Lavf54.36.100 --> Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 720x402 [SAR 1:1 DAR 120:67], q=-1--1, 1800 kb/s, 30k tbn, 29.97 tbc --> Stream #0:1: Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, stereo, s16, 192 kb/s --> Stream mapping: --> Stream #0:1 -> #0:0 (mpeg2video -> libx264) --> Stream #0:0 -> #0:1 (ac3 -> libvo_aacenc) --> Press [q] to stop, [?] for help --> frame= 0 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate= 0.0kbits/s --> frame= 9 fps=9.0 q=0.0 size= 0kB time=00:00:00.31 bitrate= 1.2kbits/s dup=2 drop=0 --> frame= 30 fps= 20 q=0.0 size= 0kB time=00:00:01.02 bitrate= 0.4kbits/s dup=6 drop=0 --> frame= 51 fps= 25 q=26.0 size= 30kB time=00:00:01.72 bitrate= 144.0kbits/s dup=10 drop=0 --> frame= 71 fps= 28 q=19.0 size= 108kB time=00:00:02.40 bitrate= 366.7kbits/s dup=14 drop=0 --> frame= 90 fps= 29 q=18.0 size= 256kB time=00:00:03.00 bitrate= 697.7kbits/s dup=18 drop=0 --> frame= 106 fps= 30 q=18.0 size= 379kB time=00:00:03.55 bitrate= 872.5kbits/s dup=18 drop=0 --> frame= 122 fps= 30 q=17.0 size= 652kB time=00:00:04.09 bitrate=1305.6kbits/s dup=21 drop=0 --> frame= 141 fps= 31 q=20.0 size= 770kB time=00:00:04.71 bitrate=1338.8kbits/s dup=25 drop=0 --> frame= 157 fps= 31 q=20.0 size= 939kB time=00:00:05.28 bitrate=1454.4kbits/s dup=28 drop=0 --> frame= 176 fps= 31 q=20.0 size= 1059kB time=00:00:05.92 bitrate=1463.9kbits/s dup=32 drop=0 --> frame= 195 fps= 32 q=20.0 size= 1191kB time=00:00:06.56 bitrate=1486.4kbits/s dup=36 drop=0 --> frame= 212 fps= 32 q=19.0 size= 1332kB time=00:00:07.10 bitrate=1536.8kbits/s dup=39 drop=0 --> frame= 229 fps= 32 q=20.0 size= 1523kB time=00:00:07.65 bitrate=1629.8kbits/s dup=43 drop=0 --> frame= 245 fps= 32 q=21.0 size= 1688kB time=00:00:08.18 bitrate=1689.2kbits/s dup=46 drop=0 --> frame= 260 fps= 31 q=21.0 size= 1836kB time=00:00:08.70 bitrate=1729.2kbits/s dup=49 drop=0 --> frame= 275 fps= 31 q=22.0 size= 1993kB time=00:00:09.19 bitrate=1776.8kbits/s dup=52 drop=0 --> frame= 291 fps= 31 q=22.0 size= 2137kB time=00:00:09.76 bitrate=1792.8kbits/s dup=55 drop=0 --> frame= 307 fps= 31 q=22.0 size= 2291kB time=00:00:10.27 bitrate=1826.3kbits/s dup=58 drop=0 --> frame= 324 fps= 31 q=22.0 size= 2441kB time=00:00:10.81 bitrate=1849.5kbits/s dup=62 drop=0 --> frame= 340 fps= 31 q=22.0 size= 2575kB time=00:00:11.43 bitrate=1845.3kbits/s dup=65 drop=0 --> frame= 357 fps= 31 q=22.0 size= 2695kB time=00:00:12.00 bitrate=1838.5kbits/s dup=68 drop=0 --> frame= 375 fps= 31 q=22.0 size= 2803kB time=00:00:12.54 bitrate=1831.1kbits/s dup=72 drop=0 --> frame= 390 fps= 31 q=22.0 size= 2925kB time=00:00:13.03 bitrate=1839.0kbits/s dup=75 drop=0 --> frame= 406 fps= 31 q=22.0 size= 3068kB time=00:00:13.56 bitrate=1852.8kbits/s dup=78 drop=0 --> frame= 422 fps= 31 q=22.0 size= 3193kB time=00:00:14.11 bitrate=1852.8kbits/s dup=81 drop=0 --> frame= 440 fps= 31 q=22.0 size= 3314kB time=00:00:14.69 bitrate=1847.6kbits/s dup=85 drop=0 --> frame= 457 fps= 31 q=22.0 size= 3435kB time=00:00:15.29 bitrate=1840.3kbits/s dup=88 drop=0 --> frame= 474 fps= 32 q=22.0 size= 3541kB time=00:00:15.84 bitrate=1830.8kbits/s dup=92 drop=0 --> frame= 490 fps= 32 q=21.0 size= 3655kB time=00:00:16.35 bitrate=1830.1kbits/s dup=95 drop=0 --> frame= 506 fps= 32 q=21.0 size= 3765kB time=00:00:16.93 bitrate=1821.2kbits/s dup=98 drop=0 --> frame= 521 fps= 31 q=21.0 size= 3868kB time=00:00:17.40 bitrate=1820.5kbits/s dup=101 drop=0 --> frame= 537 fps= 31 q=21.0 size= 3979kB time=00:00:17.95 bitrate=1814.9kbits/s dup=104 drop=0 --> frame= 554 fps= 32 q=21.0 size= 4106kB time=00:00:18.49 bitrate=1819.0kbits/s dup=108 drop=0 --> frame= 572 fps= 32 q=21.0 size= 4247kB time=00:00:19.11 bitrate=1820.6kbits/s dup=111 drop=0 --> frame= 587 fps= 32 q=21.0 size= 4372kB time=00:00:19.62 bitrate=1825.4kbits/s dup=114 drop=0 --> frame= 605 fps= 32 q=21.0 size= 4506kB time=00:00:20.26 bitrate=1821.6kbits/s dup=118 drop=0 --> frame= 624 fps= 32 q=21.0 size= 4625kB time=00:00:20.83 bitrate=1818.1kbits/s dup=122 drop=0 --> frame= 641 fps= 32 q=21.0 size= 4741kB time=00:00:21.41 bitrate=1813.5kbits/s dup=125 drop=0 --> frame= 657 fps= 32 q=20.0 size= 4864kB time=00:00:22.01 bitrate=1810.1kbits/s dup=128 drop=0 --> frame= 674 fps= 32 q=21.0 size= 5056kB time=00:00:22.50 bitrate=1840.5kbits/s dup=132 drop=0 --> frame= 690 fps= 32 q=21.0 size= 5182kB time=00:00:23.10 bitrate=1837.7kbits/s dup=135 drop=0 --> frame= 707 fps= 32 q=21.0 size= 5283kB time=00:00:23.61 bitrate=1832.7kbits/s dup=138 drop=0 --> frame= 726 fps= 32 q=20.0 size= 5380kB time=00:00:24.23 bitrate=1818.8kbits/s dup=142 drop=0 --> frame= 744 fps= 32 q=20.0 size= 5462kB time=00:00:24.82 bitrate=1802.2kbits/s dup=146 drop=0 --> frame= 764 fps= 32 q=19.0 size= 5568kB time=00:00:25.46 bitrate=1791.0kbits/s dup=150 drop=0 --> frame= 781 fps= 32 q=20.0 size= 5729kB time=00:00:26.04 bitrate=1802.0kbits/s dup=153 drop=0 --> frame= 796 fps= 32 q=20.0 size= 5860kB time=00:00:26.59 bitrate=1804.8kbits/s dup=156 drop=0 --> frame= 812 fps= 32 q=20.0 size= 5997kB time=00:00:27.11 bitrate=1812.1kbits/s dup=159 drop=0 --> frame= 826 fps= 32 q=20.0 size= 6104kB time=00:00:27.58 bitrate=1813.0kbits/s dup=162 drop=0 --> frame= 845 fps= 32 q=20.0 size= 6247kB time=00:00:27.64 bitrate=1851.3kbits/s dup=166 drop=0 --> frame= 851 fps= 31 q=-1.0 Lsize= 6611kB time=00:00:28.36 bitrate=1909.6kbits/s dup=167 drop=0 --> video:5932kB audio:650kB subtitle:0 global headers:0kB muxing overhead 0.442103% --> [libx264 @ 03610700] frame I:6 Avg QP:12.77 size: 54667 --> [libx264 @ 03610700] frame P:391 Avg QP:13.99 size: 11537 --> [libx264 @ 03610700] frame B:454 Avg QP:17.62 size: 2719 --> [libx264 @ 03610700] consecutive B-frames: 18.0% 25.9% 20.4% 35.7% --> [libx264 @ 03610700] mb I I16..4: 5.2% 63.7% 31.1% --> [libx264 @ 03610700] mb P I16..4: 2.1% 0.0% 4.9% P16..4: 31.3% 22.2% 15.6% 0.0% 0.0% skip:23.9% --> [libx264 @ 03610700] mb B I16..4: 6.5% 0.0% 1.5% B16..8: 16.6% 9.5% 1.0% direct: 8.3% skip:56.5% L0:28.3% L1:45.2% BI:26.5% --> [libx264 @ 03610700] final ratefactor: 14.13 --> [libx264 @ 03610700] 8x8 transform intra:5.5% inter:45.9% --> [libx264 @ 03610700] direct mvs spatial:99.1% temporal:0.9% --> [libx264 @ 03610700] coded y,uvDC,uvAC intra: 51.7% 85.9% 68.1% inter: 25.0% 25.8% 7.2% --> [libx264 @ 03610700] i16 v,h,dc,p: 21% 43% 27% 10% --> [libx264 @ 03610700] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 23% 22% 5% 6% 6% 6% 7% 7% --> [libx264 @ 03610700] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 35% 16% 15% 5% 7% 7% 6% 6% 4% --> [libx264 @ 03610700] i8c dc,h,v,p: 42% 37% 15% 6% --> [libx264 @ 03610700] Weighted P-Frames: Y:4.1% UV:1.3% --> [libx264 @ 03610700] ref P L0: 73.3% 11.2% 10.4% 4.8% 0.3% --> [libx264 @ 03610700] ref B L0: 88.1% 11.9% --> [libx264 @ 03610700] kb/s:1711.12 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 04:39:11 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 03:39:11 -0000 Subject: [FFmpeg-trac] #2015(undetermined:new): VF Scale option should include -2 to create square pixels Message-ID: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> #2015: VF Scale option should include -2 to create square pixels -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: Status: new | enhancement Component: | Priority: normal undetermined | Version: Keywords: | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: FFMPEG has not way to create square pixels output video. using -1 for the scale automatically scales but does not create square pixel video. So instead of having to create a square pixel video with width 720 by doing this: -vf scale=720:trunc(720/dar/2)*2 It would be great if FFMPEG can provide an option (like mencoder) to do something like: -vf scale=720:-2 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 05:24:38 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 04:24:38 -0000 Subject: [FFmpeg-trac] #2016(undetermined:new): undefined reference to `opj_version' Message-ID: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> #2016: undefined reference to `opj_version' -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: Type: defect | Status: new Priority: important | Component: Version: git- | undetermined master | Keywords: openjpeg Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- I'm trying to compile the latest FFmpeg git with openjpeg 2.0.0 but keep getting an undefined reference to opj_version. I have already asked for help with this issue here: [http://code.google.com/p/openjpeg/issues/detail?id=200] Here: [http://sourceforge.net/mailarchive/message.php?msg_id=30209438] And one of my users on my forum posted about it here: [http://ffmpeg.zeranoe.com/forum/viewtopic.php?f=5&t=674&hilit=opj_version] I think openjpeg is failing to compile in static and is searching for some .dll file when FFmpeg tries to link to it. Some code that ''does'' compile with opj_version is: {{{ #include #include #include #include int main(void) { printf("OPJ2 version is %s\n",opj_version()); return 0; } }}} Though I have no idea why that succeeds, and FFmpeg's test code: {{{ extern int opj_version(); int main(void){ opj_version(); } }}} fails. This command: $ i686-w64-mingw32-nm ./libopenjp2.a | grep opj_version Returns: 00000228 T _opj_version at 0 So it looks like it is in the lib, but just keeps failing. Openjpeg 2.0.0 compiled without error. It also looks like FFmpeg is trying to test the lib with: {{{ BEGIN /tmp/ffconf.ns4yWT3Y.c 1 extern int opj_version(); 2 int main(void){ opj_version(); } END /tmp/ffconf.ns4yWT3Y.c i686-w64-mingw32-gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U__STRICT_ANSI__ -std=c99 -fomit-frame-pointer -c -o /tmp/ffconf.ohUKczd4.o /tmp/ffconf.ns4yWT3Y.c i686-w64-mingw32-gcc -Wl,--as-needed -o /tmp/ffconf.hJciF3wT.exe /tmp/ffconf.ohUKczd4.o -lopenjpeg -lm -lz /tmp/ffconf.ohUKczd4.o:ffconf.ns4yWT3Y.c:(.text+0xc): undefined reference to `opj_version' collect2: error: ld returned 1 exit status ERROR: libopenjpeg not found }}} I'm happy to provide any further needed information to help get this fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 09:03:40 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 08:03:40 -0000 Subject: [FFmpeg-trac] #2016(undetermined:open): Support libopenjpeg 2.0.0 (was: undefined reference to `opj_version') In-Reply-To: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> References: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> Message-ID: <053.39371079322cee411375e47f22b65ef8@avcodec.org> #2016: Support libopenjpeg 2.0.0 -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: libopenjpeg | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: openjpeg => libopenjpeg * priority: important => wish * type: defect => enhancement * status: new => open Comment: openjpeg 1.5.1 is expected to work fine, please open an independent ticket if there are any problems with it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 09:18:02 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 08:18:02 -0000 Subject: [FFmpeg-trac] #2015(avfilter:new): VF Scale option should include -2 to create square pixels In-Reply-To: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> References: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> Message-ID: <055.9dd345f2e5cac4cd88919bd1da732f42@avcodec.org> #2015: VF Scale option should include -2 to create square pixels -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: scale | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => scale * component: undetermined => avfilter Comment: Please provide a short MPlayer / MEncoder command line and a ffmpeg command line that show the different effects. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 09:21:40 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 08:21:40 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.72ef6df3737df55191b23a3429fe40f5@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Do you request that the crop filter does not fail if the crop values are larger than image width/height (but instead keeps the original frame size)? (I don't think this is what you ask for but I absolutely may miss something.) Or do you request that it should not make a difference if a filter chain contains "crop,scale" or "scale,crop" (with the same parameters). This is how I read your post... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 09:22:41 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 08:22:41 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.5d666d0ce8acea98cfa91ad58a8d1f3d@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:2 ami_stuff]: > the correct duration shoud be calculated like this: > > int64_t filesize = avio_size(s->pb); > > st->duration = (filesize /* - audiotrack_size */ ) / video_size / calculated_fps; If "video_size" and "calculated_fps" are known, wouldn't it be much easier to set the bitrate? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 10:12:42 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 09:12:42 -0000 Subject: [FFmpeg-trac] #2017(FFmpeg:new): [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! Message-ID: <035.bc0ae707dbcee09aa8d4f89bd56ba2dd@avcodec.org> #2017: [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! --------------------------------+--------------------------------------- Reporter: mobil1 | Type: enhancement Status: new | Priority: normal Component: FFmpeg | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+--------------------------------------- ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers built on Jul 6 2012 10:40:09 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3) configuration: --prefix=/usr --enable-shared --disable-static --enable- libx264 --enable-gpl --enable-libmp3lame libavutil 51. 54.100 / 51. 54.100 libavcodec 54. 23.100 / 54. 23.100 libavformat 54. 6.100 / 54. 6.100 libavdevice 54. 0.100 / 54. 0.100 libavfilter 2. 77.100 / 2. 77.100 libswscale 2. 1.100 / 2. 1.100 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 w:1280 h:720 pixfmt:yuv420p tb:1/2000 sar:1/1 sws_param:flags=2 [buffersink @ 0x19251e0] No opaque field provided [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! i am using this command line ffmpeg -i "/mnt/video_in/Season 6/The.Sopranos.S06E01.720p.x264.mkv" -s 426x238 -r 24000/1001 -b:v 600k -maxrate 4000k -bufsize 2000k -vcodec libx264 -acodec aac -ac 2 -ar 22050 -ab 64k -map 0:v -map 0:a:0 -strict experimental /tmp/video_tmp.mp4 ******************************************************** centos 6.3 64 bit ******************************************************** -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 10:22:35 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 09:22:35 -0000 Subject: [FFmpeg-trac] #2017(undetermined:new): [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! In-Reply-To: <035.bc0ae707dbcee09aa8d4f89bd56ba2dd@avcodec.org> References: <035.bc0ae707dbcee09aa8d4f89bd56ba2dd@avcodec.org> Message-ID: <050.d121043f1dff3a7db0b08ab13a1492ea@avcodec.org> #2017: [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! -------------------------------------+------------------------------------- Reporter: mobil1 | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * component: FFmpeg => undetermined Comment: Is this reproducible with current git head? Your output looks edited (There should be some console output lines between "libpostproc" and "w:1280"), please always post the command line together with the complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 10:23:16 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 09:23:16 -0000 Subject: [FFmpeg-trac] #2012(FFmpeg:open): -filter without specifier fails without explicit error In-Reply-To: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> References: <035.d11347c482db90cfe3758fb94f82082f@avcodec.org> Message-ID: <050.8362aeb3c580835d2b2ec52d596d598f@avcodec.org> #2012: -filter without specifier fails without explicit error ------------------------------------+---------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 10:46:54 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 09:46:54 -0000 Subject: [FFmpeg-trac] #1876(avcodec:reopened): vc1dec.c multi-threading decode crash issue In-Reply-To: <036.fecdc32d94a6a6de277ed66df58c7cdf@avcodec.org> References: <036.fecdc32d94a6a6de277ed66df58c7cdf@avcodec.org> Message-ID: <051.5cbc43165d1ea47f55bcfe9d21b18523@avcodec.org> #1876: vc1dec.c multi-threading decode crash issue -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: reopened Priority: important | Component: avcodec Version: unspecified | Resolution: Keywords: vc1 crash | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by DonMoir): Appears to be fixed. I don't have a WMV3 file where the width and height changes so could not test very well in vc1_decode_frame when it has to be reinitialized but I faked it and seems ok. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 10:48:48 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 09:48:48 -0000 Subject: [FFmpeg-trac] #1976(avdevice:new): dshow_read_header can return zero when it fails In-Reply-To: <036.2c18ba138bb8d2c7e75cd4c87dad03fc@avcodec.org> References: <036.2c18ba138bb8d2c7e75cd4c87dad03fc@avcodec.org> Message-ID: <051.1b853682dcb3c7dbfd0ab12cddb0ac72@avcodec.org> #1976: dshow_read_header can return zero when it fails -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: new Priority: normal | Component: avdevice Version: unspecified | Resolution: Keywords: win dshow | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by DonMoir): fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 11:03:43 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 10:03:43 -0000 Subject: [FFmpeg-trac] #1876(avcodec:closed): vc1dec.c multi-threading decode crash issue In-Reply-To: <036.fecdc32d94a6a6de277ed66df58c7cdf@avcodec.org> References: <036.fecdc32d94a6a6de277ed66df58c7cdf@avcodec.org> Message-ID: <051.1ea60afe395385f9bc687fe3451bf8d6@avcodec.org> #1876: vc1dec.c multi-threading decode crash issue -------------------------------------+----------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: unspecified | Resolution: invalid Keywords: vc1 crash | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+----------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 11:03:57 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 10:03:57 -0000 Subject: [FFmpeg-trac] #1976(avdevice:closed): dshow_read_header can return zero when it fails In-Reply-To: <036.2c18ba138bb8d2c7e75cd4c87dad03fc@avcodec.org> References: <036.2c18ba138bb8d2c7e75cd4c87dad03fc@avcodec.org> Message-ID: <051.823fc2042f17e65f72880cf7130cd1d5@avcodec.org> #1976: dshow_read_header can return zero when it fails -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: avdevice Version: unspecified | Resolution: invalid Keywords: win dshow | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 11:22:27 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 10:22:27 -0000 Subject: [FFmpeg-trac] #2018(undetermined:new): Wrong duration of mpeg-ps file Message-ID: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> #2018: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Reproduce command: ffmpeg.exe -i test.mpg FFmpeg version: current Output of ffmpeg: [mpeg @ 01BF9760] max_analyze_duration 5000000 reached at 5016000 Input #0, mpeg, from 'F:\video\mtv\F0155301553685.mpg': Duration: 22:19:26.97, start: 0.213000, bitrate: 14 kb/s Stream #0:0[0x1c0]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:1[0x1c1]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:2[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 4000 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc At least one output file must be specified Problem: ffmpeg detected duration is 22:19:26.97, in fact it's 4min 17s. Mediainfo and players(VLC) detect it correctly. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 11:33:48 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 10:33:48 -0000 Subject: [FFmpeg-trac] #2018(undetermined:new): Wrong duration of mpeg-ps file In-Reply-To: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> References: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> Message-ID: <052.b31255ba3ae5c7b9c03b5ce09400644a@avcodec.org> #2018: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: mpeg | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mpeg Comment: Please add the complete, uncut console output and please provide a sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 11:34:07 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 10:34:07 -0000 Subject: [FFmpeg-trac] #2018(undetermined:new): Wrong duration of mpeg-ps file In-Reply-To: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> References: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> Message-ID: <052.f5971650e1d7c27e49e4d4ed7f10f26f@avcodec.org> #2018: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: mpegps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mpeg => mpegps -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:08:24 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:08:24 -0000 Subject: [FFmpeg-trac] #2019(undetermined:new): Wrong duration of mpeg-ps file Message-ID: <037.4c1e87e362ae7845d500775dbfcb8af0@avcodec.org> #2019: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Reproduce command: ffmpeg.exe -i DreamComeTrue.mpg FFmpeg version: All versions Output of ffmpeg: [mpeg @ 01BF9760] max_analyze_duration 5000000 reached at 5016000 Input #0, mpeg, from 'F:\video\mtv\F0155301553685.mpg': Duration: 22:19:26.97, start: 0.213000, bitrate: 14 kb/s Stream #0:0[0x1c0]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:1[0x1c1]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:2[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 4000 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc At least one output file must be specified Problem: ffmpeg detected duration is 22:19:26.97, in fact it's 4min 17s. Mediainfo and players(VLC) detect it correctly. Test file: http://www.mvlib.net/dl/DreamComeTrue.mpg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:08:35 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:08:35 -0000 Subject: [FFmpeg-trac] #2020(undetermined:new): Wrong duration of mpeg-ps file Message-ID: <037.3c036c168f463aefa09f77b2eb35011b@avcodec.org> #2020: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Reproduce command: ffmpeg.exe -i DreamComeTrue.mpg FFmpeg version: All versions Output of ffmpeg: [mpeg @ 01BF9760] max_analyze_duration 5000000 reached at 5016000 Input #0, mpeg, from 'F:\video\mtv\F0155301553685.mpg': Duration: 22:19:26.97, start: 0.213000, bitrate: 14 kb/s Stream #0:0[0x1c0]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:1[0x1c1]: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:2[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 4000 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc At least one output file must be specified Problem: ffmpeg detected duration is 22:19:26.97, in fact it's 4min 17s. Mediainfo and players(VLC) detect it correctly. Test file: http://www.mvlib.net/dl/DreamComeTrue.mpg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:09:09 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:09:09 -0000 Subject: [FFmpeg-trac] #2015(avfilter:new): VF Scale option should include -2 to create square pixels In-Reply-To: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> References: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> Message-ID: <055.b7c9b41c8ac85b308c9319ba6072f444@avcodec.org> #2015: VF Scale option should include -2 to create square pixels -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: scale | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by saste): Replying to [ticket:2015 ramitbhalla]: > Summary of the bug: FFMPEG has not way to create square pixels output video. using -1 for setsar=1,scale=iw:iw what's wrong with this? > the scale automatically scales but does not create square pixel video. > > So instead of having to create a square pixel video with width 720 by doing this: > > -vf scale=720:trunc(720/dar/2)*2 > > It would be great if FFMPEG can provide an option (like mencoder) to do something like: > > -vf scale=720:-2 I tend to dislike this arbitrary and opaque syntax. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:13:18 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:13:18 -0000 Subject: [FFmpeg-trac] #2020(undetermined:closed): Wrong duration of mpeg-ps file In-Reply-To: <037.3c036c168f463aefa09f77b2eb35011b@avcodec.org> References: <037.3c036c168f463aefa09f77b2eb35011b@avcodec.org> Message-ID: <052.92f0e837dd12f37b337fc89f44d40cda@avcodec.org> #2020: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => duplicate Comment: Duplicate of ticket #2018. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:13:28 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:13:28 -0000 Subject: [FFmpeg-trac] #2019(undetermined:closed): Wrong duration of mpeg-ps file In-Reply-To: <037.4c1e87e362ae7845d500775dbfcb8af0@avcodec.org> References: <037.4c1e87e362ae7845d500775dbfcb8af0@avcodec.org> Message-ID: <052.f163d4892172e0dd9de7096eb33de2d9@avcodec.org> #2019: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => duplicate Comment: Duplicate of ticket #2018. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:16:21 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:16:21 -0000 Subject: [FFmpeg-trac] #2018(undetermined:new): Wrong duration of mpeg-ps file In-Reply-To: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> References: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> Message-ID: <052.576e95d7cac3f72daa7aded6085bb842@avcodec.org> #2018: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: mpegps | Resolution: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mpegps => mpegps mpeg2video -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 12:56:27 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 11:56:27 -0000 Subject: [FFmpeg-trac] #2021(undetermined:new): Probing find an extra invalid stream (MJPEG) Message-ID: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> #2021: Probing find an extra invalid stream (MJPEG) -------------------------------------+------------------------------------- Reporter: jyavenard | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: How to reproduce: {{{ $ ./ffmpeg -i Fantastic\ Four\ -\ Rise\ of\ the\ Silver\ Surfer\ -\ Trailer.mp4 ffmpeg version N-47762-g75b3911 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 22:53:06 with llvm-gcc 4.2.1 (LLVM build 2336.11.00) configuration: --disable-doc libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f905301f800] stream 0, timescale not set [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f905301f800] max_analyze_duration 5000000 reached at 5005000 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Volumes/videos/High- Def/Trailers/Fantastic Four - Rise of the Silver Surfer - Trailer.mp4': Metadata: major_brand : isom minor_version : 1 compatible_brands: isomavc1 creation_time : 2007-05-21 06:31:32 genre : Trailer artist : 20th Century Fox title : Fantastic Four: Rise of the Silver Surfer - Theatrical Trailer date : 2007 Duration: 00:02:09.24, start: 0.000000, bitrate: 5843 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1280x544, 5714 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc Metadata: creation_time : 2007-05-21 06:31:32 handler_name : GPAC ISO Video Handler Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 123 kb/s Metadata: creation_time : 2007-05-21 06:32:18 handler_name : GPAC ISO Audio Handler Stream #0:2: Video: mjpeg, yuvj420p, 510x755 [SAR 100:100 DAR 102:151], 90k tbr, 90k tbn, 90k tbc At least one output file must be specified }}} Note the extra mjpeg stream #0.2.. I have a few trailers (all from Apple web site) that are now showing this extra stream. This wasn't detected a few months back. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 13:06:47 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 12:06:47 -0000 Subject: [FFmpeg-trac] #2021(undetermined:new): Probing find an extra invalid stream (MJPEG) In-Reply-To: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> References: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> Message-ID: <053.d607692fb7f74e4a852dac0ac4b2cc69@avcodec.org> #2021: Probing find an extra invalid stream (MJPEG) -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Why do you think stream 0:2 is invalid? The following works as expected here, does it fail for you? {{{ $ ffmpeg -i Fantastic\ Four\ -\ Rise\ of\ the\ Silver\ Surfer\ -\ Trailer.mp4 -map 0:2 out.png }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 13:21:09 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 12:21:09 -0000 Subject: [FFmpeg-trac] #2021(undetermined:new): Probing find an extra invalid stream (MJPEG) In-Reply-To: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> References: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> Message-ID: <053.898942400a93fb77aeb81165bbf44bc3@avcodec.org> #2021: Probing find an extra invalid stream (MJPEG) -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by jyavenard): You're right. The MJPEG stream was never detected previously. This cause mythtv to display a black screen as it selects the MJPEG stream for playback You can close this ticket then... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 14:04:07 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 13:04:07 -0000 Subject: [FFmpeg-trac] #2021(avformat:closed): Probing find an extra invalid stream (MJPEG) In-Reply-To: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> References: <038.8762b0dcaa018a127a29d1ec73c52a37@avcodec.org> Message-ID: <053.87e3a913116e22cb35befb8c163b1cf8@avcodec.org> #2021: Probing find an extra invalid stream (MJPEG) ------------------------------------+------------------------------------ Reporter: jyavenard | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: invalid Keywords: mov | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => mov * resolution: => invalid * status: new => closed * component: undetermined => avformat * version: unspecified => git-master Comment: av_find_best_stream() should help to decide which stream to play. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 14:54:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 13:54:36 -0000 Subject: [FFmpeg-trac] #2022(avcodec:new): DNxHD: Decode video returns wrong number of bytes Message-ID: <032.7f121e796b45cd07ec4350a39ec3d521@avcodec.org> #2022: DNxHD: Decode video returns wrong number of bytes ---------------------------------+--------------------------------------- Reporter: maf | Type: defect Status: new | Priority: minor Component: avcodec | Version: unspecified Keywords: DNxHD | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ---------------------------------+--------------------------------------- Summary of the bug: Value returned from dnxhd_decode_frame() is wrong. It only returns half of the buffer consumed. The problem is that buf_size is not decremented in 2nd field iteration. The solution would be to move line: {{{ buf_size -= ctx->cid_table->coding_unit_size; }}} two lines up (before if() ). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 15:20:35 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 14:20:35 -0000 Subject: [FFmpeg-trac] #2022(avcodec:new): DNxHD: Decode video returns wrong number of bytes In-Reply-To: <032.7f121e796b45cd07ec4350a39ec3d521@avcodec.org> References: <032.7f121e796b45cd07ec4350a39ec3d521@avcodec.org> Message-ID: <047.c62d29d70989da445e548957078e7853@avcodec.org> #2022: DNxHD: Decode video returns wrong number of bytes -------------------------------------+----------------------------------- Reporter: maf | Owner: Type: defect | Status: new Priority: minor | Component: avcodec Version: unspecified | Resolution: Keywords: DNxHD | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+----------------------------------- Comment (by cehoyos): Please send patches to ffmpeg-devel, they usually receive more attention there. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 15:24:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 14:24:36 -0000 Subject: [FFmpeg-trac] #2016(undetermined:open): Support libopenjpeg 2.0.0 In-Reply-To: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> References: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> Message-ID: <053.dac0fbe85eb3d903a29685ba96d52492@avcodec.org> #2016: Support libopenjpeg 2.0.0 -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: libopenjpeg | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by KSHawkEye): Replying to [comment:1 cehoyos]: > openjpeg 1.5.1 is expected to work fine, please open an independent ticket if there are any problems with it. So your saying that FFmpeg doesn't support 2.0.0? There is no reason why the new version should fail and the outdated to succeed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 15:28:04 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 14:28:04 -0000 Subject: [FFmpeg-trac] #2018(undetermined:open): Wrong duration of mpeg-ps file In-Reply-To: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> References: <037.fcba17f83f8aaf105a68502848b6a5ad@avcodec.org> Message-ID: <052.aa85e51f5b55b6fcc31bd022b0179f16@avcodec.org> #2018: Wrong duration of mpeg-ps file -------------------------------------+------------------------------------- Reporter: zoominla | Owner: Type: defect | Status: open Priority: minor | Component: Version: git-master | undetermined Keywords: mpegps | Resolution: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => minor * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 Comment: Sample uploaded to http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket2018/ Duration is detected correctly if the last 4k are cut from the sample, this does not change the output of -f framecrc. {{{ $ ffmpeg -i DreamComeTrue.mpg -f null - ffmpeg version N-47767-g0f23634 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 15:10:59 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg @ 0x1623280] max_analyze_duration 5000000 reached at 5016000 Input #0, mpeg, from 'DreamComeTrue.mpg': Duration: 22:19:26.98, start: 0.213000, bitrate: 14 kb/s Stream #0:0[0x1c0]: Audio: mp2, 48000 Hz, stereo, s16p, 256 kb/s Stream #0:1[0x1c1]: Audio: mp2, 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.49.101 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 720x480 [SAR 8:9 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 29.97 tbc Stream #0:1: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s Stream mapping: Stream #0:2 -> #0:0 (mpeg2video -> rawvideo) Stream #0:0 -> #0:1 (mp2 -> pcm_s16le) Press [q] to stop, [?] for help [null @ 0x162ad80] Encoder did not produce proper pts, making some up. 00 motion_type at 40 200.0 size= 0kB time=00:03:38.06 bitrate= 0.0kbits/s [mpeg2video @ 0x1654c40] Warning MVs not available [mpeg2video @ 0x1654c40] concealing 450 DC, 450 AC, 450 MV errors in P frame frame= 7712 fps=2586 q=0.0 Lsize= 0kB time=00:04:17.32 bitrate= 0.0kbits/s dup=2 drop=0 video:723kB audio:48218kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 15:34:00 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 14:34:00 -0000 Subject: [FFmpeg-trac] #2016(undetermined:open): Support libopenjpeg 2.0.0 In-Reply-To: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> References: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> Message-ID: <053.22caa09de3f7b7702b6248e37a4095bb@avcodec.org> #2016: Support libopenjpeg 2.0.0 -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: libopenjpeg | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I am not sure I understand you: Do you mean that when openjpeg support was implemented in 2009, the FFmpeg developers should have foreseen that the libopenjpeg developers will decide to change the name of the libopenjpeg library in 2012 from openjpeg.dll to libopenjp2.dll? (Note that I am not claiming the name change would be the only change from 1.5 to 2.0, I am just trying to explain that if an external library decides to change its API, there is generally no way to already support the new api when it gets released, so claiming that "there is no reason why the new version should fail and the outdated to succeed" seems like an overreaction to me.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:22:17 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:22:17 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.91bc99f2d5f6d145b45e5b1fd83a2ece@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Both - it should not fail, just keep the scale size if the crop size > scale size. And it shouldn't make a difference which order the parameters are placed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:24:54 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:24:54 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.e6b6f628bae41c1d1ec9ce75672494e1@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Cigaes): Replying to [comment:2 ramitbhalla]: > Both - it should not fail, just keep the scale size if the crop size > scale size. Silently ignoring an invalid parameter is almost never a good behaviour. > And it shouldn't make a difference which order the parameters are placed. They are not parameters, they are filters, and the order is obviously relevant: removing 100 pixels from 1920 is clearly not the same thing than from 720: on the first it amounts to about 5% of the width, on the second almost 14%. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:25:22 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:25:22 -0000 Subject: [FFmpeg-trac] #2015(avfilter:new): VF Scale option should include -2 to create square pixels In-Reply-To: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> References: <040.31ba09af0e919df99c3d4860ed0d443f@avcodec.org> Message-ID: <055.2a152636504b1efd1ff3fc9b2c215c73@avcodec.org> #2015: VF Scale option should include -2 to create square pixels -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: scale | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Nothing wrong @saste. I also gave a workaround, but that's the point it's a workaround. It would be great if there is an more direct way to do it. Espcially since a lot of programs use FFMPEG programtically. (and this can be properly documented) -1 = automatically calculate height (and it's doesn't take care of odd height pixels which is FRUSTRATING cause it breaks the conversion) -2 = square pixels and never fails the conversions due to a odd height -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:29:00 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:29:00 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.b5bd41162f34c4136b938b1b3f917e12@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): I agree, never said silently, throw a warning but don't fail the conversion. Why would you crop after scaling? cropping is done before scaling to typically remove the black bars. Hence logically it the order shouldn't matter since crop should always happen before scale. the concept of cropping after scaling is baffling, why would you try to calculate post scaling crop? PArdon my lingo, it's filters and not parameters. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:32:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:32:36 -0000 Subject: [FFmpeg-trac] #2014(undetermined:new): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.312a901a8c5b228e63dbdbf3de0655cb@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Cigaes): Replying to [comment:4 ramitbhalla]: > I agree, never said silently, throw a warning but don't fail the conversion. When something is wrong, a warning is not enough. If you want the conversion to succeed, provide it with correct parameters. > Why would you crop after scaling? Because the arithmetic may be easier, depending on circumstances. If you want your cropping to take effect before scaling, put the crop filter before the scale filter. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:38:16 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:38:16 -0000 Subject: [FFmpeg-trac] #2014(avfilter:closed): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.f72cafc4e00b8d9c7ae42839e5310c3f@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: invalid Keywords: crop scale | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Changes (by saste): * status: new => closed * reproduced: 0 => 1 * component: undetermined => avfilter * keywords: => crop scale * analyzed: 0 => 1 * resolution: => invalid Comment: Replying to [comment:5 Cigaes]: > Replying to [comment:4 ramitbhalla]: > > I agree, never said silently, throw a warning but don't fail the conversion. > > When something is wrong, a warning is not enough. If you want the conversion to succeed, provide it with correct parameters. > > > Why would you crop after scaling? > > Because the arithmetic may be easier, depending on circumstances. > > If you want your cropping to take effect before scaling, put the crop filter before the scale filter. Filter specification is location-sensitive by design, the user should be aware that most filtering operations are not commutative, and thus should provide a meaningful filterchain. Pretending "clever" guessworking from a program is a doomed idea. Issuing a more helpful error message is another issue (which I'm going to fix), but is unrelated to the present ticket subject. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:38:19 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:38:19 -0000 Subject: [FFmpeg-trac] #2005(avcodec:new): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.d71ac49fc39bf8b098c0a18bed55d9dd@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by Cigaes): {{{ 0 0 00c5c5c5 00000000 116427 0 1 00c5c5c5 ffffff00 110562 0 2 00c5c5c5 ff000000 181452 0 3 00c5c5c5 00000000 116427 }}} In other words, the dvdsub encoder considers that the transparent light gray is slightly nearer opaque yellow than transparent black. The culprit is {{{color_distance()}}} in {{{dvdsubenc.c}}}. A quick fix would be to get it to return 0 when both alphas are 0. A possibly better fix would be to multiply everything by alpha, i.e. consider the colors as a cone rather than an hypercube. Do you have any preference? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:39:56 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:39:56 -0000 Subject: [FFmpeg-trac] #2005(avcodec:open): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.e2b16f6694decd89ba3bd4e5ea49a047@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+----------------------------------- Changes (by Cigaes): * analyzed: 0 => 1 * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:42:26 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:42:26 -0000 Subject: [FFmpeg-trac] #2005(avcodec:open): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.064db7d3638d4f2a03b5cbef490bb012@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+----------------------------------- Comment (by gjdfgh): >A possibly better fix would be to multiply everything by alpha Would that change decoder output to premultiplied alpha? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:43:44 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:43:44 -0000 Subject: [FFmpeg-trac] #379(undetermined:open): Remuxing pgssub in matroska In-Reply-To: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> References: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> Message-ID: <049.a21bd6c390eb9cc766416e63d16f9160@avcodec.org> #379: Remuxing pgssub in matroska -------------------------------------+------------------------------------- Reporter: Thom1 | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: pgssub mkv | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by Cigaes): Can you post an excerpt of the output of {{{ffprobe -show_packets}}} on your input file showing the paragraph for a few subtitles packets. My guess is that the duration field is not set. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 16:46:15 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 15:46:15 -0000 Subject: [FFmpeg-trac] #2005(avcodec:open): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.658e99730dcfcf2c562adf34ab5e6684@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+----------------------------------- Comment (by Cigaes): Replying to [comment:6 gjdfgh]: > Would that change decoder output to premultiplied alpha? No: I meant multiply everything only in the distance function used to select the color map. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 17:03:04 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 16:03:04 -0000 Subject: [FFmpeg-trac] #2014(avfilter:closed): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.67cad027a6accf339b8c094084a6e93d@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: invalid Keywords: crop scale | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Okay point 1 taken: Point 2: Well "logically" it doesn't make sense to put crop after scaling so again, order should not matter and definitely should not fail the conversion, you may throw a warning but when the reverse option is not a feasable option it should continue the conversion -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 17:04:22 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 16:04:22 -0000 Subject: [FFmpeg-trac] #2014(avfilter:closed): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.51922af09fb618c0ec1621f6093627ab@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: invalid Keywords: crop scale | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by Cigaes): Replying to [comment:7 ramitbhalla]: > Well "logically" it doesn't make sense to put crop after scaling Yes it does. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 21:42:20 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 20:42:20 -0000 Subject: [FFmpeg-trac] #1997(avformat:closed): setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit In-Reply-To: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> References: <035.30cfadf22b15529a54c7113ec54b5e2c@avcodec.org> Message-ID: <050.33e3502e19023721404372c72b5b3422@avcodec.org> #1997: setdar/setsar on muxing to mkv can produce files with wrong aspect ratio on 32 bit ------------------------------------+------------------------------------ Reporter: kahphi | Owner: Type: defect | Status: closed Priority: minor | Component: avformat Version: git-master | Resolution: fixed Keywords: mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Cigaes. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 23:15:35 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 22:15:35 -0000 Subject: [FFmpeg-trac] #2023(avformat:new): mkvalidator does not like how FFmpeg muxes pgssubtitles Message-ID: <036.5a10e0081af2118b3613a012fa635d40@avcodec.org> #2023: mkvalidator does not like how FFmpeg muxes pgssubtitles --------------------------------------+------------------------------------ Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Keywords: pgssub mkv Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+------------------------------------ Related to ticket #379 http://samples.mplayerhq.hu/sub/BluRay/sample-dts-not-valid-dca-frame.m2ts When remuxing pgssub into mkv, the resulting file plays fine with ffplay (and MPlayer), but mkvalidator is unhappy with the output file. {{{ $ ffmpeg -i sample-dts-not-valid-dca-frame.m2ts -vcodec copy -acodec copy -scodec copy out.mkv ffmpeg version N-47774-g26db653 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 21:57:33 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [dca @ 0x21fe320] Not a valid DCA frame Last message repeated 52 times [mpegts @ 0x2150280] Stream #5: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #6: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #7: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #8: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #9: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #10: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #11: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #12: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #13: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #14: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #15: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #16: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #17: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #18: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #19: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #20: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Stream #21: not enough frames to estimate rate; consider increasing probesize [mpegts @ 0x2150280] Could not find codec parameters for stream 5 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 6 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 7 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 8 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 9 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 10 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 11 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 12 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 13 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 14 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 15 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 16 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 17 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 18 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 19 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 20 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] Could not find codec parameters for stream 21 (Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2150280] decoding for stream 22 failed [mpegts @ 0x2150280] Could not find codec parameters for stream 22 (Audio: dts ([162][0][0][0] / 0x00A2), 0 channels, fltp): unspecified sample rate Consider increasing the value for the 'analyzeduration' and 'probesize' options [NULL @ 0x2156f40] start time is not set in estimate_timings_from_pts [NULL @ 0x2157860] start time is not set in estimate_timings_from_pts [NULL @ 0x2158180] start time is not set in estimate_timings_from_pts [NULL @ 0x21a6120] start time is not set in estimate_timings_from_pts [NULL @ 0x21ac580] start time is not set in estimate_timings_from_pts [NULL @ 0x21b2a60] start time is not set in estimate_timings_from_pts [NULL @ 0x21b8f40] start time is not set in estimate_timings_from_pts [NULL @ 0x21bf340] start time is not set in estimate_timings_from_pts [NULL @ 0x21c5820] start time is not set in estimate_timings_from_pts [NULL @ 0x21cbd00] start time is not set in estimate_timings_from_pts [NULL @ 0x21d2220] start time is not set in estimate_timings_from_pts [NULL @ 0x21d8700] start time is not set in estimate_timings_from_pts [NULL @ 0x21dec80] start time is not set in estimate_timings_from_pts [NULL @ 0x21e5080] start time is not set in estimate_timings_from_pts [NULL @ 0x21eb480] start time is not set in estimate_timings_from_pts [NULL @ 0x21f1960] start time is not set in estimate_timings_from_pts [NULL @ 0x21f7e40] start time is not set in estimate_timings_from_pts [mpegts @ 0x2150280] PES packet size mismatch Last message repeated 3 times Input #0, mpegts, from 'sample-dts-not-valid-dca-frame.m2ts': Duration: 00:00:53.18, start: 11.608967, bitrate: 16276 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Stream #0:1[0x1100]: Audio: dts (DTS-HD MA) ([134][0][0][0] / 0x0086), 48000 Hz, 5.1(side), fltp, 1536 kb/s Stream #0:2[0x1101]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:3[0x1102]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:4[0x1103]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:5[0x1200]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:6[0x1201]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:7[0x1202]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:8[0x1203]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:9[0x1204]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:10[0x1205]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:11[0x1206]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:12[0x1207]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:13[0x1208]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:14[0x1209]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:15[0x120a]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:16[0x120b]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:17[0x120c]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:18[0x120d]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:19[0x120e]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:20[0x120f]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:21[0x1210]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream #0:22[0x1a00]: Audio: dts ([162][0][0][0] / 0x00A2), 0 channels, fltp Stream #0:23[0x1b00]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 720x480 [SAR 40:33 DAR 20:11], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Output #0, matroska, to 'out.mkv': Metadata: encoder : Lavf54.49.101 Stream #0:0: Video: h264 (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 23.98 fps, 1k tbn, 90k tbc Stream #0:1: Audio: dts ([134][0][0][0] / 0x0086), 48000 Hz, 5.1(side), 1536 kb/s Stream #0:2: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090) Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:5 -> #0:2 (copy) Press [q] to stop, [?] for help [mpegts @ 0x2150280] PES packet size mismatch frame= 1273 fps=0.0 q=-1.0 Lsize= 88047kB time=00:00:53.05 bitrate=13595.5kbits/s video:70275kB audio:17585kB subtitle:134 global headers:0kB muxing overhead 0.059732% }}} {{{ $ mkvalidator out.mkv ERR0B1: Block at 50661520 track #3 is not a keyframe ERR0B1: Block at 50661553 track #3 is not a keyframe ERR0B1: Block at 50661578 track #3 is not a keyframe ERR0B1: Block at 50661917 track #3 is not a keyframe ERR0B1: Block at 50707127 track #3 is not a keyframe ERR0B1: Block at 56486707 track #3 is not a keyframe ERR0B1: Block at 56486732 track #3 is not a keyframe ERR0B1: Block at 56486756 track #3 is not a keyframe ERR0B1: Block at 58281775 track #3 is not a keyframe ERR0B1: Block at 58281808 track #3 is not a keyframe ERR0B1: Block at 58281833 track #3 is not a keyframe ERR0B1: Block at 58282172 track #3 is not a keyframe ERR0B1: Block at 58322632 track #3 is not a keyframe ERR0B1: Block at 70426654 track #3 is not a keyframe ERR0B1: Block at 70426679 track #3 is not a keyframe ERR0B1: Block at 70426703 track #3 is not a keyframe ERR0B1: Block at 70946184 track #3 is not a keyframe ERR0B1: Block at 70946217 track #3 is not a keyframe ERR0B1: Block at 70946242 track #3 is not a keyframe ERR0B1: Block at 70946581 track #3 is not a keyframe ERR0B1: Block at 70974021 track #3 is not a keyframe ERR0B1: Block at 82469195 track #3 is not a keyframe ERR0B1: Block at 82469220 track #3 is not a keyframe ERR0B1: Block at 82469244 track #3 is not a keyframe ERR0B1: Block at 85421140 track #3 is not a keyframe ERR0B1: Block at 85421173 track #3 is not a keyframe ERR0B1: Block at 85421198 track #3 is not a keyframe ERR0B1: Block at 85421537 track #3 is not a keyframe ERR0B1: Block at 85461724 track #3 is not a keyframe .... file created with Lavf54.49.101 / Lavf54.49.101 }}} ffprobe -show_packets show duration, duration_time, convergence_duration and convergence_duration_time as "N/A" for all subtitle packets. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 23:16:45 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 22:16:45 -0000 Subject: [FFmpeg-trac] #1425(avformat:closed): Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers In-Reply-To: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> References: <034.c949a90b78abdb976547c6d686d12cf0@avcodec.org> Message-ID: <049.1d24575ea7d18887c9b6de506038f85c@avcodec.org> #1425: Clips generated by ffmpeg using segment muxer are not correctly played on some videoplayers -------------------------------------+------------------------------------ Reporter: knovz | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: segment mov | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by knovz): Replying to [comment:8 saste]: > Replying to [comment:7 knovz]: > [...] > > > Please check the attached patch, and specify the option -reset_timestamps 1. > > > > Works perfect for me (I did the same original tests, with the current git head applying the patch). > > Thank you. > > I updated the patch, now it's simpler and should avoid potential desynch problems, will push in a few days. Please confirm that this one is working as expected, thank you. Sorry for the delay. It works like a charm. Thank you! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 12 23:19:52 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 22:19:52 -0000 Subject: [FFmpeg-trac] #379(undetermined:closed): pgssub -> dvdsub in matroska (was: Remuxing pgssub in matroska) In-Reply-To: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> References: <034.a9212f7d13df7aafab5abb4ef6b764dc@avcodec.org> Message-ID: <049.b788afa80ba8763d2b350c849dfd25b1@avcodec.org> #379: pgssub -> dvdsub in matroska -------------------------------------+------------------------------------- Reporter: Thom1 | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: pgssub | Resolution: fixed dvdsub mkv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: pgssub mkv => pgssub dvdsub mkv * status: open => closed * resolution: => fixed Comment: I misread the original description last week;-( Reencoding pgssub -> dvdsub in matroska works fine with current git head (and mkvalidator accepts the output file), fails with earlier versions either completely or leads to slightly broken subtitles. I opened ticket #2023 for the problem with mkvalidator on remuxing (the duration field is indeed not set), sorry for the mess! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 00:07:54 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 23:07:54 -0000 Subject: [FFmpeg-trac] #2024(undetermined:new): Reencoding dvbsub fails Message-ID: <036.1bae9f864a653f9658535ee6156feebd@avcodec.org> #2024: Reencoding dvbsub fails -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: Version: git- | undetermined master | Keywords: dvbsub Blocked By: | av_interleaved_write_frame Reproduced by developer: 0 | Blocking: | Analyzed by developer: 0 -------------------------------------+------------------------------------- I tested two samples: http://samples.ffmpeg.org/MPEG-VOB/ClosedCaptions/Starship_Troopers.vob http://samples.ffmpeg.org/MPEG-VOB/transport/dvbsub/dvbsubtest.ts and tried to reencode them to dvbsub. This works fine for the dvdsub sample, but fails for the dvbsub (input) sample. {{{ $ ffmpeg -i dvbsubtest.ts -qscale 2 -mbd 2 -scodec dvbsub out.ts ffmpeg version N-47774-g26db653 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 21:57:33 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpegts @ 0x2f23280] max_analyze_duration 5000000 reached at 5016000 [mpegts @ 0x2f23280] PES packet size mismatch Input #0, mpegts, from 'dvbsubtest.ts': Duration: 00:00:34.60, start: 79677.098467, bitrate: 4848 kb/s Program 1 Stream #0:0[0x1901](eng): Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x19a1](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2[0x19b1](eng): Subtitle: dvb_subtitle ([6][0][0][0] / 0x0006) Please use -q:a or -q:v, -qscale is ambiguous Output #0, mpegts, to 'out.ts': Metadata: encoder : Lavf54.49.101 Stream #0:0(eng): Video: mpeg2video (hq), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, s16, 128 kb/s Stream #0:2(eng): Subtitle: dvb_subtitle Stream mapping: Stream #0:0 -> #0:0 (mpeg2video -> mpeg2video) Stream #0:1 -> #0:1 (mp2 -> mp2) Stream #0:2 -> #0:2 (dvbsub -> dvbsub) Press [q] to stop, [?] for help frame= 310 fps=0.0 q=2.0 size= 0kB time=00:00:12.32 bitrate= 0.0kbits/s dup=10 drop=0Application provided invalid, non monotonically increasing dts to muxer in stream 2: 3005830 >= 1670230 av_interleaved_write_frame(): Invalid argument }}} Remuxing all strams fails (remuxing only audio and video works fine): {{{ $ ffmpeg -i dvbsubtest.ts -acodec copy -vcodec copy -scodec dvbsub out.ts ffmpeg version N-47774-g26db653 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 21:57:33 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpegts @ 0x1b92280] max_analyze_duration 5000000 reached at 5016000 [mpegts @ 0x1b92280] PES packet size mismatch Input #0, mpegts, from 'dvbsubtest.ts': Duration: 00:00:34.60, start: 79677.098467, bitrate: 4848 kb/s Program 1 Stream #0:0[0x1901](eng): Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x19a1](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2[0x19b1](eng): Subtitle: dvb_subtitle ([6][0][0][0] / 0x0006) Output #0, mpegts, to 'out.ts': Metadata: encoder : Lavf54.49.101 Stream #0:0(eng): Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 25 fps, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, 256 kb/s Stream #0:2(eng): Subtitle: dvb_subtitle Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:2 -> #0:2 (dvbsub -> dvbsub) Press [q] to stop, [?] for help [mpegts @ 0x1b9a2e0] Application provided invalid, non monotonically increasing dts to muxer in stream 2: 3005830 >= 1670230 av_interleaved_write_frame(): Invalid argument }}} Remuxing only the subtitles work, but the resulting file shows no subtitles: {{{ $ ffmpeg -i dvbsubtest.ts -qscale 2 -mbd 2 -scodec copy out.ts ffmpeg version N-47774-g26db653 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 21:57:33 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 26.102 / 3. 26.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpegts @ 0x2ae8280] max_analyze_duration 5000000 reached at 5016000 [mpegts @ 0x2ae8280] PES packet size mismatch Input #0, mpegts, from 'dvbsubtest.ts': Duration: 00:00:34.60, start: 79677.098467, bitrate: 4848 kb/s Program 1 Stream #0:0[0x1901](eng): Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x19a1](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2[0x19b1](eng): Subtitle: dvb_subtitle ([6][0][0][0] / 0x0006) Please use -q:a or -q:v, -qscale is ambiguous Output #0, mpegts, to 'out.ts': Metadata: encoder : Lavf54.49.101 Stream #0:0(eng): Video: mpeg2video (hq), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, s16, 128 kb/s Stream #0:2(eng): Subtitle: dvb_subtitle ([6][0][0][0] / 0x0006) Stream mapping: Stream #0:0 -> #0:0 (mpeg2video -> mpeg2video) Stream #0:1 -> #0:1 (mp2 -> mp2) Stream #0:2 -> #0:2 (copy) Press [q] to stop, [?] for help frame= 311 fps=0.0 q=2.0 size= 5961kB time=00:00:13.09 bitrate=3728.0kbits/s dup=10 drop=0frame= 570 fps=569 q=2.0 size= 14614kB time=00:00:23.13 bitrate=5173.9kbits/s dup=10 drop=0frame= 821 fps=546 q=2.0 size= 25327kB time=00:00:32.76 bitrate=6333.3kbits/s dup=10 drop=0PES packet size mismatch [mpeg2video @ 0x2aec140] invalid mb type in P Frame at 43 16 [mpeg2video @ 0x2aec140] Warning MVs not available [mpeg2video @ 0x2aec140] concealing 900 DC, 900 AC, 900 MV errors in P frame [mp2 @ 0x2aecc20] incomplete frame Error while decoding stream #0:1: Invalid data found when processing input frame= 866 fps=538 q=2.0 Lsize= 28381kB time=00:00:34.67 bitrate=6704.4kbits/s dup=12 drop=0 video:25613kB audio:535kB subtitle:50 global headers:0kB muxing overhead 8.332572% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 00:10:14 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 23:10:14 -0000 Subject: [FFmpeg-trac] #2005(avcodec:open): Wrong palette colors with DVD subtitles encoding In-Reply-To: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> References: <035.bf451a04d85ddb18148cab0873fac256@avcodec.org> Message-ID: <050.747c7c32948b7251f4c22610a5c1dd6d@avcodec.org> #2005: Wrong palette colors with DVD subtitles encoding ------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | ------------------------------------+----------------------------------- Comment (by ubitux): Replying to [comment:4 Cigaes]: > {{{ > 0 0 00c5c5c5 00000000 116427 > 0 1 00c5c5c5 ffffff00 110562 > 0 2 00c5c5c5 ff000000 181452 > 0 3 00c5c5c5 00000000 116427 > }}} > In other words, the dvdsub encoder considers that the transparent light gray is slightly nearer opaque yellow than transparent black. The culprit is {{{color_distance()}}} in {{{dvdsubenc.c}}}. A quick fix would be to get it to return 0 when both alphas are 0. A possibly better fix would be to multiply everything by alpha, i.e. consider the colors as a cone rather than an hypercube. Do you have any preference? If it solves the issue, using the alpha channel as a weight factor for the color sounds like a good idea to me (assuming that's what you meant). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 00:19:17 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 23:19:17 -0000 Subject: [FFmpeg-trac] #2016(undetermined:open): Support libopenjpeg 2.0.0 In-Reply-To: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> References: <038.68b153e3b9ba784ade544aad3174de23@avcodec.org> Message-ID: <053.0b56086cfe52c887214397f957347f93@avcodec.org> #2016: Support libopenjpeg 2.0.0 -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: libopenjpeg | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by rogerdpack): for me, after renaming libopenjp2.a to libopenjpeg.a (to try and fake out ffmpeg), I get this: {{{ libavcodec/libavcodec.a(libopenjpegenc.o): In function `libopenjpeg_encode_frame?: /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:421: undefined reference to `opj_cio_open? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:433: undefined reference to `cio_tell? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:442: undefined reference to `opj_cio_close? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:435: undefined reference to `opj_cio_close? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:428: undefined reference to `opj_cio_close? libavcodec/libavcodec.a(libopenjpegenc.o): In function `libopenjpeg_encode_close?: /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:450: undefined reference to `opj_destroy_compress? libavcodec/libavcodec.a(libopenjpegenc.o): In function `libopenjpeg_encode_init?: /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegenc.c:203: undefined reference to `opj_set_event_mgr? libavcodec/libavcodec.a(libopenjpegdec.o): In function `libopenjpeg_decode_frame?: /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:268: undefined reference to `opj_set_event_mgr? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:273: undefined reference to `opj_cio_open? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:283: undefined reference to `opj_decode_with_info? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:284: undefined reference to `opj_cio_close? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:330: undefined reference to `opj_cio_open? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:339: undefined reference to `opj_decode_with_info? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:340: undefined reference to `opj_cio_close? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:389: undefined reference to `opj_destroy_decompress? /home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/win32/ffmpeg_git/libavcodec/libopenjpegdec.c:288: undefined reference to `opj_destroy_decompress? collect2: error: ld returned 1 exit status }}} Which I assume means that openjpeg has changed their internal api, with version 2, perhaps? (though I might be cross compiling libopenjpeg 2.0.0 wrong as well). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 00:52:07 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 12 Dec 2012 23:52:07 -0000 Subject: [FFmpeg-trac] #2007(avformat:open): buffer underflow flood while remuxing mpeg stream In-Reply-To: <035.eb50b62f598d67a9fb9bcb4676695383@avcodec.org> References: <035.eb50b62f598d67a9fb9bcb4676695383@avcodec.org> Message-ID: <050.8744dd30536edafaf427526473bf387d@avcodec.org> #2007: buffer underflow flood while remuxing mpeg stream ------------------------------------+------------------------------------ Reporter: ubitux | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: mpeg => mpegps * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 02:41:42 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 01:41:42 -0000 Subject: [FFmpeg-trac] #2014(avfilter:closed): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.6e1c4e529987bfed3dc7aae6a19cb145@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: invalid Keywords: crop scale | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Really please explain so how - why would you want to crop after scaling? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 03:07:57 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 02:07:57 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.0e83967d62864a22b10adbba4a486524@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by ami_stuff): Replying to [comment:3 cehoyos]: > If "video_size" and "calculated_fps" are known, wouldn't it be much easier to set the video bitrate? True, but I have a problem with fps. Any idea how do I get value printed by ffmpeg? {{{ st->codec->bit_rate = (video_size * 8) /* * av_q2d(st->avg_frame_rate) /* }}} ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 03:40:50 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 02:40:50 -0000 Subject: [FFmpeg-trac] #2025(undetermined:new): FFMPEG unable to create WTV files > 2GB Message-ID: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: important Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- FIRST of all thanks @Peter Ross for fixing the seek in WTV files. Summary of the bug: When I try to convert TS files to WTV files and if the converted file is > 2GB, it is unplayable. How to reproduce: Here is a very simple remux from TS to WTV, as you can see the conversion itself is showing no errors, but if the destination is > 2GB the file is not playable by WMP, however if I use a smaller source so the destination is < 2GB it works fine (same settings). {{{ ffmpeg -i ..\Himoe_USA_WRC-HD.ts -codec copy test.wtv ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 Input #0, mpeg, from '..\Himoe_USA_WRC-HD.ts': Duration: 00:20:26.79, start: 0.200000, bitrate: 15313 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, s16, 96 kb/s (visual impaired) Output #0, wtv, to 'test.wtv': Metadata: encoder : Lavf54.36.100 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 10000k tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 96 kb/s (visual impaired) Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame=36773 fps=305 q=-1.0 Lsize= 2278828kB time=00:20:26.99 bitrate=15214.6kbits/s video:2253105kB audio:14377kB subtitle:0 global headers:0kB muxing overhead 0.500394% }}} I'm marking this important since it's fundamental issue, but if my analysis is incorrect feel free to change it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 04:11:11 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 03:11:11 -0000 Subject: [FFmpeg-trac] #2025(avformat:open): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.bab7c1d4abd2108624388b0fca63e92c@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => wtv * priority: important => normal * status: new => open * component: undetermined => avformat -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 08:57:16 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 07:57:16 -0000 Subject: [FFmpeg-trac] #2014(avfilter:closed): Crop and Scale are location sensitive, fails if scale comes before crop In-Reply-To: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> References: <040.e81dad983710396c18a2f88a62c1e919@avcodec.org> Message-ID: <055.4fde32eae0c384fe9596034920243f2a@avcodec.org> #2014: Crop and Scale are location sensitive, fails if scale comes before crop -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: unspecified | Resolution: invalid Keywords: crop scale | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by reimar): I'd really like to see how you would scale a video by a factor 3 and encode it at 320x240 resolution without cropping after scale. That is a case that is completely impossible, but in general the border pixels will look different between both orders, and the one with crop first is only correct when croppping borders. When cropping content (e.g. to change aspect) cropping after scale will give more accurate results. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 11:42:46 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 10:42:46 -0000 Subject: [FFmpeg-trac] #2026(avformat:new): [PATCH] SAP muxer SDP session name not set Message-ID: <035.9d8ab23c83b04fa49e021662e9f70742@avcodec.org> #2026: [PATCH] SAP muxer SDP session name not set ----------------------------------+-------------------------------------- Reporter: mavrik | Type: defect Status: new | Priority: normal Component: avformat | Version: git-master Keywords: sap, sdp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- SAP muxer does not pass session name to av_sdp_create which causes session name to be always "No Name". This patch fixes this by passing "title" metadata field to av_sdp_create same as RTP muxer. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 11:58:37 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 10:58:37 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.266dc0fe094e9f2ea5386f1c67c1908a@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): There is an if-then-else-block "if (cdxl->framerate)" inside the else- block of "if (cdxl->read_chunk && audio_size)", if the user did not specify a frame-rate, it may be possible to use the sample_rate instead. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 12:01:14 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 11:01:14 -0000 Subject: [FFmpeg-trac] #2026(avformat:new): [PATCH] SAP muxer SDP session name not set In-Reply-To: <035.9d8ab23c83b04fa49e021662e9f70742@avcodec.org> References: <035.9d8ab23c83b04fa49e021662e9f70742@avcodec.org> Message-ID: <050.f3116db6e843667b35626351f7a0a79e@avcodec.org> #2026: [PATCH] SAP muxer SDP session name not set -------------------------------------+------------------------------------ Reporter: mavrik | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: sdp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: sap, sdp => sdp * priority: normal => wish * type: defect => enhancement Comment: Please send patches to ffmpeg-devel, they get more attention there. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 13:13:03 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 12:13:03 -0000 Subject: [FFmpeg-trac] #2024(undetermined:new): Reencoding dvbsub fails In-Reply-To: <036.1bae9f864a653f9658535ee6156feebd@avcodec.org> References: <036.1bae9f864a653f9658535ee6156feebd@avcodec.org> Message-ID: <051.4805922331e39940df42b62c57dcc6c4@avcodec.org> #2024: Reencoding dvbsub fails -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: dvbsub | Resolution: av_interleaved_write_frame | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Cigaes): For the dvbdub ? dvbsub case, the input sample is strange, at it has two consecutive subtitles packets with data in them. Normally, dvbsub comes with a packet of data, then an empty packet to clear it. ffmpeg is still not completely prepared to work with the various kind of subtitles packets, and it is a tricky API design question. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 16:54:11 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 15:54:11 -0000 Subject: [FFmpeg-trac] #2027(FFprobe:new): Print size of compressed frame in ffprobe Message-ID: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> #2027: Print size of compressed frame in ffprobe -------------------------------------+------------------------------------- Reporter: | Type: cvandonderen | enhancement Status: new | Priority: normal Component: FFprobe | Version: Keywords: | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- ffprobe supported printing the size of the compressed packet corresponding to the current frame in -show_frames before it was integrated in the FFmpeg codebase. This currently does not seem to be possible without using -show_packets and -show_frames and then matching the pkt entries "manually" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 16:55:02 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 15:55:02 -0000 Subject: [FFmpeg-trac] #2027(FFprobe:new): Print size of compressed frame when using -show_frames (was: Print size of compressed frame in ffprobe) In-Reply-To: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> References: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> Message-ID: <056.da55add523fd6adbb5ff53a1f8075ff5@avcodec.org> #2027: Print size of compressed frame when using -show_frames --------------------------------------+----------------------------------- Reporter: cvandonderen | Owner: Type: enhancement | Status: new Priority: normal | Component: FFprobe Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+----------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 17:55:13 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 16:55:13 -0000 Subject: [FFmpeg-trac] #2027(FFprobe:new): Print size of compressed frame when using -show_frames In-Reply-To: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> References: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> Message-ID: <056.c8ba74eecff97596986eb97561f8904b@avcodec.org> #2027: Print size of compressed frame when using -show_frames --------------------------------------+----------------------------------- Reporter: cvandonderen | Owner: Type: enhancement | Status: new Priority: wish | Component: FFprobe Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+----------------------------------- Changes (by cehoyos): * priority: normal => wish * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 18:15:28 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 17:15:28 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds Message-ID: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: important Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: With the newer builds, some files (I've replicated with TS and WTV so far) don't have or have corrupted audio in the output file if the -ss is specified after -i. If it's specified before -i the audio is fine. The sample file is too large to upload here (that itself is cut from the original file which is much larger). It can be downloaded from: http://www.mediafire.com/?phqror7mn83pdlk How to reproduce: WORKS: {{{ ffmpeg -ss 30 -i test.ts -vcodec copy -acodec copy -t 15 test1.ts ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpegts @ 0025afa0] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'test.ts': Duration: 00:02:00.06, start: 1.400000, bitrate: 4219 kb/s Program 1 Metadata: service_name : CBBC Channel service_provider: CBBC Channel Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16, 256 kb/s Output #0, mpegts, to 'test1.ts': Metadata: encoder : Lavf54.36.100 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 25 fps, 90k t bn, 25 tbc Stream #0:1(eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 356 fps=0.0 q=-1.0 Lsize= 7247kB time=00:00:15.02 bitrate=3952.5kbits/s video:6214kB audio:470kB subtitle:0 global headers:0kB muxing overhead 8.415676% }}} DOES NOT WORK {{{ ffmpeg -i test.ts -vcodec copy -acodec copy -ss 30 -t 15 test1.ts ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpegts @ 0221afa0] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'test.ts': Duration: 00:02:00.06, start: 1.400000, bitrate: 4219 kb/s Program 1 Metadata: service_name : CBBC Channel service_provider: CBBC Channel Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16, 256 kb/s Output #0, mpegts, to 'test1.ts': Metadata: encoder : Lavf54.36.100 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 25 fps, 90k t bn, 25 tbc Stream #0:1(eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 356 fps=0.0 q=-1.0 Lsize= 7246kB time=00:00:45.00 bitrate=1319.1kbits/s video:6214kB audio:469kB subtitle:0 global headers:0kB muxing overhead 8.423527% }}} LAST WORKING VERSION FFMPEG WITH -SS AFTER -I {{{ ffmpeg.051112 -i test.ts -vcodec copy -acodec copy -ss 30 -t 15 test1.ts ffmpeg version N-37915-g6cb2085 Copyright (c) 2000-2012 the FFmpeg developers built on Feb 15 2012 20:47:20 with gcc 4.6.2 configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-runtime-cpudetect --enable-avisynth --enab le-bzlib --enable-frei0r --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libfreetype --enable-libgsm --en able-libmp3lame --enable-libopenjpeg --enable-librtmp --enable- libschroedinger --enable-libspeex --enable-libtheora --en able-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable- libvpx --enable-libx264 --enable-libxavs --enable- libxvid --enable-zlib libavutil 51. 39.100 / 51. 39.100 libavcodec 54. 3.100 / 54. 3.100 libavformat 54. 1.100 / 54. 1.100 libavdevice 53. 4.100 / 53. 4.100 libavfilter 2. 62.100 / 2. 62.100 libswscale 2. 1.100 / 2. 1.100 libswresample 0. 6.100 / 0. 6.100 libpostproc 52. 0.100 / 52. 0.100 [mpegts @ 01CC9540] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'test.ts': Duration: 00:02:00.06, start: 1.400000, bitrate: 4219 kb/s Program 1 Metadata: service_name : CBBC Channel service_provider: CBBC Channel Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 15000 k b/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16, 256 kb/s [mpegts @ 02A493A0] muxrate VBR, pcr every 2 pkts, sdt every 200, pat/pmt every 40 pkts Output #0, mpegts, to 'test1.ts': Metadata: encoder : Lavf54.1.100 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 15000 kb/s, 2 5 fps, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 356 fps= 0 q=-1.0 Lsize= 7246kB time=00:00:15.00 bitrate=3957.0kbits/s video:6214kB audio:469kB global headers:0kB muxing overhead 8.418032% }}} This is a regression defect -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 22:59:56 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 21:59:56 -0000 Subject: [FFmpeg-trac] #2025(avformat:open): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.4bc448071ab106078978090f25cc5114@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * version: unspecified => git-master * reproduced: 0 => 1 Comment: {{{ $ ffmpeg -f lavfi -i testsrc=s=1920x1080 -fs 2150M -qscale 2 out2.wtv ffmpeg version N-47781-g4391262 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 13 2012 00:29:04 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.101 / 3. 27.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [lavfi @ 0x1bab2c0] Estimating duration from bitrate, this may be inaccurate Input #0, lavfi, from 'testsrc=s=1920x1080': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 1920x1080 [SAR 1:1 DAR 16:9], 25 tbr, 25 tbn, 25 tbc Please use -q:a or -q:v, -qscale is ambiguous Output #0, wtv, to 'out2.wtv': Metadata: encoder : Lavf54.49.101 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 10000k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg2video) Press [q] to stop, [?] for help frame=220754 fps= 63 q=2.0 Lsize= 2102056kB time=02:27:10.12 bitrate=1950.1kbits/s video:2072757kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1.413528% }}} {{{ $ ffmpeg -i out2.wtv ffmpeg version N-47781-g4391262 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 13 2012 00:29:04 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.101 / 3. 27.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [wtv @ 0x2da3280] unknown guid 00000000000000000000000000000000, expected dir_entry_guid; remaining directory entries ignored [wtv @ 0x2da3280] timeline data missing out2.wtv: Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 23:39:07 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 22:39:07 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.7084a32ddd41fcac4e9536e918ec282c@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => regression Comment: I am unable to reproduce this problem: {{{ $ ffmpeg -i test.ts -vcodec copy -acodec copy -ss 30 -t 15 out.ts ffmpeg version N-47781-g4391262 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 13 2012 00:29:04 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.101 / 3. 27.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpegts @ 0x2fbc280] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'test.ts': Duration: 00:02:00.06, start: 1.400000, bitrate: 4219 kb/s Program 1 Metadata: service_name : CBBC Channel service_provider: CBBC Channel Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 256 kb/s Output #0, mpegts, to 'out.ts': Metadata: encoder : Lavf54.49.101 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 25 fps, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 356 fps=0.0 q=-1.0 Lsize= 7246kB time=00:00:15.02 bitrate=3951.7kbits/s video:6214kB audio:469kB subtitle:0 global headers:0kB muxing overhead 8.418032% }}} {{{ $ ffmpeg -i out.ts ffmpeg version N-47781-g4391262 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 13 2012 00:29:04 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 79.102 / 54. 79.102 libavformat 54. 49.101 / 54. 49.101 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.101 / 3. 27.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpegts @ 0x22d3280] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'out.ts': Duration: 00:00:15.06, start: 1.400000, bitrate: 3941 kb/s Program 1 Metadata: service_name : Service01 service_provider: FFmpeg Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 256 kb/s At least one output file must be specified }}} Audio is recognized in the remuxed file and playback works fine. Or do I miss something? {{{ $ md5sum test.ts out.ts 4777c5a4371585955527cec8d7805446 test.ts 762cfa9d19ce82144417ee620d698966 out.ts }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 13 23:53:41 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 22:53:41 -0000 Subject: [FFmpeg-trac] #1756(undetermined:new): 2013 Winter Website Banner Contest In-Reply-To: <035.0b53302787816b666870597d32ab45af@avcodec.org> References: <035.0b53302787816b666870597d32ab45af@avcodec.org> Message-ID: <050.2c69bbda0b2da827be95c4372580f45f@avcodec.org> #1756: 2013 Winter Website Banner Contest -------------------------------------+------------------------------------- Reporter: llogan | Owner: Type: art | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by herve flores): Hi here is a logo (herve-ffwinter.png file) and its preview (herve-preview.jpg file) NOTICE: to preserve site design, and to always fit all the screen width, just add a colored background behind the image (and the banner will seems to fit the page ;-)), html color to use: #006699 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 00:38:38 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 23:38:38 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.25faf08e4e7d09b4445fe89d7482c470@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): I'm using WMP 12 (Windows 7) and there is no Audio when I put -ss after -i but I get audio when I put -ss before -i I noticed you're using a Dec 13th build - I will try it again and let you know. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 00:51:06 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 13 Dec 2012 23:51:06 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.5f66f5a2b6891d411c5470c7652513e1@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:2 ramitbhalla]: > I'm using WMP 12 (Windows 7) and there is no Audio when I put -ss after -i but I get audio when I put -ss before -i > > I noticed you're using a Dec 13th build - I will try it again and let you know. It will be sufficient if you test with ffmpeg to see that audio is only missing in WMP. Could you do the bisect to find the change introducing the regression? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 06:52:06 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 05:52:06 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.4eb6347102b4810d05e6d361bd07a432@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): The Dec 13th Build is not yet released for Windows. Unfortunately, regarding Bisect, I googled it but don't know how to use it. I also don't have the ability to build ffmpeg, I rely on Zeronae static builds. I'll be happy to test the versions and let you know what works and what doesn't but will need to reply on your skills for the "bisect" :) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 09:51:09 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 08:51:09 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.907103d1195fb53b87ce286f39c8604e@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Please run "ffmpeg -i test1.ts" to clarify that your problem is only reproducible with WMP, not with any other player / application. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 11:28:10 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 10:28:10 -0000 Subject: [FFmpeg-trac] #2028(undetermined:new): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.4e9368a3652817dc19101c2da48eafd4@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I also tested "N-37915-g6cb2085" and it produces the same output as current git head: {{{ $ ffmpeg -i test.ts -vcodec copy -acodec copy -ss 30 -t 15 out2.ts ffmpeg version N-37915-g6cb2085 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 14 2012 11:23:53 with gcc 4.7.1 20120723 [gcc-4_7-branch revision 189773] configuration: libavutil 51. 39.100 / 51. 39.100 libavcodec 54. 3.100 / 54. 3.100 libavformat 54. 1.100 / 54. 1.100 libavdevice 53. 4.100 / 53. 4.100 libavfilter 2. 62.100 / 2. 62.100 libswscale 2. 1.100 / 2. 1.100 libswresample 0. 6.100 / 0. 6.100 [mpegts @ 0x1ada3e0] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'test.ts': Duration: 00:02:00.06, start: 1.400000, bitrate: 4219 kb/s Program 1 Metadata: service_name : CBBC Channel service_provider: CBBC Channel Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 15000 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16, 256 kb/s [mpegts @ 0x1adce60] muxrate VBR, pcr every 2 pkts, sdt every 200, pat/pmt every 40 pkts Output #0, mpegts, to 'out2.ts': Metadata: encoder : Lavf54.1.100 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 15000 kb/s, 25 fps, 90k tbn, 25 tbc Stream #0:1(eng): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 356 fps= 0 q=-1.0 Lsize= 7246kB time=00:00:15.00 bitrate=3957.0kbits/s video:6214kB audio:469kB global headers:0kB muxing overhead 8.418032% }}} {{{ $ md5sum out2.ts 762cfa9d19ce82144417ee620d698966 out2.ts }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 11:43:58 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 10:43:58 -0000 Subject: [FFmpeg-trac] #2029(avcodec:new): mxf op1a audio has wrong duration and bitrate Message-ID: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate --------------------------------------+--------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Keywords: mxf Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+--------------------------------- Summary of the bug: How to reproduce: {{{ ffplay Kinderfilmtage_2012.A.mxf ffplay version N-47450-g217b10d Copyright (c) 2003-2012 the FFmpeg developers built on Dec 5 2012 12:23:41 with Apple clang version 4.1 (tags/Apple/clang-421.11.65) (based on LLVM 3.1svn) configuration: --enable-gpl --enable-version3 --enable-nonfree --enable- postproc --enable-libfaac --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable- libxvid --enable-libvpx --enable-libmp3lame --enable-libfreetype --enable- libopenjpeg --enable-libass --enable-libvo-aacenc --enable-libaacplus --enable-frei0r --enable-libfdk-aac --cc=clang --prefix=/usr/local libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mxf @ 0x7f8a24803c00] "OPAtom" with 2 ECs - assuming OP1a Input #0, mxf, from 'Kinderfilmtage_2012.A.mxf': Metadata: timecode : 00:00:00:00 Duration: 00:00:00.01, start: 0.000000, bitrate: -2147483 kb/s Stream #0:0: Audio: pcm_s24le, 48000 Hz, 2 channels, s32, 2304 kb/s 15.98 A-V: 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0 }}} the file is playable with ffplay. The correct duration should be: 00:00:15.00 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 11:44:47 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 10:44:47 -0000 Subject: [FFmpeg-trac] #2029(avcodec:new): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.c694ea05efa753f48984f08bf752ffc7@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate ------------------------------------+----------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: mxf | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cbsrobot): Here is the file: http://www.datafilehost.com/download-9062f723.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 12:03:51 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 11:03:51 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.f24cb1d0ecf761c8a3862e01cf79bd9b@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => fixed * component: undetermined => FFmpeg * reproduced: 0 => 1 Comment: Regression since 1909dbf, fixed in 9406d6b. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 12:05:35 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 11:05:35 -0000 Subject: [FFmpeg-trac] #2029(undetermined:new): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.f23bf055048839cfc767bd426c2e604e@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * component: avcodec => undetermined Comment: Please add the complete, uncut console output of "ffmpeg -i Kinderfilmtage_2012.A.mxf -f null -", the output will also show the actual duration. Generally, please do not post ffplay output unless a problem is only reproducible with ffplay but not with ffmpeg. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 12:11:28 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 11:11:28 -0000 Subject: [FFmpeg-trac] #2029(undetermined:new): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.bd29477db578ff00b186e86641250a44@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cbsrobot): Sorry, I pasted the wrong clipboard. Here it is: {{{ ffmpeg -i Kinderfilmtage_2012.A.mxf ffmpeg version N-47450-g217b10d Copyright (c) 2000-2012 the FFmpeg developers built on Dec 5 2012 12:23:41 with Apple clang version 4.1 (tags/Apple/clang-421.11.65) (based on LLVM 3.1svn) configuration: --enable-gpl --enable-version3 --enable-nonfree --enable- postproc --enable-libfaac --enable-libopencore-amrnb --enable-libopencore- amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable- libxvid --enable-libvpx --enable-libmp3lame --enable-libfreetype --enable- libopenjpeg --enable-libass --enable-libvo-aacenc --enable-libaacplus --enable-frei0r --enable-libfdk-aac --cc=clang --prefix=/usr/local libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 79.100 / 54. 79.100 libavformat 54. 44.100 / 54. 44.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 24.100 / 3. 24.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mxf @ 0x7fea9984ae00] "OPAtom" with 2 ECs - assuming OP1a Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, mxf, from 'Kinderfilmtage_2012.A.mxf': Metadata: timecode : 00:00:00:00 Duration: 00:00:00.01, start: 0.000000, bitrate: -2147483 kb/s Stream #0:0: Audio: pcm_s24le, 48000 Hz, stereo, s32, 2304 kb/s At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 14:54:52 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 13:54:52 -0000 Subject: [FFmpeg-trac] #2029(undetermined:open): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.a804498b5e1400ca66c472ac476d5b43@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by Tjoppen): * status: new => open Comment: Regression: the duration looks fine in c581cb4, but not in current master (b6e7041). I'll try a bisect to find where it went wrong. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 15:31:37 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 14:31:37 -0000 Subject: [FFmpeg-trac] #2029(undetermined:open): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.f51b788073f43bbc6e78fd16bd2142d0@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Tjoppen): The bad commit is 83cab07: "mxfdec: set audio packets pts" My guess is that the way that SampleRate replaced EditRate for st->time_base messed up the duration. This should hopefully be easy enough to fix. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 15:46:34 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 14:46:34 -0000 Subject: [FFmpeg-trac] #2029(undetermined:open): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.1022f0428624a18ddaf615cef8115d5d@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mxf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Tjoppen): Patch submitted to ML. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 15:50:06 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 14:50:06 -0000 Subject: [FFmpeg-trac] #2029(avformat:open): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.4a864964defaa5e4eddfc14d618f7830@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mxf | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mxf => mxf regression * component: undetermined => avformat * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 16:21:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 15:21:41 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm (was: support old sipr in rm (rewrite rm demuxer)) In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.fde5b1e970513543dd772ce4298417e2@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 16:46:25 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 15:46:25 -0000 Subject: [FFmpeg-trac] #2030(FFmpeg:new): x264_encoder_open_129 Message-ID: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> #2030: x264_encoder_open_129 ------------------------------------+-------------------------------------- Reporter: cybernet2u | Type: defect Status: new | Priority: critical Component: FFmpeg | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+-------------------------------------- Summary of the bug: How to reproduce: {{{ $ ./configure --enable-gpl --enable-version3 --enable-nonfree --enable- postproc --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable- libvpx --enable-libx264 --enable-libxvid $ make ffmpeg version latest from git http://git.videolan.org/?p=ffmpeg.git;a=commit;h=3c5c6b9d61361eae3eb989ad8aeca80f0fc05a63 built on Ubuntu 12.04 }}} when i'm trying to "make" i get libavcodec/libx264.c:533: error: undefined reference to 'x264_encoder_open_129' collect2: ld returned 1 exit status make: *** [ffmpeg_g] Error 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 16:48:00 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 15:48:00 -0000 Subject: [FFmpeg-trac] #2030(FFmpeg:new): x264_encoder_open_129 In-Reply-To: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> References: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> Message-ID: <054.4a52fc9e0104863481dc65bec41b2877@avcodec.org> #2030: x264_encoder_open_129 ------------------------------------+---------------------------------- Reporter: cybernet2u | Owner: Type: defect | Status: new Priority: critical | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Comment (by cybernet2u): this is the tutorial i followed https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 17:01:20 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 16:01:20 -0000 Subject: [FFmpeg-trac] #2030(build system:new): x264_encoder_open_129 In-Reply-To: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> References: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> Message-ID: <054.79d8bcb08c81f0827b3d398b2525e0db@avcodec.org> #2030: x264_encoder_open_129 -------------------------------------+------------------------------------- Reporter: cybernet2u | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: critical => normal * component: FFmpeg => build system Comment: Please confirm that you tried "make distclean && ./configure --enable-gpl --enable-x264 && make" and that it failed with above error. Then please run "make V=1" and post the complete, uncut output of "make V=1" (please do not post the output of the earlier run). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 17:51:25 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 16:51:25 -0000 Subject: [FFmpeg-trac] #2027(FFprobe:new): Print size of compressed frame when using ffprobe -show_frames (was: Print size of compressed frame when using -show_frames) In-Reply-To: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> References: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> Message-ID: <056.066155739e72032951ecee534deaa571@avcodec.org> #2027: Print size of compressed frame when using ffprobe -show_frames --------------------------------------+----------------------------------- Reporter: cvandonderen | Owner: Type: enhancement | Status: new Priority: wish | Component: FFprobe Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | --------------------------------------+----------------------------------- Changes (by saste): * analyzed: 0 => 1 * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 18:21:16 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 17:21:16 -0000 Subject: [FFmpeg-trac] #2030(build system:new): x264_encoder_open_129 In-Reply-To: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> References: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> Message-ID: <054.8403fd934072dcb9c5dc87e63f5b6263@avcodec.org> #2030: x264_encoder_open_129 -------------------------------------+------------------------------------- Reporter: cybernet2u | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cybernet2u): i started fresh {{{ root at node9:~/t# git clone git://source.ffmpeg.org/ffmpeg.git Cloning into 'ffmpeg'... remote: Counting objects: 270373, done. remote: Compressing objects: 100% (58965/58965), done. remote: Total 270373 (delta 213885), reused 267224 (delta 210985) Receiving objects: 100% (270373/270373), 67.39 MiB | 1.25 MiB/s, done. Resolving deltas: 100% (213885/213885), done. root at node9:~/t# cd ffmpeg/ root at node9:~/t/ffmpeg# make distclean Makefile:2: config.mak: No such file or directory Makefile:49: /common.mak: No such file or directory Makefile:92: /libavutil/Makefile: No such file or directory Makefile:92: /library.mak: No such file or directory Makefile:178: /doc/Makefile: No such file or directory Makefile:179: /tests/Makefile: No such file or directory make: *** No rule to make target `/tests/Makefile'. Stop. root at node9:~/t/ffmpeg# ./configure --enable-gpl --enable-x264 ........................ libavcodec/libx264.c:533: error: undefined reference to 'x264_encoder_open_129' collect2: ld returned 1 exit status make: *** [ffmpeg_g] Error 1 root at node9:~/t/ffmpeg# make V=1 gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl ,--warn-common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffmpeg_g ffmpeg_opt.o ffmpeg_filter.o ffmpeg.o cmdutils.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -ldl -lasound -lSDL -lx264 -lm -pthread -lz -lrt libavcodec/libx264.c:533: error: undefined reference to 'x264_encoder_open_129' collect2: ld returned 1 exit status make: *** [ffmpeg_g] Error 1 root at node9:~/t/ffmpeg# }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 20:09:29 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 19:09:29 -0000 Subject: [FFmpeg-trac] #2031(avformat:new): ffmpeg fails to access certain http URLs Message-ID: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> #2031: ffmpeg fails to access certain http URLs ----------------------------------+--------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: avformat | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+--------------------------------------- {{{ $ ffmpeg -i 'http://samples.mplayerhq.hu/V-codecs/N264/Video demo-1.avi' fds.avi ffmpeg version 1.0 Copyright (c) 2000-2012 the FFmpeg developers built on Nov 17 2012 12:13:29 with gcc 4.7 (Debian 4.7.2-4) configuration: --prefix=/usr --extra-cflags='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security ' --extra- ldflags='-Wl,-z,relro' --cc='ccache cc' --enable-shared --enable- libmp3lame --enable-gpl --enable-nonfree --disable-decoder=libdirac --enable-libvorbis --enable-pthreads --enable-libfaac --enable-libxvid --enable-postproc --enable-x11grab --enable-libgsm --enable-libtheora --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libx264 --enable-libspeex --enable-nonfree --disable-stripping --enable- libschroedinger --disable-encoder=libschroedinger --enable-version3 --enable-libopenjpeg --enable-libvpx --enable-librtmp --enable-avfilter --enable-libfreetype --enable-libvo-aacenc --disable-decoder=amrnb --enable-libvo-amrwbenc --enable-libaacplus --libdir=/usr/lib/i386-linux- gnu --disable-vda --enable-libbluray --enable-libcdio --enable-gnutls --enable-frei0r --enable-openssl --enable-libass --enable-libopus --enable-fontconfig --enable-libdc1394 --disable-altivec libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 [http @ 0x8091600] HTTP error 404 Not Found http://samples.mplayerhq.hu/V-codecs/N264/Video demo-1.avi: Input/output error }}} mplayer can access the file without trouble. (Never mind the problem that the video codec used for this file is not supported by ffmpeg or mplayer.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 22:17:29 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 21:17:29 -0000 Subject: [FFmpeg-trac] #2031(avformat:new): ffmpeg fails to access certain http URLs In-Reply-To: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> References: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> Message-ID: <050.639bff12e0fc62198d86c613fb7b734f@avcodec.org> #2031: ffmpeg fails to access certain http URLs -------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by Cigaes): Spaces are not valid in HTTP URLs. Replace them by %20 and it works. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 14 22:24:45 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 21:24:45 -0000 Subject: [FFmpeg-trac] #2031(avformat:new): ffmpeg fails to access certain http URLs In-Reply-To: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> References: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> Message-ID: <050.e3f17cc2ceb72372c21cfa0bf0bf029c@avcodec.org> #2031: ffmpeg fails to access certain http URLs -------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by gjdfgh): The ffmpeg component should be doing this. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 00:32:45 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 14 Dec 2012 23:32:45 -0000 Subject: [FFmpeg-trac] #2030(build system:new): x264_encoder_open_129 In-Reply-To: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> References: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> Message-ID: <054.f58132726f60dbfb5760887365db774c@avcodec.org> #2030: x264_encoder_open_129 -------------------------------------+------------------------------------- Reporter: cybernet2u | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Either your x264 include file does not match your library version or you have two different x264 versions installed. Try to uninstall the developer package(s) of libx264. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 01:04:15 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 00:04:15 -0000 Subject: [FFmpeg-trac] #1483(avformat:new): Allow a list of keyframe numbers that are valid for starting a new segment In-Reply-To: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> References: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> Message-ID: <050.8b8722ac38b4d9d43fdfb05c9426a09f@avcodec.org> #1483: Allow a list of keyframe numbers that are valid for starting a new segment -------------------------------------+------------------------------------ Reporter: gordon | Owner: Type: enhancement | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by saste): See patch in attachment. Test and comments are welcome. Also I'm not sure the patch is still useful, considering that there is already the segment_times option. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 08:19:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 07:19:18 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.f5ec37fe3915b9ad0021f3ef35ed1592@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by ramitbhalla): When you say run "ffmpeg -i test1.ts", what exactly am I looking for in the output? The output looks the same for the working version and the broken version of ffmpeg. However it's the WMP player that unable to play. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 10:27:50 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 09:27:50 -0000 Subject: [FFmpeg-trac] #2032(avformat:new): mpeg2 bugs Message-ID: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> #2032: mpeg2 bugs ----------------------------------+-------------------------------------- Reporter: downuse | Type: defect Status: new | Priority: normal Component: avformat | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- 1. when muxing mpeg-ps(i use -f svcd,all streams are -c copy), the scr is always begin with 28616 either than 0. and according to 18138-2,the scr_ext seems to start with 299. 2. when the video source(vbv_buffer=224k,bitrate=9000k,CBR) is Main at High or Main at High 1440, it says buffer underflow packet too large, ignoring buffer limits to mux it. 3. there isn't a option "sys_header only in first packet" i read the sorce and there is only "sys_header in every N packet" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 12:02:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 11:02:42 -0000 Subject: [FFmpeg-trac] #2027(FFprobe:closed): Print size of compressed frame when using ffprobe -show_frames In-Reply-To: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> References: <041.7da4b0724d8318614b80cb8515ca94ca@avcodec.org> Message-ID: <056.09345abdb8ff5be81f3a4363456afd62@avcodec.org> #2027: Print size of compressed frame when using ffprobe -show_frames --------------------------------------+----------------------------------- Reporter: cvandonderen | Owner: Type: enhancement | Status: closed Priority: wish | Component: FFprobe Version: git-master | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | --------------------------------------+----------------------------------- Changes (by saste): * status: new => closed * resolution: => fixed Comment: Fixed in: {{{ commit 1a490df12fd987c91e22d30be322aab14a7eac8a Author: Stefano Sabatini Date: Fri Dec 14 11:59:13 2012 +0100 ffprobe: show pkt_size in frame Fix trac ticket #2027. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 16:09:19 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 15:09:19 -0000 Subject: [FFmpeg-trac] #2032(avformat:new): mpeg2 bugs In-Reply-To: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> References: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> Message-ID: <051.23165445c145fbe8d5ccd9994a1ffbdd@avcodec.org> #2032: mpeg2 bugs ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Please add your (failing) ffmpeg command line together with complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 16:45:27 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 15:45:27 -0000 Subject: [FFmpeg-trac] #1415(undetermined:closed): FFMPEG not able to Stream Copy DVRMS files to TS Files In-Reply-To: <040.08ec9ab988f088141e019a2a1d46ef67@avcodec.org> References: <040.08ec9ab988f088141e019a2a1d46ef67@avcodec.org> Message-ID: <055.2075fa2cc0d8312e4619550f7d23bf6e@avcodec.org> #1415: FFMPEG not able to Stream Copy DVRMS files to TS Files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: fixed av_interleaved_write_frame asf | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Request you to please reopen this issue, it's broken again. I'm not able to convert any DVRMS files. I'm uploading another sample here (it's too big): http://www.mediafire.com/?a9rwcywc75i9iw0 I've tried with and without genpts and it's not converting, same error. Here is the sample output {{{ ffmpeg.current -i "..\MPEG-1 DVRMS.dvr-ms" -codec copy -fflags +genpts test.ts ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpeg2video @ 02d39700] interlaced frame in progressive sequence, ignoring [mpeg2video @ 02d39700] invalid frame_pred_frame_dct [mpeg2video @ 02d39700] slice below image (30 >= 30) [asf @ 003baf60] max_analyze_duration 5000000 reached at 5016000 Input #0, asf, from '..\MPEG-1 DVRMS.dvr-ms': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording Duration: 00:03:01.34, start: 37.280000, bitrate: 6117 kb/s Stream #0:0: Video: mjpeg, yuvj420p, 200x200 [SAR 96:96 DAR 1:1], 90k tbr, 90k tbn, 90k tbc Metadata: title : TV Thumbnail comment : Movie/video screen capture Stream #0:1: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:2: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], 12000 kb/s, 25.33 fps , 25 tbr, 1k tbn, 50 tbc Output #0, mpegts, to 'test.ts': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording encoder : Lavf54.36.100 Stream #0:0: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], q=2-31, 12000 kb/s, 2 5.33 fps, 90k tbn, 50 tbc Stream #0:1: Audio: mp2, 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:2 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 0360a020] st:0 PTS: 33390 DTS: 33390 < 40591 invalid, clipping [mpegts @ 0360a020] st:0 PTS: 36990 DTS: 36990 < 40592 invalid, clipping [mpegts @ 0360a020] st:0 PTS: 44190 DTS: 44190 < 51391 invalid, clipping [mpegts @ 0360a020] st:0 PTS: 47790 DTS: 47790 < 51392 invalid, clipping [mpegts @ 0360a020] first pts value must set av_interleaved_write_frame(): Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 16:53:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 15:53:18 -0000 Subject: [FFmpeg-trac] #1415(undetermined:closed): FFMPEG not able to Stream Copy DVRMS files to TS Files In-Reply-To: <040.08ec9ab988f088141e019a2a1d46ef67@avcodec.org> References: <040.08ec9ab988f088141e019a2a1d46ef67@avcodec.org> Message-ID: <055.f4c24abe77605de5d4d87e4d5a6d2289@avcodec.org> #1415: FFMPEG not able to Stream Copy DVRMS files to TS Files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: fixed av_interleaved_write_frame asf | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Please ignore, my bad, I put the fflags in the wrong place. It's working in the right place. But i'm still getting a lot of these errors: [mpegts @ 03476920] st:0 PTS: 52648740 DTS: 52648740 < 52651711 invalid, clipping [mpegts @ 03476920] st:0 PTS: 52650180 DTS: 52650180 < 52651712 invalid, clipping [mpegts @ 03476920] st:0 PTS: 52653240 DTS: 52653240 < 52656211 invalid, clipping -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 18:22:01 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 17:22:01 -0000 Subject: [FFmpeg-trac] #2032(avformat:new): mpeg2 bugs In-Reply-To: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> References: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> Message-ID: <051.a3015dc70a193ea65f52c2c30bdfea66@avcodec.org> #2032: mpeg2 bugs ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by downuse): the scr_base is always begin with 28616 and the default muxrate estimating are really buged for a long time...why nobody cares? i uploaded the sample. its muxrate is too large and scr is begin with 28616. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 18:31:44 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 17:31:44 -0000 Subject: [FFmpeg-trac] #468(avformat:new): No audio tracks in QuickTime In-Reply-To: <035.4c856b8eec80cbb87e71130060b5fab9@avcodec.org> References: <035.4c856b8eec80cbb87e71130060b5fab9@avcodec.org> Message-ID: <050.a4a968b436aa9c5798ed20f183ceb319@avcodec.org> #468: No audio tracks in QuickTime --------------------------------+------------------------------------ Reporter: Alex__ | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: 0.8.2 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+------------------------------------ Comment (by yorn): Hi, I have been having similar problems with ffmpeg and I found out some extra information that might be of use: (these observations have been made using the files published by AmshTemp) * QuickTime 7, iTunes and iOS (iPhone/iPod/iPad etc.) play both files correctly (just one sound at a time) * QuickTime X behaves a bit weird; the ffmpeg file plays all audio tracks at once, the handbrake file plays the first audio track (which is Arabic, even if Arabic is not your preferred language). QuickTime 7 picks English in both files, which is my preferred language. Also iTunes picks the preferred language. * The languages French, German and Persian are not displayed correctly with the FFmpeg file; this is because of the incorrect language codes used. I am not sure whether this is an FFmpeg bug or a mistake made by the person who encoded the file (fra/fre, ger/deu, per/fas). I don't know either whether this is an error in Apple software since it's swe for swedish and not sve (svensk). Handbrake does use the terms used by Apple software. * The audio tracks in Handbrake are named "Stereo". In my Handbrake generated file my two tracks are named "Stereo" and "Surround". These names cannot be observed within ffmpeg and I did not manage to use ffmpeg to set these stream/channel names (whatever the correct term may be). It would be nice to have the possibility to name streams as well in ffmpeg. Maybe I'll make a seperate ticket for that. I did not see any case where iTunes 11 shows different behaviour from iOS. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 15 19:06:50 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 18:06:50 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 Message-ID: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- * Summary of the bug: Creating static images from a video works on Centos6-32bit, but not on Centos6-64bit. This issue does not exist in libav-9pre. The created jpegs look completly destroyed. * How to reproduce: {{{ $ wget http://doppelbauer.name/regression.flv $ ffmpeg -i regression.flv -f image2 -r 1 -vcodec mjpeg -vframes 1000 -qscale 1 %d.jpg ffmpeg version 1.0.1 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 12 2012 10:11:05 with gcc 4.4.6 (GCC) 20120305 (Red Hat 4.4.6-4) configuration: --prefix=/usr/local --enable-gpl --enable-version3 --enable-nonfree --enable-bzlib --enable-zlib --enable-libx264 --enable- libfaac --enable-libvo-aacenc --enable-libaacplus --enable-libmp3lame --enable-libcelt --enable-libspeex libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 Input #0, flv, from 'regression.flv': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : Duration: 00:08:51.63, start: 0.000000, bitrate: 944 kb/s Stream #0:0: Video: h264 (Main), yuv420p, 640x480, 826 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, s16, 131 kb/s Please use -q:a or -q:v, -qscale is ambiguous Output #0, image2, to '%d.jpg': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : encoder : Lavf54.29.104 Stream #0:0: Video: mjpeg, yuvj420p, 640x480, q=2-31, 200 kb/s, 90k tbn, 1 tbc Stream mapping: Stream #0:0 -> #0:0 (h264 -> mjpeg) Press [q] to stop, [?] for help Error while decoding stream #0:0: Operation not permitted Last message repeated 324 times Error while decoding stream #0:0: Operation not permitted0 bitrate= 0.0kbits/s dup=0 drop=146 Last message repeated 339 times Error while decoding stream #0:0: Operation not permitted0 bitrate= 0.0kbits/s dup=0 drop=298 Last message repeated 364 times Error while decoding stream #0:0: Operation not permitted0 bitrate= 0.0kbits/s dup=0 drop=455 Last message repeated 9 times }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 00:22:37 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 15 Dec 2012 23:22:37 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.d2a29d43496bf330e58cf80491a32220@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Is this problem also reproducible with current git head? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 02:31:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 01:31:55 -0000 Subject: [FFmpeg-trac] #2034(undetermined:new): -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" Message-ID: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> #2034: -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" -------------------------------------+------------------------------------- Reporter: | Type: defect ivan.todorovich | Priority: normal Status: new | Version: Component: | unspecified undetermined | Blocked By: Keywords: segment | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- I'm trying to split this file into multiple mpegts. Fails only if -f segment. Works fine with -f mp4 out.mp4.. but i need to split into multiple outputs. ffmpeg.exe -v 9 -loglevel 99 -i arrow.mp4 -c copy -map 0 -vbsf h264_mp4toannexb -f segment -segment_time 10 out%03d.ts ffmpeg version N-47062-g26c531c Copyright (c) 2000-2012 the FFmpeg developers built on Nov 25 2012 12:21:26 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runt ime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable- libass - -enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libo pus --enable-librtmp --enable-libschroedinger --enable-libspeex --enable- libtheo ra --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --ena ble-zlib libavutil 52. 9.100 / 52. 9.100 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.102 / 3. 23.102 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0201b200] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0201b200] ISO: File Type Major Brand: isom [mov,mp4,m4a,3gp,3g2,mj2 @ 0201b200] File position before avformat_find_stream_i nfo() is 158935682 [h264 @ 04420900] no picture [mov,mp4,m4a,3gp,3g2,mj2 @ 0201b200] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0201b200] File position after avformat_find_stream_in fo() is 713490 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'arrow.mp4': Metadata: major_brand : isom minor_version : 1 compatible_brands: isom creation_time : 2012-12-13 18:38:51 Duration: 00:21:18.19, start: 0.000000, bitrate: 994 kb/s Stream #0:0(und), 12, 1/24000: Video: h264 (High) (avc1 / 0x31637661), yuv42 0p, 720x404, 1001/48000, 885 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc Metadata: creation_time : 2012-12-13 17:01:17 handler_name : GPAC ISO Video Handler Stream #0:1(und), 1, 1/48000: Audio: aac (mp4a / 0x6134706D), 48000 Hz, ster eo, s16, 104 kb/s Metadata: creation_time : 2012-12-13 18:38:51 handler_name : GPAC ISO Audio Handler Output #0, segment, to 'outC:\Users\User\Desktop\ffmpeg segmeter.bat3d.ts': Metadata: major_brand : isom minor_version : 1 compatible_brands: isom encoder : Lavf54.37.100 Stream #0:0(und), 0, 1/90000: Video: h264 (avc1 / 0x31637661), yuv420p, 720x 404, 1001/24000, q=2-31, 885 kb/s, 23.98 fps, 90k tbn, 23.98 tbc Metadata: creation_time : 2012-12-13 17:01:17 handler_name : GPAC ISO Video Handler Stream #0:1(und), 0, 1/90000: Audio: aac (mp4a / 0x6134706D), 48000 Hz, ster eo, 104 kb/s Metadata: creation_time : 2012-12-13 18:38:51 handler_name : GPAC ISO Audio Handler Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Could not write header for output file #0 (incorrect codec parameters ?): Invali d argument [AVIOContext @ 0201b820] Statistics: 750406 bytes read, 2 seeks -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 09:37:03 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 08:37:03 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.eff7f808b018484cf66ffb943f66faff@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by doublemax): Yes, tested with CentOS6 64bit, ffmpeg-N47885. Not all images are corrupted, only many. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 14:04:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 13:04:36 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.1cb6cc4e195f46c70c527f0c88f97a75@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Please provide the input sample and please provide command line and complete, uncut console output for current git head. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 14:08:33 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 13:08:33 -0000 Subject: [FFmpeg-trac] #2032(avformat:new): mpeg2 bugs In-Reply-To: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> References: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> Message-ID: <051.64d1a186bf8353ed53c898d4e48ca7c2@avcodec.org> #2032: mpeg2 bugs ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [comment:3 downuse]: > the scr_base is always begin with 28616 and the default muxrate estimating are really buged for a long time...why nobody cares? Could you tell me a version that works better than current git head? And please point us to the bug report that was (seemingly) ignored if I understand you correctly. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 14:44:10 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 13:44:10 -0000 Subject: [FFmpeg-trac] #1990(avcodec:closed): mjpeg enc: sampling factors too large for interleaved scan In-Reply-To: <038.2c39e47f39632ad8c5602d052f5d0c3b@avcodec.org> References: <038.2c39e47f39632ad8c5602d052f5d0c3b@avcodec.org> Message-ID: <053.31ed57387c9542b1983f0a2e3d8ab721@avcodec.org> #1990: mjpeg enc: sampling factors too large for interleaved scan -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 15:40:04 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 14:40:04 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.60b7576dca81269ad95e19972ed2dca9@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by doublemax): Input sample, command line and console output are in the initial bug report. Here once more: wget http://doppelbauer.name/regression.flv ffmpeg -i regression.flv -f image2 -r 1 -vcodec mjpeg -vframes 1000 -qscale 1 %d.jpg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 17:23:48 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 16:23:48 -0000 Subject: [FFmpeg-trac] #2035(undetermined:new): DVD subtitle from VOB does not contain CodecPrivate data Message-ID: <035.4da9c6c6ca01b35c52739b2fd8fe6681@avcodec.org> #2035: DVD subtitle from VOB does not contain CodecPrivate data -------------------------------------+------------------------------------- Reporter: billie | Type: defect Status: new | Priority: normal Component: | Version: git- undetermined | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: When copying DVD subtitles from vob files into the matroska container the subtitles do not contain CodecPrivate data. The subtitles play fine in vlc but mkvtoolnix has problems with editing the file. The header editor recognizes all tracks but mkvextract fails to extract the subtitles because of the missing data (Error: Track 5 with the CodecID 'S_VOBSUB' is missing the "codec private" element and cannot be extracted.). Also editing the file with mmg/mkvmerge does not work because the existing subtitles are ignored and not written to the output file because of the same reason (Warning: matroska_reader: The CodecID for track 5 is 'S_VOBSUB', but there was no private data found). While I understand that the CodecPrivate data is not direct available when reading from VOB files as this information normally comes from the IDX part of extracted subtitles in vobsub format. However it would be nice if this information could be acquired somehow and written to the codec initialization part for the files to be editable by mkvtoolnix. This would save the additional step of extracting the subtitles to IDX/SUB. I guess that the ultimate solution would be to add a DVD reader who understands the dvd structure as I this information is stored in the IFO file. How to reproduce: {{{ % ffmpeg -i concat:VTS_01_1.VOB\|VTS_01_2.VOB\|VTS_01_3.VOB\|VTS_01_4.VOB \ -map 0:0 -map 0:1 -map 0:2 -map 0:6 -map 0:5 -map 0:4 \ -c:v libx264 -preset fast -crf 18 \ -c:a copy -metadata:s:a:0 language=ger \ -c:a copy -metadata:s:a:1 language=eng \ -c:s copy -metadata:s:s:0 language=eng \ -c:s copy -metadata:s:s:1 language=ger \ -c:s copy -metadata:s:s:2 language=ger \ -f matroska movie.mkv ffmpeg version N-47903-gde89dff built on Dec 16 2012 15:51:01 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 18:09:58 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 17:09:58 -0000 Subject: [FFmpeg-trac] #2032(avformat:new): mpeg2 bugs In-Reply-To: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> References: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> Message-ID: <051.38ab0401bfd8fa599ee5a23c22126cbf@avcodec.org> #2032: mpeg2 bugs ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by downuse): Replying to [comment:4 cehoyos]: > Could you tell me a version that works better than current git head? And please point us to the bug report that was (seemingly) ignored if I understand you correctly. https://ffmpeg.org/trac/ffmpeg/ticket/1487 this ticket is 6 month ago and it works the same. and after these 3 changes on 2012-10-30, 9 am {{{ 740959fdbfbf804ccd8a6e426b1b1ba321fe5cfb c349177b8cc0deb67df51ec1280c8e5a897a8067 4b7f34a34e4569228627c8954fab08a49203c89c }}} when use "-i 123.mpg", the video bitrate just don't show any more. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 18:18:34 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 17:18:34 -0000 Subject: [FFmpeg-trac] #2032(avformat:closed): mpeg2 bugs In-Reply-To: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> References: <036.86cae8a4e067876ff4dbb14d4d63a5e2@avcodec.org> Message-ID: <051.13cec95df7a26c0d724d131f710b2b27@avcodec.org> #2032: mpeg2 bugs ------------------------------------+------------------------------------- Reporter: downuse | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: duplicate Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => duplicate Comment: There are a few open questions in ticket #1487 - please answer them there, no need to open a new ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 19:29:33 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 18:29:33 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.6c5c880f3e092742c284f605456598fb@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by ami_stuff): Attached patch works for me (I couldn't get correct values while setting bit_rate). It looks like Amiga software calculates duration the same way: {{{ xlinfo fruit.cdxl XLInfo 1.10 by Pantaray, Inc. Ukiah CA Type Frame # Size Back Image Audio X Y Pixel CMap FIRST 1.0000 0000001 5552 0 5120 368 128 80 4 32 EST Total Frames: 150, Total Bytes 5552 out of 832800 Total Playing Time (at aprox. 27.68 FPS) Seconds: 05.42 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 19:45:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 18:45:42 -0000 Subject: [FFmpeg-trac] #2035(undetermined:new): DVD subtitle from VOB does not contain CodecPrivate data In-Reply-To: <035.4da9c6c6ca01b35c52739b2fd8fe6681@avcodec.org> References: <035.4da9c6c6ca01b35c52739b2fd8fe6681@avcodec.org> Message-ID: <050.eb67260451ae2a402da8531eb05e6ae4@avcodec.org> #2035: DVD subtitle from VOB does not contain CodecPrivate data -------------------------------------+------------------------------------- Reporter: billie | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Cigaes): I believe the messages from the Matroska tools are misleading. The extradata is not mandatory to read DVD subtitles. The problem with the subtitles is that they do not have the duration set, and therefore the resulting Matroska packets are considered invalid. I have submitted a patch to set the duration when doing stream copy (the duration is correctly set when transcoding), it is still awaiting review. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 21:18:02 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 20:18:02 -0000 Subject: [FFmpeg-trac] #2036(undetermined:new): AsyncTS filter non existent Message-ID: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> #2036: AsyncTS filter non existent -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: The asyncts filter doesn't exist in the default builds. Is this by design? According to the documentation this option doesn't appear to be deprecated. How to reproduce: {{{ ffmpeg.239-current -threads 0 -drc_scale 0.8 -y -i "test.ts" -ss 3 -vf yadif=0:-1,h qdn3d,crop=1280:720:0:0,scale=720:400 -vcodec mpeg4 -vtag xvid -b 1800000 -f avi -flags +mv4+aic -g 300 -dts_delta_thres hold 0 -acodec ac3 -ab 256k -ac 2 -af asyncts=compensate test.mp4 ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpegts @ 021ff700] Adjusting PTS forward Last message repeated 76 times Input #0, mpegts, from 'test.ts': Duration: 01:04:58.15, start: 1.400000, bitrate: 10731 kb/s Program 1 Metadata: service_name : WVLTDT (WVLT-DT) service_provider: WVLTDT Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fp s, 59.94 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, s16, 192 kb/s Please use -b:a or -b:v, -b is ambiguous [AVFilterGraph @ 03844a60] No such filter: 'asyncts' Error opening filters! }}} I'm trying to use this option because the audio is drifting out of sync with the video slowly over an hour. At the end of the hour the converted file has a 5 second audio drift. The original TS file has perfect audio video sync right through. Any ideas? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 22:00:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 21:00:42 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS Message-ID: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I have a lot of file (mostly DVRMS and TS) where FFMPEG is not able to get the correct frame rate. I'm attaching one such example which I've created using a binary cutter. As you can see it's reporting a rate of 25.58 where as MediaInfo is able to correctly determine the frame rate of ALL media files I provide it (in this case it showed 25). Any idea why ffmpeg is not able to determine the frame rate? This is creating a problem since while converting to mp4 the audio is slowly going of out sync with the video (upto 5 seconds after about an hour of recording). How to reproduce: {{{ ffmpeg.239-current.exe -i "Test DVRMS.dvr-ms" ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpeg2video @ 03489b20] interlaced frame in progressive sequence, ignoring [mpeg2video @ 03489b20] invalid frame_pred_frame_dct [mpeg2video @ 03489b20] slice below image (30 >= 30) [asf @ 002cae40] Estimating duration from bitrate, this may be inaccurate Input #0, asf, from 'Test DVRMS.dvr-ms': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording Duration: 00:00:01.62, start: 37.280000, bitrate: 10356 kb/s Stream #0:0: Video: mjpeg, yuvj420p, 200x200 [SAR 96:96 DAR 1:1], 90k tbr, 90k tbn, 90k tbc Metadata: title : TV Thumbnail comment : Movie/video screen capture Stream #0:1: Audio: mp2, 48000 Hz, stereo, s16, 256 kb/s Stream #0:2: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], 12000 kb/s, 25.58 fps , 25 tbr, 1k tbn, 50 tbc At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 22:18:20 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 21:18:20 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.c7ba5faebaf4da5e7f97561297b04518@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Here is another file that gets the framerate completely wrong (actual frame rate is 25fps which was again reported correctly by MediaInfo) but incorrectly by FFMPEG. I think this problem was reported in another ticket but marked resolved. Apparently the problem still exists. http://www.mediafire.com/?ojp54ym1mkaqkg4 {{{ ffmpeg.239-current.exe -i Test1.wtv ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [wtv @ 0033ae00] reported file length (0xb045eca0) exceeds number of available sectors (0x60000000) [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS referenced [h264 @ 02dd3a60] non-existing SPS 0 referenced in buffering period [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] non-existing PPS 0 referenced [h264 @ 02dd3a60] decode_slice_header error [h264 @ 02dd3a60] no frame! [h264 @ 02dd3a60] mmco: unref short failure Last message repeated 2 times Input #0, wtv, from 'Test1.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Doctor Who WM/SubTitle : 4/13. The Doctor's Wife WM/SubTitleDescription: Science fiction drama. When he follows a Time Lord distress signal, the Doctor puts Amy, Ror y and his beloved TARDIS in grave danger. [HD] [AD,S] genre : Entertainment - Sci-FI WM/OriginalReleaseTime: 0 WM/MediaCredits : ;;; service_provider: BBC One HD service_name : BBC One HD WM/MediaNetworkAffiliation: BBC One HD WM/MediaOriginalChannel: 143 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/MediaOriginalRunTime: 31093994141 WM/MediaIsStereo: false WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: false WM/WMRVEncodeTime: 2011-05-14 17:31:10 WM/WMRVSeriesUID: !GenericSeries!Doctor Who WM/WMRVServiceID: !DVBLinkService!37780000 WM/WMRVProgramID: !MCProgram!8162774324643977!dvblogiccppplugin:2:2050:6941!1305394200 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: false WM/WMRVDTVContent: true WM/WMRVHDContent: true Duration : 27526611328 WM/WMRVEndTime : 2011-05-14 18:17:03 WM/WMRVBitrate : 8.596867 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: 229 WM/WMRVActualSoftPostPadding: -176 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false Duration: 00:23:30.67, start: 1298.665362, bitrate: 356 kb/s Stream #0:0[0x29](eng): Subtitle: dvb_subtitle Stream #0:1[0x2a](eng): Subtitle: dvb_teletext Stream #0:2[0x2b](eng): Audio: ac3, 48000 Hz, 5.1(side), s16, 384 kb/s Stream #0:3[0x2c]: Video: h264 (High), yuv420p, 1440x1080 [SAR 4:3 DAR 16:9], 25 fps, 50 tbr, 10000k tbn, 50 tbc Stream #0:4[0x2d](nar): Audio: mp2 (P[0][0][0] / 0x0050), 48000 Hz, stereo, s16, 256 kb/s (visual impaired) At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 22:19:57 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 21:19:57 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.1536c730f038f0e9a4429c03cc23de26@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Apologies, please ignore my last post - the WTV is being reported correctly as 25FPS. Question is why is the tbr reported as 50? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 22:32:27 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 21:32:27 -0000 Subject: [FFmpeg-trac] #2038(undetermined:new): Request for ffmpeg being able to join multiple files Message-ID: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: Status: new | enhancement Component: | Priority: normal undetermined | Version: Keywords: | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the enhancement request: FFMPEG is currently able to create multiple files by splitting an existing file using the segment option. However there is no option to be able to join the segments back into a single file. Perhaps there can be a way (like concat for MPEGTS files) to be able to specify multiple file inputs and join the video and audio tracks to create a single output file. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 16 23:51:12 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 22:51:12 -0000 Subject: [FFmpeg-trac] #2038(undetermined:new): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.9d6bb2a04fab873052e7d71dee41c2a2@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => concat Comment: Could you explain (= show an example command line including complete, uncut console output) why this is not possible with the concat protocol, the concat filter or the concat demuxer? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 00:01:30 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 23:01:30 -0000 Subject: [FFmpeg-trac] #2036(undetermined:new): AsyncTS filter non existent In-Reply-To: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> References: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> Message-ID: <055.2c30b257039e5962b662214786648cc5@avcodec.org> #2036: AsyncTS filter non existent -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [ticket:2036 ramitbhalla]: > Summary of the bug: The asyncts filter doesn't exist in the default builds. Is this by design? Yes, please use aresample. [...] > I'm trying to use this option because the audio is drifting out of sync with the video slowly over an hour. At the end of the hour the converted file has a 5 second audio drift. The original TS file has perfect audio video sync right through. Any ideas? Yes, please provide the sample and post your (minimal!) command line together with complete, uncut console output into a new ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 00:17:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 23:17:51 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.b82509cc55d07aeb824d32587545874b@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): You could use the frame-counter in "AV_RB16(&cdxl->header[12]);" (I don't know if it is better, but it is possible). What happens if the user set the framerate? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 00:42:21 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 16 Dec 2012 23:42:21 -0000 Subject: [FFmpeg-trac] #2036(undetermined:new): AsyncTS filter non existent In-Reply-To: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> References: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> Message-ID: <055.a56bb5bd1df3012b54d956ed0b0c025b@avcodec.org> #2036: AsyncTS filter non existent -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): I've solved the problem with the audio sync, that was due to the -ss coming after the -i which was causing the audio sync issue. I had reported that separately and hope it'll be fixed with the Dec 13th build once it's released by Zeronae. Perhaps the documentation can be updated regarding asyncts being deprecated. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 01:20:57 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 00:20:57 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.ca6acdc3121897bb5ac0b2e4482fc941@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I cannot reproduce the problem but I did not check all 1000 frames;-( Please provide a failing command line with "-vframes 1" or at least significantly less than 1000, and please provide the console output: It will probably not help, but since I cannot reproduce the problem, it could be useful. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 01:26:12 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 00:26:12 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.10d7ab6252f257e7d7274924b594ec13@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by cehoyos): Replying to [comment:8 ramitbhalla]: > When you say run "ffmpeg -i test1.ts", what exactly am I looking for in the output? The output looks the same for the working version and the broken version of ffmpeg. I don't think so / complete, uncut console output missing. > However it's the WMP player that unable to play. You mean the file that you produced with 2f74f8d and that does not play with WMP decodes fine with ffmpeg? It did not work for me. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 02:03:09 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 01:03:09 -0000 Subject: [FFmpeg-trac] #1865(avformat:closed): sctp.c: abort() call can be hit by bad user input In-Reply-To: <038.cedcb2dfef34319107e86bdf9b4f91ca@avcodec.org> References: <038.cedcb2dfef34319107e86bdf9b4f91ca@avcodec.org> Message-ID: <053.243b3a4d5519c96ba1653f8a7fdec09b@avcodec.org> #1865: sctp.c: abort() call can be hit by bad user input -------------------------------------+------------------------------------- Reporter: divVerent | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: fixed Keywords: crash abort | Blocked By: sctp | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 03:32:20 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 02:32:20 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.225acfe61fa270f5ebdae69a48552da1@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by ramitbhalla): That's correct, when play test1.ts in WMP 12, I get no audio, in between there are a few squeaks but no audio for the most. When I run the command, here is what get: ffmpeg.239-current.exe -i test1.ts {{{ ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpegts @ 01f5ae00] max_analyze_duration 5000000 reached at 5000000 [mpegts @ 01f5ae00] Could not find codec parameters for stream 1 (Audio: mp3 ([3][0][0][0] / 0x0003), 0 channels, s16): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options [NULL @ 02c932e0] start time is not set in estimate_timings_from_pts Input #0, mpegts, from 'test1.ts': Duration: 00:00:14.16, start: 2.300356, bitrate: 4191 kb/s Program 1 Metadata: service_name : Service01 service_provider: FFmpeg Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x101](eng): Audio: mp3 ([3][0][0][0] / 0x0003), 0 channels, s16 At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 07:04:11 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 06:04:11 -0000 Subject: [FFmpeg-trac] #1487(avformat:new): ffmpeg's mpeg mux bug(s) never fixed... In-Reply-To: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> References: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> Message-ID: <051.ddd218e724a5703ac751dcec6dc55542@avcodec.org> #1487: ffmpeg's mpeg mux bug(s) never fixed... -------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: mpeg | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by downuse): Replying to [comment:4 michael]: > which DVD player exactly ? > what happens if its played on such DVD player ? > is this a regression (that is did it work with older ffmpeg) ? it is black screen but has sound. i learned a lot and found that it is because the muxrate is too large. > what do you mean by delay ? delay of audio vs video content, of timestamps, of ? > if its about timestamps please quote the timestamps that are wrong and please explain why you think they are wrong. A reference to a specific section of a specification would be best. the scr is always begin with 28616 either than 0,i mean the first timestamp is 00:00:00.50 not 00:00:00.00 > what muxrate did you specify, what was stored, what did you expect? what tool did you use to see its wrong. i didn't use "-muxrate" and the default muxrate estimating is not correct. when use "-muxrate", it is correct. > > 3. i think the PCR is also buged, it's not begin with 0, the SCR base is not begin with 0, either. not PCR, i mean SCR system clock reference base -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 07:05:55 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 06:05:55 -0000 Subject: [FFmpeg-trac] #1487(avformat:new): ffmpeg's mpeg mux bug(s) never fixed... In-Reply-To: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> References: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> Message-ID: <051.630043728e66827d78695f578ca9ccc7@avcodec.org> #1487: ffmpeg's mpeg mux bug(s) never fixed... ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpeg | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by downuse): * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 08:47:43 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 07:47:43 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.0eb92f3951969539872ca983f556a1fd@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by doublemax): Sorry. The first five images are fine, the last 15 images are damaged. This happens only on Centos6 64bit (Centos6 32bit is fine): {{{ ffmpeg -i regression.flv -f image2 -r 1 -vcodec mjpeg -vframes 20 -qscale 1 %d.jpg ffmpeg version N-47885-g718eab5 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 16 2012 10:26:35 with gcc 4.4.6 (GCC) 20120305 (Red Hat 4.4.6-4) configuration: --prefix=/usr/local --enable-gpl --enable-version3 --enable-nonfree --enable-bzlib --enable-zlib --enable-libx264 --enable- libfaac --enable-libvo-aacenc --enable-libaacplus --enable-libmp3lame --enable-libcelt --enable-libspeex libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, flv, from 'regression.flv': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : Duration: 00:08:51.63, start: 0.000000, bitrate: 944 kb/s Stream #0:0: Video: h264 (Main), yuv420p, 640x480, 826 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, fltp, 131 kb/s Please use -q:a or -q:v, -qscale is ambiguous Output #0, image2, to '%d.jpg': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : encoder : Lavf54.49.102 Stream #0:0: Video: mjpeg, yuvj420p, 640x480, q=2-31, 200 kb/s, 90k tbn, 1 tbc Stream mapping: Stream #0:0 -> #0:0 (h264 -> mjpeg) Press [q] to stop, [?] for help Error while decoding stream #0:0: Operation not permitted Last message repeated 274 times frame= 20 fps=0.0 q=0.0 Lsize= 0kB time=00:00:20.00 bitrate= 0.0kbits/s dup=0 drop=118 video:1086kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 11:07:06 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 10:07:06 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.9cdab484ea75c5b7d08bc19dfedbeda5@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by cehoyos): Replying to [comment:10 ramitbhalla]: > {{{ > Stream #0:1[0x101](eng): Audio: mp3 ([3][0][0][0] / 0x0003), 0 channels, s16 > }}} This does not look like an audio stream that FFmpeg can decode and should answer the question what you are looking for in the console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 11:20:00 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 10:20:00 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.36973bb33bc4842424e42a459b69415f@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Does it work with an output codec different from jpg? (png) Or even better, could you confirm that the following looks different for you for frames 5 - 19? Do you still see the "Operation not permitted" error? {{{ $ ffmpeg -i regression.flv -vframes 20 -f framecrc -an - ffmpeg version N-47885-g718eab5 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 17 2012 11:10:35 with gcc 4.7 (SUSE Linux) configuration: libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 Input #0, flv, from 'regression.flv': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : Duration: 00:08:51.63, start: 0.000000, bitrate: 944 kb/s Stream #0:0: Video: h264 (Main), yuv420p, 640x480, 826 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, fltp, 131 kb/s #tb 0: 1001/30000 Output #0, framecrc, to 'pipe:': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : encoder : Lavf54.49.102 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 640x480, q=2-31, 200 kb/s, 29.97 tbn, 29.97 tbc Stream mapping: Stream #0:0 -> #0:0 (h264 -> rawvideo) Press [q] to stop, [?] for help 0, 0, 0, 1, 460800, 0xe0dfe574 0, 1, 1, 1, 460800, 0x98c2e5b9 0, 2, 2, 1, 460800, 0x809ecc4c 0, 3, 3, 1, 460800, 0x1b76597d 0, 4, 4, 1, 460800, 0xc399d81f 0, 5, 5, 1, 460800, 0x53e31a66 0, 6, 6, 1, 460800, 0x8bb83b7d 0, 7, 7, 1, 460800, 0xb0b4e300 0, 8, 8, 1, 460800, 0xeaa7f61b 0, 9, 9, 1, 460800, 0x8102c27c 0, 10, 10, 1, 460800, 0x2d1bb952 0, 11, 11, 1, 460800, 0xe48ef614 0, 12, 12, 1, 460800, 0x099458be 0, 13, 13, 1, 460800, 0xdf650aec 0, 14, 14, 1, 460800, 0xad449ba9 0, 15, 15, 1, 460800, 0xad166d82 0, 16, 16, 1, 460800, 0x8a0c7910 0, 17, 17, 1, 460800, 0x14a48d50 0, 18, 18, 1, 460800, 0x05b966fd 0, 19, 19, 1, 460800, 0x2a5753a3 frame= 20 fps=0.0 q=0.0 Lsize= 1kB time=00:00:00.66 bitrate= 14.1kbits/s video:9000kB audio:0kB subtitle:0 global headers:0kB muxing overhead -99.987218% }}} To narrow down the reason for the problem, you could either test "./configure && make", "./configure --disable-yasm && make", "./configure --disable-asm && make" and "./configure --disable-optimizations && make" or try with an older version of ffmpeg (assuming there is one that works) and use git bisect to find the change introducing the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 11:31:58 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 10:31:58 -0000 Subject: [FFmpeg-trac] #1487(avformat:new): ffmpeg's mpeg mux bug(s) never fixed... In-Reply-To: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> References: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> Message-ID: <051.26072bc9a73b01f02582b82f3a020499@avcodec.org> #1487: ffmpeg's mpeg mux bug(s) never fixed... ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: mpeg => mpegps -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 12:18:18 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 11:18:18 -0000 Subject: [FFmpeg-trac] #2039(FFprobe:new): ONVIF metadata read failure in Avigilon camera? Message-ID: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? ---------------------------------+-------------------------------------- Reporter: ati | Type: defect Status: new | Priority: normal Component: FFprobe | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+-------------------------------------- I have an "Avigilon 2.0MP-HD-H264-B1" h264 camera, and I cannot get the rtsp video stream from it, due to some errors. Maybe the errors come from the ONVIF metadata stream. I`ve attached the output file of the command: $ ffprobe -report rtsp://admin:admin at 192.168.0.213/defaultPrimary -I've tried this also, but the result is the same: $ ffprobe -report -analyzeduration 100000000 -probesize 2000000000 rtsp://admin:admin at 192.168.0.213/defaultPrimary -The camera works well with VLC. -Could be the problem from the Stream #0:2 which is a data stream? The camera sends ONVIF xml texts in this stream. -When I try to play that stream with Totem(2.30.2), it gives this error (maybe this is helpful): "The playback of this movie requires a VND.ONVIF.METADATA RTP depayloader plugin which is not installed." ---------------------------------------------------------------------------------------- $ ffprobe -report rtsp://admin:admin at 192.168.0.213/defaultPrimary ffprobe started on 2012-12-17 at 11:56:34 Report written to "ffprobe-20121217-115634.log" Command line: ffprobe -report rtsp://admin:admin at 192.168.0.213/defaultPrimary ffprobe version N-47911-g2e59142 Copyright (c) 2007-2012 the FFmpeg developers built on Dec 17 2012 11:42:48 with gcc 4.4.5 (Debian 4.4.5-8) configuration: --enable-shared --disable-static libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 [rtsp @ 0x806a3a0] SDP: v=0 o=- 1293840018232 1293840018232 IN IP4 192.168.0.213 s=Live t=0 0 m=audio 0 RTP/AVP 0 c=IN IP4 192.168.0.213 c=IN IP4 224.3.3.5 a=control:rtsp://192.168.0.213/defaultPrimary/mic0/trackID=1 m=video 0 RTP/AVP 96 c=IN IP4 192.168.0.213 c=IN IP4 224.3.3.3 a=control:rtsp://192.168.0.213/defaultPrimary/cam0/trackID=1 a=fmtp:96 packetization-mode=0; profile-level-id=42A01E; sprop-parameter- sets=J01AH42NKBaHt/4AQAA21BgYGQAAAwPoAADDUOhAB08AAQcau8uNCADp4AAg41d5cE+iwA==,KO48gA== a=rtpmap:96 H264/90000 a=x-avg-params:96 source-height=1080; source-width=1920 m=application 0 RTP/AVP 98 c=IN IP4 192.168.0.213 c=IN IP4 224.3.3.6 a=control:rtsp://192.168.0.213/defaultPrimary/metadata/trackID=1 a=rtpmap:98 vnd.onvif.metadata/90000 [rtsp @ 0x806a3a0] video codec set to: h264 [rtsp @ 0x806a3a0] hello state=0 [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! ... [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [rtsp @ 0x806a3a0] Non-increasing DTS in stream 2: packet 7 with DTS 39728541624, packet 8 with DTS 39728541624 [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! ... [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [rtsp @ 0x806a3a0] Non-increasing DTS in stream 2: packet 14 with DTS 39728631913, packet 15 with DTS 39728631913 [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! ... [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [rtsp @ 0x806a3a0] Non-increasing DTS in stream 2: packet 21 with DTS 39728722438, packet 22 with DTS 39728722438 [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! ... [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [rtsp @ 0x806a3a0] Non-increasing DTS in stream 2: packet 29 with DTS 39728812454, packet 30 with DTS 39728812454 [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! ... [h264 @ 0x8078b80] non-existing PPS referenced [h264 @ 0x8078b80] non-existing PPS 0 referenced [h264 @ 0x8078b80] decode_slice_header error [h264 @ 0x8078b80] no frame! [rtsp @ 0x806a3a0] max_analyze_duration 5000000 reached at 5000000 [rtsp @ 0x806a3a0] decoding for stream 1 failed [rtsp @ 0x806a3a0] Could not find codec parameters for stream 1 (Video: h264): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options [rtsp @ 0x806a3a0] Estimating duration from bitrate, this may be inaccurate [rtsp @ 0x806a3a0] Ignoring outlier non primary stream starttime 441427.197411 Input #0, rtsp, from 'rtsp://admin:admin at 192.168.0.213/defaultPrimary': Metadata: title : Live Duration: N/A, start: 536870.733375, bitrate: 64 kb/s Stream #0:0, 252, 1/8000: Audio: pcm_mulaw, 8000 Hz, 1 channels, s16, 64 kb/s Stream #0:1, 123, 1/90000: Video: h264, 90k tbr, 90k tbn, 180k tbc Stream #0:2, 35, 1/90000: Data: none [h264 @ 0x8078b80] detected 2 logical cores Unsupported codec with id 0 for input stream 2 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 12:25:13 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 11:25:13 -0000 Subject: [FFmpeg-trac] #2039(undetermined:new): ONVIF metadata read failure in Avigilon camera? In-Reply-To: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> References: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> Message-ID: <047.791af3ad16bf88dfc6186126910ca554@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? -------------------------------------+------------------------------------- Reporter: ati | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: rtsp h264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => rtsp h264 * component: FFprobe => undetermined Comment: Is this really only reproducible with ffprobe or also with "ffmpeg -i ..."? (ie, does ffmpeg also only show "Video: h264, 90k tbr, 90k tbn, 180k tbc" without resolution, colour space etc.?) You should only provide ffprobe output for specific ffprobe tickets, for all problems that are reproducible with ffmpeg, ffplay, etc. only ffmpeg output is needed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 12:57:31 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 11:57:31 -0000 Subject: [FFmpeg-trac] #1937(undetermined:open): cdxl: wrong duration In-Reply-To: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> References: <038.76e39beabc707ba6ff0dc76ce105ed48@avcodec.org> Message-ID: <053.1c1d3125d21613f11016fb84df509795@avcodec.org> #1937: cdxl: wrong duration -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: cdxl | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by ami_stuff): Replying to [comment:7 cehoyos]: > You could use the frame-counter in "AV_RB16(&cdxl->header[12]);" (I don't know if it is better, but it is possible). This value changes to random number at probing. (for example when you use -framerate 5 then it will change to 28 from 150) > What happens if the user set the framerate? I fixed this case - patch sent to ml. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 13:41:48 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 12:41:48 -0000 Subject: [FFmpeg-trac] #2039(undetermined:new): ONVIF metadata read failure in Avigilon camera? In-Reply-To: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> References: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> Message-ID: <047.35e3fb7a84ddf269f926fe51231d1ab3@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? -------------------------------------+------------------------------------- Reporter: ati | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: rtsp h264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ati): Yes, you are right, I can reproduce this with "ffmpeg -i .." also. Further, when I try with own software using libav*, the above message issued when executing avformat_find_stream_info() function. The message is the same in all 3 cases, and it only show "Video: h264, 90k tbr, 90k tbn, 180k tbc" without other parameters. When I try with own software, after getting the above messages, I can read the 3 streams (audio, video, data) with av_read_frame(). The audio seems OK, at least by the frame size. The data stream is a correct xml stream. The frame sizes of the video stream seems OK also, but gives errors when executing avcodec_decode_video2(), but I think the problem is before this stage, around avformat_find_stream_info(). I can send the first video frame (which is an I frame) getted by av_read_frame(), if it helps. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 14:08:11 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 13:08:11 -0000 Subject: [FFmpeg-trac] #2040(undetermined:new): mjpeg enc yuvj444p: broken output Message-ID: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> #2040: mjpeg enc yuvj444p: broken output -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- maybe because width (the same problem happens with height) is not dividable by 16 {{{ C:\>ffmpeg -i 642.png out.jpg ffmpeg version N-47909-g7973a07 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 17 2012 02:36:52 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from '642.png': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: png, rgb24, 642x480 [SAR 2835:2835 DAR 107:80], 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.jpg': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mjpeg, yuvj444p, 642x480 [SAR 1:1 DAR 107:80], q=2-31, 2 00 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (png -> mjpeg) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=5.7 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:47kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 14:29:19 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 13:29:19 -0000 Subject: [FFmpeg-trac] #2040(avcodec:new): mjpeg enc yuvj444p: broken output In-Reply-To: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> References: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> Message-ID: <053.05824c179a79f0a579ad39eee3c22e0c@avcodec.org> #2040: mjpeg enc yuvj444p: broken output -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => mjpeg * component: undetermined => avcodec Comment: Isn't this a duplicate of ticket #1990? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 14:30:59 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 13:30:59 -0000 Subject: [FFmpeg-trac] #2039(undetermined:new): ONVIF metadata read failure in Avigilon camera? In-Reply-To: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> References: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> Message-ID: <047.8c3934377933120bd7050ec95f48c2e0@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? -------------------------------------+------------------------------------- Reporter: ati | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: rtsp h264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I don't know if it helps, but please provide the first few frames. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 14:41:43 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 13:41:43 -0000 Subject: [FFmpeg-trac] #2040(avcodec:new): mjpeg enc yuvj444p: broken output In-Reply-To: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> References: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> Message-ID: <053.deb1c55a32ed591cb189d9f6760ed00c@avcodec.org> #2040: mjpeg enc yuvj444p: broken output -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by ami_stuff): Replying to [comment:1 cehoyos]: > Isn't this a duplicate of ticket #1990? Not exactly, now jpeg created by ffmpeg decodes in other apps (that was not the case in #1990), but the output is broken for sizes not dividable (probably) by 16. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 14:57:47 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 13:57:47 -0000 Subject: [FFmpeg-trac] #2039(FFprobe:new): ONVIF metadata read failure in Avigilon camera? In-Reply-To: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> References: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> Message-ID: <047.c0dd289b7c92723bc8672fe98ce3eec8@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? ------------------------------------+----------------------------------- Reporter: ati | Owner: Type: defect | Status: new Priority: normal | Component: FFprobe Version: git-master | Resolution: Keywords: rtsp h264 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by ati): * component: undetermined => FFprobe Comment: I've attached avigilon.fr[0..3] frames. The first and the third are I frames, since I set the I frame interval to 2 in the camera. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 15:00:21 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 14:00:21 -0000 Subject: [FFmpeg-trac] #2039(undetermined:new): ONVIF metadata read failure in Avigilon camera? In-Reply-To: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> References: <032.644afa8d6876495d4b2c0dc73883f13f@avcodec.org> Message-ID: <047.43f3065121290e6e4f230a9096d106ee@avcodec.org> #2039: ONVIF metadata read failure in Avigilon camera? -------------------------------------+------------------------------------- Reporter: ati | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: rtsp h264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by ati): * component: FFprobe => undetermined -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 15:52:17 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 14:52:17 -0000 Subject: [FFmpeg-trac] #2034(undetermined:new): -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" In-Reply-To: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> References: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> Message-ID: <059.e89857d3c5e9364698ac64a16251ffb5@avcodec.org> #2034: -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" -------------------------------------+------------------------------------- Reporter: | Owner: ivan.todorovich | Status: new Type: defect | Component: Priority: normal | undetermined Version: unspecified | Resolution: Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by saste): Unreproducible here, please attach the failing input file. Also you may try with the latest version (current is around N-47330). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 16:24:24 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 15:24:24 -0000 Subject: [FFmpeg-trac] #2034(undetermined:new): -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" In-Reply-To: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> References: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> Message-ID: <059.e33e22fa89076516315e674b27edbecb@avcodec.org> #2034: -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" -------------------------------------+------------------------------------- Reporter: | Owner: ivan.todorovich | Status: new Type: defect | Component: Priority: normal | undetermined Version: unspecified | Resolution: Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by burek): I don't know if this is relevant, but did you notice: {{{ Output #0, segment, to 'outC:\Users\User\Desktop\ffmpeg segmeter.bat3d.ts': }}} It doesn't seem like a valid output to me. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 16:45:45 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 15:45:45 -0000 Subject: [FFmpeg-trac] #1087(avcodec:open): support decoding the CineForm codec In-Reply-To: <036.87b15287504b373c57c55b791ae5a8ae@avcodec.org> References: <036.87b15287504b373c57c55b791ae5a8ae@avcodec.org> Message-ID: <051.391bfd8002b1cc5ba324219ab7ee397e@avcodec.org> #1087: support decoding the CineForm codec -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: CFHD, | Blocked By: CineForm | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by leandroprz): I contacted Cineform support and they replied back: =========== Thank you for you interest in Cineform. Please would you provide some more details of your project ? =========== I'm no developer so I don't know what to reply. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 18:30:34 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 17:30:34 -0000 Subject: [FFmpeg-trac] #2026(avformat:closed): [PATCH] SAP muxer SDP session name not set In-Reply-To: <035.9d8ab23c83b04fa49e021662e9f70742@avcodec.org> References: <035.9d8ab23c83b04fa49e021662e9f70742@avcodec.org> Message-ID: <050.7a4140897c5b2a8bca58bf3739884a5f@avcodec.org> #2026: [PATCH] SAP muxer SDP session name not set -------------------------------------+------------------------------------ Reporter: mavrik | Owner: Type: enhancement | Status: closed Priority: wish | Component: avformat Version: git-master | Resolution: fixed Keywords: sdp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => fixed Comment: The patch was applied. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 22:10:47 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 21:10:47 -0000 Subject: [FFmpeg-trac] #1087(avcodec:open): support decoding the CineForm codec In-Reply-To: <036.87b15287504b373c57c55b791ae5a8ae@avcodec.org> References: <036.87b15287504b373c57c55b791ae5a8ae@avcodec.org> Message-ID: <051.56e542eb7c678b277d8ca588bb4b72b1@avcodec.org> #1087: support decoding the CineForm codec -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: CFHD, | Blocked By: CineForm | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by compn): tell them you want cineform cfhd decoding support in the ffmpeg project. http://www.ffmpeg.org that may answer their questions. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 17 23:52:23 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 22:52:23 -0000 Subject: [FFmpeg-trac] #2034(undetermined:closed): -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" In-Reply-To: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> References: <044.99210b4d617c650bfdcb546fd5e88b98@avcodec.org> Message-ID: <059.128c26bdd56582b10fcc2e20e4a8e9bc@avcodec.org> #2034: -f segment fails with "Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument" -------------------------------------+------------------------------------- Reporter: | Owner: ivan.todorovich | Status: closed Type: defect | Component: Priority: normal | undetermined Version: unspecified | Resolution: invalid Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------- Changes (by saste): * analyzed: 0 => 1 * status: new => closed * resolution: => invalid Comment: Replying to [comment:2 burek]: > I don't know if this is relevant, but did you notice: > {{{ > Output #0, segment, to 'outC:\Users\User\Desktop\ffmpeg segmeter.bat3d.ts': > }}} > > It doesn't seem like a valid output to me. > > If you are using the BAT file to start your ffmpeg, please take note that %0 represents a variable for BAT file (containing the file name of the running batch file), so it might be the cause of your issue. Definitively this is not a segment-related bug, closing as invalid, please reopen if you think it is not. > Also the error returned by the ffmpeg could have been a little bit more precise, like "Cannot open file %s for writting", which would immediately show what's the issue. Yes. This is historically due to the protocols not having a log context, this should be improved but it is clearly a separate issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 00:12:43 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 23:12:43 -0000 Subject: [FFmpeg-trac] #2036(documentation:open): AsyncTS filter non existent In-Reply-To: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> References: <040.001461f5d279e6c8705cd580aec4c5ad@avcodec.org> Message-ID: <055.00b80a564add42a6a2a88187e3a361bd@avcodec.org> #2036: AsyncTS filter non existent -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: minor | Component: Version: git-master | documentation Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => minor * status: new => open * version: unspecified => git-master * component: undetermined => documentation * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 00:22:48 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 23:22:48 -0000 Subject: [FFmpeg-trac] #2040(avcodec:open): mjpeg enc yuvj444p: broken output In-Reply-To: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> References: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> Message-ID: <053.0d55227ca9645b792231d096375b490b@avcodec.org> #2040: mjpeg enc yuvj444p: broken output -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mjpeg => mjpeg regression * priority: normal => important * version: unspecified => git-master * status: new => open * reproduced: 0 => 1 Comment: The output image looks very broken with ffplay, ImageMagick and Gimp, from a user's perspective this is a regression. {{{ $ ffmpeg -i tests/lena.pnm -s 241x241 out.jpg ffmpeg version N-47937-g85e6f6d Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 00:11:55 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'tests/lena.pnm': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: ppm, rgb24, 256x256, 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.jpg': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mjpeg, yuvj444p, 241x241, q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (ppm -> mjpeg) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/s video:15kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 00:25:49 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 23:25:49 -0000 Subject: [FFmpeg-trac] #2029(avformat:open): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.f750cffcd0081d3b9d7f049a012ca8f3@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: mxf | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => important -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 00:29:34 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 23:29:34 -0000 Subject: [FFmpeg-trac] #1977(avdevice:closed): dshow hang when device is unplugged In-Reply-To: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> References: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> Message-ID: <051.c8f2fb9575105f35a0c7d3f271d6ff8a@avcodec.org> #1977: dshow hang when device is unplugged -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: avdevice Version: unspecified | Resolution: fixed Keywords: win dshow | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => fixed Comment: Ramiro applied a fix that was based on this ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 00:49:24 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 17 Dec 2012 23:49:24 -0000 Subject: [FFmpeg-trac] #2040(avcodec:closed): mjpeg enc yuvj444p: broken output In-Reply-To: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> References: <038.8cf15b6f1bc6924ad50caf60355fe627@avcodec.org> Message-ID: <053.153d90cd01c21070464c59cb184e05ff@avcodec.org> #2040: mjpeg enc yuvj444p: broken output -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 01:40:17 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 00:40:17 -0000 Subject: [FFmpeg-trac] #1977(avdevice:closed): dshow hang when device is unplugged In-Reply-To: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> References: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> Message-ID: <051.e7264c77e120724b3cad362f6872f64e@avcodec.org> #1977: dshow hang when device is unplugged -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: avdevice Version: unspecified | Resolution: fixed Keywords: win dshow | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by DonMoir): Thanks, vfwcap.c may have similar problems but most likely I won't be dealing with that so vfwcap.c will go untested. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 01:46:48 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 00:46:48 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.62a7aadeaa9703840a4de001a41a68bf@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by ami_stuff): * cc: ami_stuff@? (added) Comment: Attached hack fixes the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 02:00:01 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 01:00:01 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.296092a77d14814669cae29ac2814599@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Could your patch break ATRAC decoding? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 02:23:00 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 01:23:00 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.2f618278ff9efe5366c42813335ee1de@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ami_stuff): yes it breaks atrac3 in version 5 cointainer: http://www.datafilehost.com/download-d27069ba.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 09:46:42 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 08:46:42 -0000 Subject: [FFmpeg-trac] #2041(avcodec:new): Artefacts when encoding to yuvj444p mjpeg Message-ID: <036.5a8e3482801f115ce483fa92c6f82664@avcodec.org> #2041: Artefacts when encoding to yuvj444p mjpeg -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git- | Keywords: mjpeg master | regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- The output file shows purple artefacts, from a user's perspective, this is a regression. {{{ $ ffmpeg -i tests/lena.pnm -s 254x254 out.jpg ffmpeg version N-47942-g8b63744 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 09:40:55 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 27.102 / 3. 27.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'tests/lena.pnm': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: ppm, rgb24, 256x256, 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.jpg': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mjpeg, yuvj444p, 254x254, q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (ppm -> mjpeg) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/s video:15kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 11:41:30 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 10:41:30 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.35c2360267bd6a038c61128911c3e404@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Could you test attached patch? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 12:47:26 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 11:47:26 -0000 Subject: [FFmpeg-trac] #1557(avformat:open): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.2047414375f60873e00082b71c623c9d@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ami_stuff): Replying to [comment:8 cehoyos]: > Could you test attached patch? Works fine with my samples. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 12:58:22 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 11:58:22 -0000 Subject: [FFmpeg-trac] #1793(undetermined:new): Widevine support In-Reply-To: <039.05ea1d676c05fd1f55c9d4bc8743c75a@avcodec.org> References: <039.05ea1d676c05fd1f55c9d4bc8743c75a@avcodec.org> Message-ID: <054.7bba9dbc088c7f4ba4c34d448adfd7fd@avcodec.org> #1793: Widevine support -------------------------------------+------------------------------------- Reporter: benito2313 | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: unspecified | undetermined Keywords: Widevine | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by vehka): This old discussion talks about a Samsung patch for widevine: http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-December/062689.html Is this of any use? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 13:11:41 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 12:11:41 -0000 Subject: [FFmpeg-trac] #744(avcodec:open): tweak i263 pb-frames support to eliminate graphic corruption In-Reply-To: <038.19f63f19b2bf659e142abf5a74291ce2@avcodec.org> References: <038.19f63f19b2bf659e142abf5a74291ce2@avcodec.org> Message-ID: <053.859419c77c90108ed0b73385b8008b6f@avcodec.org> #744: tweak i263 pb-frames support to eliminate graphic corruption ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: minor | Component: avcodec Version: git-master | Resolution: Keywords: h263i | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * priority: normal => minor -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 14:25:21 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 13:25:21 -0000 Subject: [FFmpeg-trac] #2025(avformat:open): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.6923e871e85e4253580ce0923ac8746c@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by pross): Fixed, and >2GB file tested on Windows Media Centre. Note: Windows Media Centre complains when the .wtv file does not contain an audio track. I will look into this separately. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 14:26:17 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 13:26:17 -0000 Subject: [FFmpeg-trac] #2025(avformat:open): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.a62f1bc34dad1b1a3b3e6f1372133879@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: pross Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by pross): * owner: => pross -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 15:27:31 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 14:27:31 -0000 Subject: [FFmpeg-trac] #2025(avformat:closed): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.11b843a1a2ccb28a620a69fbef4c6c99@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: pross Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 23:02:45 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 22:02:45 -0000 Subject: [FFmpeg-trac] #1977(avdevice:closed): dshow hang when device is unplugged In-Reply-To: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> References: <036.bbc8d9fd600f0c4f5c4495c09c3890c0@avcodec.org> Message-ID: <051.abb9a21a47734eff02bfa5627e876399@avcodec.org> #1977: dshow hang when device is unplugged -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: avdevice Version: unspecified | Resolution: fixed Keywords: win dshow | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by rogerdpack): I haven't been porting any dshow changes to vfwcap, either... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 18 23:06:51 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 22:06:51 -0000 Subject: [FFmpeg-trac] #1557(avformat:closed): support old sipr in rm In-Reply-To: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> References: <036.b8592fb68fdf163c361418a7c2a3cd20@avcodec.org> Message-ID: <051.7e80abd15d6e05ff4874e73e371f2fad@avcodec.org> #1557: support old sipr in rm -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: real sipr | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Thank you for testing! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 00:51:12 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 23:51:12 -0000 Subject: [FFmpeg-trac] #2042(avformat:new): av_find_best_stream fails to find best stream for included file Message-ID: <036.795087a67874ee36b02f032eb108b927@avcodec.org> #2042: av_find_best_stream fails to find best stream for included file ----------------------------------+--------------------------------------- Reporter: DonMoir | Type: defect Status: new | Priority: normal Component: avformat | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+--------------------------------------- http://sms.pangolin.com/temp/av_find_best_stream_fails.ts The above file has 9 streams and 4 programs. All the video streams have AVCodecContext.bit_rate set to zero. So if you use av_find_best_stream to find the video stream it returns 0 which is the worst stream. The 0 stream has a related audio stream which has a sample_rate of 0. For this file, if you first find the best audio stream and then find the related video file it works as expected finding a descent audio and video stream. Typically I don't use av_find_best_stream but I noticed that it had changed so ran some test on it. Probably when a file has programs, av_find_best_stream needs to look thru the programs and analyze the streams for both audio and video independent of the type passed to av_find_best_stream to find the actual best stream. Appears to be a cut file but represents a case that can probably happen. ffplay av_find_best_stream_fails.ts ffplay version N-47062-g26c531c Copyright (c) 2003-2012 the FFmpeg developers built on Nov 25 2012 12:23:20 with gcc 4.7.2 (GCC) configuration: --disable-static --enable-shared --enable-gpl --enable- version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable- libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 9.100 / 52. 9.100 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.102 / 3. 23.102 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011b5240] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 1 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011b5240] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 2 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 1 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 2 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 2 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 1 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure Last message repeated 1 times [mpeg2video @ 011f38c0] mpeg_decode_postinit() failure [mpeg2video @ 01184b20] mpeg_decode_postinit() failure [mpegts @ 011608e0] Stream #1: not enough frames to estimate rate; consider incr easing probesize [mpegts @ 011608e0] Stream #8: not enough frames to estimate rate; consider incr easing probesize [mpegts @ 011608e0] Could not find codec parameters for stream 1 (Audio: ac3 (AC -3 / 0x332D4341), 0 channels, s16): unspecified sample rate Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 011608e0] Could not find codec parameters for stream 8 (Audio: ac3 (AC -3 / 0x332D4341), 0 channels): unspecified sample format Consider increasing the value for the 'analyzeduration' and 'probesize' options [NULL @ 0118aae0] start time is not set in estimate_timings_from_pts [NULL @ 0120f8a0] start time is not set in estimate_timings_from_pts [mpegts @ 011608e0] PES packet size mismatch Last message repeated 2 times Input #0, mpegts, from 'd:\flashfiles\movies\av_find_best_stream_fails.ts': Duration: 00:00:09.11, start: 63323.810800, bitrate: 18418 kb/s Program 2 Stream #0:5[0x21]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p , 704x480 [SAR 10:11 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:6[0x24]( ): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, s1 6, 192 kb/s Stream #0:7[0x25](eng): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, s1 6, 192 kb/s Program 3 Stream #0:4[0x31]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p , 704x480 [SAR 10:11 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:8[0x34]( ): Audio: ac3 (AC-3 / 0x332D4341), 0 channels Program 4 Stream #0:0[0x41]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p , 704x480 [SAR 10:11 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x164](eng): Audio: ac3 (AC-3 / 0x332D4341), 0 channels, s16 Program 6 Stream #0:3[0x61]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p , 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:2[0x64](eng): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), s16, 384 kb/s Invalid sample rate or channel count! Frame changed from size:0x0 to size:704x480 8KB sq= 0B f=0/0 75431.85 A-V: 0.000 fd= 0 aq= 0KB vq= 11KB sq= 0B f=0/0 Invalid sample rate or channel count is displayed since it chose a video stream that had a related audio stream with sample_rate of zero. VLC selected the wrong stream as well. WMP and Media Player Classic selected better streams. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 00:54:02 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 18 Dec 2012 23:54:02 -0000 Subject: [FFmpeg-trac] #2042(avformat:new): av_find_best_stream fails to find best stream for included file In-Reply-To: <036.795087a67874ee36b02f032eb108b927@avcodec.org> References: <036.795087a67874ee36b02f032eb108b927@avcodec.org> Message-ID: <051.44248b7f9739b5f6a16d0bc90fbf83a9@avcodec.org> #2042: av_find_best_stream fails to find best stream for included file -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Is this only reproducible with ffplay, or also with ffmpeg? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 01:19:46 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 00:19:46 -0000 Subject: [FFmpeg-trac] #2042(avformat:new): av_find_best_stream fails to find best stream for included file In-Reply-To: <036.795087a67874ee36b02f032eb108b927@avcodec.org> References: <036.795087a67874ee36b02f032eb108b927@avcodec.org> Message-ID: <051.716c1fb1eb2c09c4faa4f996c4ea0d7f@avcodec.org> #2042: av_find_best_stream fails to find best stream for included file -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by DonMoir): It's going to be reproducible with any program that uses av_find_best_stream to find the best video stream first without doing further analysis. ffmpeg does not use av_find_best_stream. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 01:47:20 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 00:47:20 -0000 Subject: [FFmpeg-trac] #2043(FFmpeg:new): unexpected behaviour when segmenting x264 encoded rawvideo sources Message-ID: <033.6140d2047dc83b7a6b4877a1f076eed2@avcodec.org> #2043: unexpected behaviour when segmenting x264 encoded rawvideo sources --------------------------------+-------------------------------------- Reporter: elkq | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+-------------------------------------- ffmpeg fails to segment rawvideo sources that have been encoded with libx264. The following command line fails: {{{ ffmpeg -report -v 9 -loglevel 99 -s 352x288 -i /tmp/container_cif.yuv -c:v libx264 -an -sn -map 0 -f segment -segment_time 4 -segment_list hls.m3u8 -segment_format mpegts hls%03d.ts }}} But a similar command line without the segmentation suceeeds: {{{ ffmpeg -report -v 9 -loglevel 99 -s 352x288 -i /tmp/container_cif.yuv -c:v libx264 -an -sn -map 0 -f mpegts not_hls.ts }}} The source YUV file in this example is one of the test sequences from the Arizona State University Video Trace Library: http://trace.eas.asu.edu/yuv/container/container_cif.7z Dump of failure report: {{{ ffmpeg started on 2012-12-18 at 16:18:08 Report written to "ffmpeg-20121218-161808.log" Command line: ffmpeg -report -v 9 -loglevel 99 -s 352x288 -i /tmp/container_cif.yuv -c:v libx264 -an -sn -map 0 -f segment -segment_time 4 -segment_list hls.m3u8 -segment_format mpegts "hls%03d.ts" ffmpeg version N-47415-gd913883 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 4 2012 12:59:22 with gcc 4.7 (Ubuntu/Linaro 4.7.2-2ubuntu1) configuration: --enable-gpl --enable-nonfree --enable-shared --enable- libfaac --enable-libx264 --enable-libvpx libavutil 52. 11.101 / 52. 11.101 libavcodec 54. 78.101 / 54. 78.101 libavformat 54. 42.100 / 54. 42.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 23.105 / 3. 23.105 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [rawvideo @ 0x135be00] Format rawvideo probed with size=2048 and score=50 [rawvideo @ 0x135be00] File position before avformat_find_stream_info() is 0 [rawvideo @ 0x135be00] All info found [rawvideo @ 0x135be00] Estimating duration from bitrate, this may be inaccurate [rawvideo @ 0x135be00] File position after avformat_find_stream_info() is 152064 Input #0, rawvideo, from '/tmp/container_cif.yuv': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0, 1, 1/25: Video: rawvideo (I420 / 0x30323449), yuv420p, 352x288, 1/25, 25 tbr, 25 tbn, 25 tbc [buffer @ 0x1358de0] Setting entry with key 'video_size' to value '352x288' [buffer @ 0x1358de0] Setting entry with key 'pix_fmt' to value '0' [buffer @ 0x1358de0] Setting entry with key 'time_base' to value '1/25' [buffer @ 0x1358de0] Setting entry with key 'pixel_aspect' to value '0/1' [buffer @ 0x1358de0] Setting entry with key 'sws_param' to value 'flags=2' [buffer @ 0x1358de0] Setting entry with key 'frame_rate' to value '25/1' [graph 0 input from stream 0:0 @ 0x135c640] w:352 h:288 pixfmt:yuv420p tb:1/25 fr:25/1 sar:0/1 sws_param:flags=2 [libx264 @ 0x1363840] using mv_range_thread = 24 [libx264 @ 0x1363840] using cpu capabilities: MMX2 SSE2 SSE3 Cache64 BMI1 [libx264 @ 0x1363840] profile High, level 1.3 [libx264 @ 0x1363840] 264 - core 129 r2230 1cffe9f - H.264/MPEG-4 AVC codec - Copyleft 2003-2012 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 [mpegts @ 0x1982060] muxrate VBR, pcr every 2 pkts, sdt every 200, pat/pmt every 40 pkts Output #0, segment, to 'hls%03d.ts': Metadata: encoder : Lavf54.42.100 Stream #0:0, 0, 1/90000: Video: h264, yuv420p, 352x288, 1/25, q=-1--1, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> libx264) Press [q] to stop, [?] for help [libx264 @ 0x1363840] using mv_range_thread = 24 [libx264 @ 0x1363840] frame= 0 QP=23.61 NAL=3 Slice:I Poc:0 I:396 P:0 SKIP:0 size=16513 bytes [mpegts @ 0x1982060] H.264 bitstream malformed, no startcode found, use the h264_mp4toannexb bitstream filter (-bsf h264_mp4toannexb) av_interleaved_write_frame(): Invalid argument Statistics: 7755264 bytes read, 0 seeks }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 02:23:57 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 01:23:57 -0000 Subject: [FFmpeg-trac] #2042(avformat:new): av_find_best_stream fails to find best stream for included file In-Reply-To: <036.795087a67874ee36b02f032eb108b927@avcodec.org> References: <036.795087a67874ee36b02f032eb108b927@avcodec.org> Message-ID: <051.dcc518e30067b336fca4f138817d5948@avcodec.org> #2042: av_find_best_stream fails to find best stream for included file -------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by DonMoir): The zero stream just has a single image but has multiple frames associated with it which is the stream selected by av_find_best_stream. See attached zero_stream_image.png The other video streams have regular animated video along with normal audio. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 05:49:45 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 04:49:45 -0000 Subject: [FFmpeg-trac] #1823(FFmpeg:open): Allow output file for -report option to be specified. In-Reply-To: <036.22666b4869de30de819f9921ed0a2487@avcodec.org> References: <036.22666b4869de30de819f9921ed0a2487@avcodec.org> Message-ID: <051.9fed4e8d05bd99997a33d148d9767897@avcodec.org> #1823: Allow output file for -report option to be specified. -------------------------------------+---------------------------------- Reporter: dericed | Owner: Type: enhancement | Status: open Priority: wish | Component: FFmpeg Version: git-master | Resolution: Keywords: report | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by dericed): I've tested this in the latest git in a Mac environment and found it works well. I believe this ticket is closed by http://git.videolan.org/?p=ffmpeg.git;a=commit;h=1fa47f8deafed3263ecdf5b0eb4807b77cfbb868. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 05:52:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 04:52:33 -0000 Subject: [FFmpeg-trac] #1542(avformat:open): support jpeg2000 in mxf In-Reply-To: <036.4f441ab8fa3c127e26172eb19d813c6a@avcodec.org> References: <036.4f441ab8fa3c127e26172eb19d813c6a@avcodec.org> Message-ID: <051.467610a0d38ac3bd41574f7f815bb42b@avcodec.org> #1542: support jpeg2000 in mxf -------------------------------------+------------------------------------ Reporter: dericed | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mxf j2k | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by dericed): Just adding a note here that muxing jpeg2000 into mxf is defined in SMPTE 422m (which defines how MXF can accomplish something similar as the 'colr' atom in other containers). The gstreamer bad plugins has an open source implementation of smpte 422m (see here: http://gstreamer.freedesktop.org/data/coverage/lcov/everything/gst- plugins-bad/gst/mxf/mxfjpeg2000.c.gcov.html). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 06:01:15 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 05:01:15 -0000 Subject: [FFmpeg-trac] #867(avformat:open): support in24 audio in mov muxer In-Reply-To: <036.8435c546ca2ad92e5b010f9c28e8bcd4@avcodec.org> References: <036.8435c546ca2ad92e5b010f9c28e8bcd4@avcodec.org> Message-ID: <051.aa531104a22c75b5ce808206fbf70712@avcodec.org> #867: support in24 audio in mov muxer ------------------------------------+------------------------------------ Reporter: dericed | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: atag mov | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by dericed): Not exactly sure when this was fixed, but when I now try to replicate the commands I originally posted the output is as expected. {{{ ffmpeg -i fcp_capture2.mov -vn -acodec pcm_s24be -atag in24 in24.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f8b5080f200] Stream #1: not enough frames to estimate rate; consider increasing probesize [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f8b5080f200] Stream #2: not enough frames to estimate rate; consider increasing probesize [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f8b5080f200] Stream #3: not enough frames to estimate rate; consider increasing probesize [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f8b5080f200] Stream #4: not enough frames to estimate rate; consider increasing probesize [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f8b5080f200] Stream #5: not enough frames to estimate rate; consider increasing probesize Guessed Channel Layout for Input Stream #0.2 : stereo Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_capture2.mov': Metadata: creation_time : 2012-11-29 21:23:35 timecode : 01:26:27;06 Duration: 00:00:00.40, start: 0.098771, bitrate: 216637 kb/s Stream #0:0(eng): Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, 136674 kb/s, 24.41 fps, 29.97 tbr, 2997 tbn, 2997 tbc Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream #0:1(eng): Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream #0:2(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream #0:3(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream #0:4(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream #0:5(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler timecode : 01:26:27;06 Output #0, mov, to 'in24.mov': Metadata: timecode : 01:26:27;06 encoder : Lavf54.49.102 Stream #0:0(eng): Audio: pcm_s24be (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-29 21:23:36 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:2 -> #0:0 (pcm_s24le -> pcm_s24be) Press [q] to stop, [?] for help size= 134kB time=00:00:00.57 bitrate=1916.9kbits/s video:0kB audio:133kB subtitle:0 global headers:0kB muxing overhead 0.551449% }}} Then read back the output {{{ ffmpeg -i in24.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'in24.mov': Metadata: major_brand : qt minor_version : 512 compatible_brands: qt encoder : Lavf54.49.102 Duration: 00:00:00.47, start: 0.098000, bitrate: 2314 kb/s Stream #0:0(eng): Audio: pcm_s24be (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: handler_name : DataHandler At least one output file must be specified }}} The result is the same if I omit the -atag in24, the output defaults to the in24 fourcc. It appears that in24 is now supported in the mov muxer. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 06:11:13 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 05:11:13 -0000 Subject: [FFmpeg-trac] #1908(avformat:reopened): error when copying eia_608 track In-Reply-To: <036.59a2edd3ecb171acd0f48b58650bb6bb@avcodec.org> References: <036.59a2edd3ecb171acd0f48b58650bb6bb@avcodec.org> Message-ID: <051.4acc41eb681de8cb11403b884fd4ccbb@avcodec.org> #1908: error when copying eia_608 track -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: defect | Status: reopened Priority: important | Component: avformat Version: git-master | Resolution: Keywords: eia_608 mov | Blocked By: abort crash fpe | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by dericed): Just attached a sample. When I try to copy all streams from the file to an output here is my log: {{{ ffmpeg started on 2012-12-19 at 00:02:15 Report written to "ffmpeg-20121219-000215.log" Command line: ffmpeg -report -i fcp_capture.mov -map 0 -c copy output.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb95b80f800] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb95b80f800] ISO: File Type Major Brand: qt [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb95b80f800] File position before avformat_find_stream_info() is 8447 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb95b80f800] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb95b80f800] File position after avformat_find_stream_info() is 746703 Guessed Channel Layout for Input Stream #0.2 : stereo Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_capture.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-11-28 08:06:53 Duration: 00:00:00.07, start: 0.100434, bitrate: 173589 kb/s Stream #0:0(eng), 1, 1/2997: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, 66983 kb/s, 11.96 fps, 7.47 tbr, 2997 tbn, 2997 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:2(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:3(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:4(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:5(eng), 0, 1/2997: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 [mov @ 0x7fb95b85be00] You requested a copy of the original timecode track so timecode metadata are now ignored Output #0, mov, to 'output.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt encoder : Lavf54.49.102 Stream #0:0(eng), 0, 1/11988: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, q=2-31, 66983 kb/s, 11.96 fps, 11988 tbn, 2997 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:2(eng), 0, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:3(eng), 0, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:4(eng), 0, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:5(eng), 0, 1/1000: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:2 -> #0:2 (copy) Stream #0:3 -> #0:3 (copy) Stream #0:4 -> #0:4 (copy) Stream #0:5 -> #0:5 (copy) Press [q] to stop, [?] for help No more output streams to write to, finishing. }}} While not in the report, the terminal output adds {{{ Floating point exception: 8 }}} However when I map and copy only the e608 track the output is generated as expected. Output: {{{ ffmpeg started on 2012-12-19 at 00:07:18 Report written to "ffmpeg-20121219-000718.log" Command line: ffmpeg -report -i fcp_capture.mov -map 0:s -c copy output_e608.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f860880f800] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f860880f800] ISO: File Type Major Brand: qt [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f860880f800] File position before avformat_find_stream_info() is 8447 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f860880f800] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f860880f800] File position after avformat_find_stream_info() is 746703 Guessed Channel Layout for Input Stream #0.2 : stereo Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_capture.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-11-28 08:06:53 Duration: 00:00:00.07, start: 0.100434, bitrate: 173589 kb/s Stream #0:0(eng), 1, 1/2997: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, 66983 kb/s, 11.96 fps, 7.47 tbr, 2997 tbn, 2997 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:2(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:3(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:4(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:5(eng), 0, 1/2997: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Output #0, mov, to 'output_e608.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt encoder : Lavf54.49.102 Stream #0:0(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help No more output streams to write to, finishing. size= 1kB time=00:00:00.13 bitrate= 42.7kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1685.000000% Statistics: 771072 bytes read, 3 seeks }}} When I map only the timecode track than I replicate the floating point exception error. {{{ ffmpeg started on 2012-12-19 at 00:08:06 Report written to "ffmpeg-20121219-000806.log" Command line: ffmpeg -report -i fcp_capture.mov -map 0:d -c copy output_timecode.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f999a00f800] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f999a00f800] ISO: File Type Major Brand: qt [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f999a00f800] File position before avformat_find_stream_info() is 8447 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f999a00f800] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f999a00f800] File position after avformat_find_stream_info() is 746703 Guessed Channel Layout for Input Stream #0.2 : stereo Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_capture.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-11-28 08:06:53 Duration: 00:00:00.07, start: 0.100434, bitrate: 173589 kb/s Stream #0:0(eng), 1, 1/2997: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, 66983 kb/s, 11.96 fps, 7.47 tbr, 2997 tbn, 2997 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:2(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:3(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:4(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:5(eng), 0, 1/2997: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Output #0, mov, to 'output_timecode.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt encoder : Lavf54.49.102 Stream #0:0(eng), 0, 1/1000: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream mapping: Stream #0:5 -> #0:0 (copy) Press [q] to stop, [?] for help No more output streams to write to, finishing. }}} and in the terminal {{{ Floating point exception: 8 }}} Thus I think the ticket is mislabeled and that the floating point exception pertains to copying timecode tracks (or all data tracks) and not e608. This may be a duplicate of https://ffmpeg.org/trac/ffmpeg/ticket/236. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 06:23:26 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 05:23:26 -0000 Subject: [FFmpeg-trac] #2044(avformat:new): timecode copying error with variable frame rate QuickTime files Message-ID: <036.12d5ba33a1fd28e627a093db367b5877@avcodec.org> #2044: timecode copying error with variable frame rate QuickTime files -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git- | Keywords: timecode, master | mov, vfr Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: Video capture in Final Cut Pro often creates variable frame rate QuickTime files (where only the first and sometimes last frame deviate have frame durations that deviate from the rest). When I try to convert these files in ffmpeg while preserving timecode the results are unexpected. I'm attaching a sample produced by using FCP to capture two frames from a tape. By reading the sample-to-time table in the video trak the first frame has a duration of 401/2997 and the rest have frame durations of 100/2997. When I try to copy the tracks of this input to an output quicktime file the timecode track in the output does not match the input's timecode track. When the input is opened in QuickTime or FCP the first frame of the sample is 00:59:14;24 and the second is 00:59:14;25. With the output the first frame is 00:59:14;24 but the second is 00:59:14;28. How to reproduce: {{{ ffmpeg started on 2012-12-19 at 00:21:21 Report written to "ffmpeg-20121219-002121.log" Command line: ffmpeg -report -y -i fcp_capture.mov -c:v copy -c:a copy -r ntsc output.mov ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers built on Dec 18 2012 23:49:10 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-ffplay libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffe3900f800] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffe3900f800] ISO: File Type Major Brand: qt [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffe3900f800] File position before avformat_find_stream_info() is 8447 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffe3900f800] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffe3900f800] File position after avformat_find_stream_info() is 746703 Guessed Channel Layout for Input Stream #0.2 : stereo Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_capture.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-11-28 08:06:53 Duration: 00:00:00.07, start: 0.100434, bitrate: 173589 kb/s Stream #0:0(eng), 1, 1/2997: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, 66983 kb/s, 11.96 fps, 7.47 tbr, 2997 tbn, 2997 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/2997: Subtitle: eia_608 (c608 / 0x38303663) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:2(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:3(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:4(eng), 4, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream #0:5(eng), 0, 1/2997: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Output #0, mov, to 'output.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt encoder : Lavf54.49.102 Stream #0:0(eng), 0, 1/30000: Video: rawvideo (2vuy / 0x79757632), uyvy422, 720x486, q=2-31, 66983 kb/s, 11.96 fps, 30k tbn, 29.97 tbc Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler timecode : 00:59:14;24 Stream #0:1(eng), 0, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, 2304 kb/s Metadata: creation_time : 2012-11-28 08:06:53 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:2 -> #0:1 (copy) Press [q] to stop, [?] for help No more output streams to write to, finishing. frame= 2 fps=0.0 q=-1.0 Lsize= 1388kB time=00:00:00.16 bitrate=67994.3kbits/s video:1367kB audio:19kB subtitle:0 global headers:0kB muxing overhead 0.135388% Statistics: 1470868 bytes read, 2 seeks }}} Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 06:35:50 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 05:35:50 -0000 Subject: [FFmpeg-trac] #2025(avformat:closed): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.d9f541e592aa274b3fcee21e28c5dc28@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: pross Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Thanks, will test it and let you know. Now if only someone can figure out how to get H.264 in a WTV container, that would be awesome! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 07:54:59 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 06:54:59 -0000 Subject: [FFmpeg-trac] #1667(FFplay:closed): ffplay resizes can cause "garbage" in the margins In-Reply-To: <039.1e68c0fbe2d55e99f9f5e5f49cd0d581@avcodec.org> References: <039.1e68c0fbe2d55e99f9f5e5f49cd0d581@avcodec.org> Message-ID: <054.10f6eb0b3a6184618f88b0cfdb400a04@avcodec.org> #1667: ffplay resizes can cause "garbage" in the margins ------------------------------------+---------------------------------- Reporter: rogerdpack | Owner: cus Type: defect | Status: closed Priority: normal | Component: FFplay Version: git-master | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Comment (by rogerdpack): Seems to be working well for me in production, thanks again. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 09:08:16 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 08:08:16 -0000 Subject: [FFmpeg-trac] #1823(FFmpeg:closed): Allow output file for -report option to be specified. In-Reply-To: <036.22666b4869de30de819f9921ed0a2487@avcodec.org> References: <036.22666b4869de30de819f9921ed0a2487@avcodec.org> Message-ID: <051.d71d4610c7ae814bb848305896d23b7e@avcodec.org> #1823: Allow output file for -report option to be specified. -------------------------------------+---------------------------------- Reporter: dericed | Owner: Type: enhancement | Status: closed Priority: wish | Component: FFmpeg Version: git-master | Resolution: fixed Keywords: report | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 09:40:07 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 08:40:07 -0000 Subject: [FFmpeg-trac] #2045(avformat:new): FPE when copying timecode track Message-ID: <036.9d5bcfc20a1cd853116ef631a44b3dc7@avcodec.org> #2045: FPE when copying timecode track -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git- | Keywords: crash fpe master | regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Using the sample from ticket #236 {{{ (gdb) r -i fcp_export8.mov -codec copy -map 0 out.mov Starting program: /home/cehoyos/Projects/cehoyos/FFmpeg/ffmpeg_g -i fcp_export8.mov -codec copy -map 0 out.mov [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". ffmpeg version N-47976-g1166fc0 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 19 2012 09:33:55 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 80.100 / 54. 80.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Guessed Channel Layout for Input Stream #0.1 : stereo Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fcp_export8.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2010-03-03 06:08:19 timecode : 00:00:00;00 Duration: 00:00:00.14, start: 0.000000, bitrate: 35204 kb/s Stream #0:0(eng): Video: dvvideo (dvc / 0x20637664), yuv411p, 720x480 [SAR 8:9 DAR 4:3], 28771 kb/s, SAR 10:11 DAR 15:11, 29.97 fps, 29.97 tbr, 2997 tbn, 29.97 tbc Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 01:00:00;00 Stream #0:1(eng): Audio: pcm_s16le (sowt / 0x74776F73), 48000 Hz, stereo, s16, 1536 kb/s Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler Stream #0:2(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 01:00:00;00 Stream #0:3(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 00:00:00;00 Stream #0:4(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 00:00:00;00 [mov @ 0x15d1d60] You requested a copy of the original timecode track so timecode metadata are now ignored Last message repeated 2 times Output #0, mov, to 'out.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt timecode : 00:00:00;00 encoder : Lavf54.49.102 Stream #0:0(eng): Video: dvvideo (dvc / 0x20637664), yuv411p, 720x480 [SAR 10:11 DAR 15:11], q=2-31, 28771 kb/s, 29.97 fps, 11988 tbn, 2997 tbc Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 01:00:00;00 Stream #0:1(eng): Audio: pcm_s16le (sowt / 0x74776F73), 48000 Hz, stereo, 1536 kb/s Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler Stream #0:2(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 01:00:00;00 Stream #0:3(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 00:00:00;00 Stream #0:4(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2010-03-03 06:08:19 handler_name : Apple Alias Data Handler timecode : 00:00:00;00 Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:2 -> #0:2 (copy) Stream #0:3 -> #0:3 (copy) Stream #0:4 -> #0:4 (copy) Press [q] to stop, [?] for help Program received signal SIGFPE, Arithmetic exception. 0x0000000000524a57 in mov_write_tmcd_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1150 1150 int nb_frames = (track->timescale + frame_duration/2) / frame_duration; (gdb) bt #0 0x0000000000524a57 in mov_write_tmcd_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1150 #1 mov_write_stsd_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1202 #2 mov_write_stbl_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1301 #3 mov_write_minf_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1515 #4 mov_write_mdia_tag (track=0x15d4960, pb=0x15d8020) at libavformat/movenc.c:1562 #5 mov_write_trak_tag (st=0x15d31a0, track=0x15d4960, mov=0x15b41a0, pb=0x15d8020) at libavformat/movenc.c:1803 #6 mov_write_moov_tag (pb=0x15d8020, mov=0x15b41a0, s=0x15d1d60) at libavformat/movenc.c:2350 #7 0x00000000005283d5 in mov_write_trailer (s=0x15d1d60) at libavformat/movenc.c:3886 #8 0x000000000053d13e in av_write_trailer (s=0x15d1d60) at libavformat/mux.c:775 #9 0x000000000045263a in transcode () at ffmpeg.c:3064 #10 main (argc=, argv=) at ffmpeg.c:3218 }}} Not reproducible when only copying audio and/or video. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 09:42:56 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 08:42:56 -0000 Subject: [FFmpeg-trac] #236(avformat:closed): Floating point exception error with -dcodec copy on QuickTime timecode track In-Reply-To: <036.ae45ecabf1d9eae444ed11e4bd095441@avcodec.org> References: <036.ae45ecabf1d9eae444ed11e4bd095441@avcodec.org> Message-ID: <051.4890752964418201c8a663f31c9eda68@avcodec.org> #236: Floating point exception error with -dcodec copy on QuickTime timecode track -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: fixed Keywords: dcodec | Blocked By: crash fpe | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: This used to be fixed (in 0.11 and 1.0), now reproducible again, I opened ticket #2045 for the regression. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 09:44:17 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 08:44:17 -0000 Subject: [FFmpeg-trac] #1908(avformat:closed): error when copying eia_608 track In-Reply-To: <036.59a2edd3ecb171acd0f48b58650bb6bb@avcodec.org> References: <036.59a2edd3ecb171acd0f48b58650bb6bb@avcodec.org> Message-ID: <051.b21b4e0ae9c215644b99e5aaee551828@avcodec.org> #1908: error when copying eia_608 track -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: duplicate Keywords: eia_608 mov | Blocked By: abort crash fpe | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => duplicate Comment: The original report was a duplicate of ticket #1820, I created ticket #2045 for the new fpe on copying timecode tracks. Thank you for the analysis! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 09:44:22 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 08:44:22 -0000 Subject: [FFmpeg-trac] #2045(avformat:new): FPE when copying timecode track In-Reply-To: <036.9d5bcfc20a1cd853116ef631a44b3dc7@avcodec.org> References: <036.9d5bcfc20a1cd853116ef631a44b3dc7@avcodec.org> Message-ID: <051.41d6bb724695fca76c69069935237a25@avcodec.org> #2045: FPE when copying timecode track -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: crash fpe | Blocked By: regression mov | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: crash fpe regression => crash fpe regression mov -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 10:09:37 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 09:09:37 -0000 Subject: [FFmpeg-trac] #867(avformat:closed): support in24 audio in mov muxer In-Reply-To: <036.8435c546ca2ad92e5b010f9c28e8bcd4@avcodec.org> References: <036.8435c546ca2ad92e5b010f9c28e8bcd4@avcodec.org> Message-ID: <051.6a271fe5fc9d414511997d924b8e6ec4@avcodec.org> #867: support in24 audio in mov muxer ------------------------------------+------------------------------------ Reporter: dericed | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: atag mov | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: This was fixed in January by Michael, thank you for testing again! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 10:16:28 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 09:16:28 -0000 Subject: [FFmpeg-trac] #2043(undetermined:closed): unexpected behaviour when segmenting x264 encoded rawvideo sources In-Reply-To: <033.6140d2047dc83b7a6b4877a1f076eed2@avcodec.org> References: <033.6140d2047dc83b7a6b4877a1f076eed2@avcodec.org> Message-ID: <048.bd7c3f8dc62a3de116a56780629d076c@avcodec.org> #2043: unexpected behaviour when segmenting x264 encoded rawvideo sources -------------------------------------+------------------------------------- Reporter: elkq | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: h264 | Resolution: invalid segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => h264 segment * resolution: => invalid * status: new => closed * component: FFmpeg => undetermined Comment: Please add "-flags -global_header" to your command line. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 11:05:18 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 10:05:18 -0000 Subject: [FFmpeg-trac] #2043(avformat:closed): unexpected behaviour when segmenting x264 encoded rawvideo sources In-Reply-To: <033.6140d2047dc83b7a6b4877a1f076eed2@avcodec.org> References: <033.6140d2047dc83b7a6b4877a1f076eed2@avcodec.org> Message-ID: <048.e89b327fac1b2413c00b6e556dec86e5@avcodec.org> #2043: unexpected behaviour when segmenting x264 encoded rawvideo sources -------------------------------------+------------------------------------- Reporter: elkq | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: invalid Keywords: h264 | Blocked By: segment mpegts | Reproduced by developer: 1 Blocking: | Analyzed by developer: 1 | -------------------------------------+------------------------------------- Changes (by saste): * analyzed: 0 => 1 * keywords: h264 segment => h264 segment mpegts * component: undetermined => avformat * reproduced: 0 => 1 Comment: Replying to [ticket:2043 elkq]: > ffmpeg fails to segment rawvideo sources that have been encoded with libx264. > > The following command line fails: > {{{ > ffmpeg -report -v 9 -loglevel 99 -s 352x288 -i /tmp/container_cif.yuv -c:v libx264 -an -sn -map 0 -f segment -segment_time 4 -segment_list hls.m3u8 -segment_format mpegts hls%03d.ts > }}} This works if you specify {{{-f ssegment}}}, see commit a9a7e215e5207e674338b7ca9eb74e96ae5faf99. The riddle is due to the fact that libavformat needs to know if the output is stream-based or file-based when opening the segment muxer, and this can't be known in advance with the segment muxer, when the internal muxer has not been selected yet. Error feedback can be improved, on the other hand this behavior cannot be easily fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 11:17:28 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 10:17:28 -0000 Subject: [FFmpeg-trac] #1550(undetermined:new): Wrong aspect ratio when decoding rv40 sample In-Reply-To: <036.79582b8186aeea68261dba72e4678d76@avcodec.org> References: <036.79582b8186aeea68261dba72e4678d76@avcodec.org> Message-ID: <051.446c1df287c9969c46e3050bd77569de@avcodec.org> #1550: Wrong aspect ratio when decoding rv40 sample -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: minor | Component: Version: git-master | undetermined Keywords: real rv40 | Resolution: roundup | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => minor Comment: The problem is not that ffmpeg incorrectly transcodes the sample (ffmpeg assumes sar=1 and correctly handles this sample), but that dar is not shown with ffmpeg -i join_cut.rmvb -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 11:18:59 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 10:18:59 -0000 Subject: [FFmpeg-trac] #1550(undetermined:new): No aspect ratio shown for realvideo (was: Wrong aspect ratio when decoding rv40 sample) In-Reply-To: <036.79582b8186aeea68261dba72e4678d76@avcodec.org> References: <036.79582b8186aeea68261dba72e4678d76@avcodec.org> Message-ID: <051.3a8b9a44400358d26e0e76f77e061de1@avcodec.org> #1550: No aspect ratio shown for realvideo -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: minor | Component: Version: git-master | undetermined Keywords: real rv40 | Resolution: roundup | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 19 15:42:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 14:42:33 -0000 Subject: [FFmpeg-trac] #2046(undetermined:new): support changes to DAR/SAR during -codec copy Message-ID: <036.39c8f663f1a8853f1fb9acae5e8019ae@avcodec.org> #2046: support changes to DAR/SAR during -codec copy -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: | Status: new enhancement | Component: Priority: normal | undetermined Version: git- | Keywords: dar master | Blocking: Blocked By: | Analyzed by developer: 0 Reproduced by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I would like to make adjustments to DAR without having to re-encode video. FFmpeg ignores options like -aspect and -vf setdar when using -c copy. How to reproduce: I create a sample file like this: ffmpeg -f lavfi -i testsrc=s=720x480:d=1 -pix_fmt yuv420p 720x480_3-2.mov I then try to adjust the DAR of file 720x480_3-2.mov to 4/3. like this {{{ ffmpeg -i 720x480_3-2.mov -aspect 4/3 -c copy 720x480_4-3.mov ffmpeg version 1.0.git-ffmpeg4archivists Copyright (c) 2000-2012 the FFmpeg developers built on Nov 29 2012 11:38:09 with gcc 4.2.1 (GCC) (Apple Inc. build 5666) (dot 3) configuration: --prefix=/Users/digitilization/github/ffmpeg4archivists/ffmpeg --as=yasm --extra-version=ffmpeg4archivists --extra- libs=-L/Users/digitilization/github/ffmpeg4archivists/libs --disable- shared --enable-static --disable-ffserver --enable-gpl --enable-pthreads --enable-postproc --enable-libmp3lame --enable-libtheora --enable- libvorbis --enable-libx264 --enable-libxvid --enable-libspeex --enable- bzlib --enable-zlib --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-version3 --enable-libvo-aacenc --enable-libvpx --enable-libopus --enable-filters --enable-runtime-cpudetect --disable-debug --enable- libfreetype --enable-libopenjpeg --cc=/usr/bin/gcc-4.2 libavutil 52. 9.102 / 52. 9.102 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 39.100 / 54. 39.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.104 / 3. 23.104 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '720x480_3-2.mov': Metadata: major_brand : qt minor_version : 512 compatible_brands: qt encoder : Lavf54.39.100 Duration: 00:00:01.00, start: 0.000000, bitrate: 108 kb/s Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 720x480 [SAR 1:1 DAR 3:2], 99 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc Metadata: handler_name : DataHandler Output #0, mov, to '720x480_4-3.mov': Metadata: major_brand : qt minor_version : 512 compatible_brands: qt encoder : Lavf54.39.100 Stream #0:0(eng): Video: h264 (avc1 / 0x31637661), yuv420p, 720x480 [SAR 1:1 DAR 3:2], q=2-31, 99 kb/s, 25 fps, 12800 tbn, 12800 tbc Metadata: handler_name : DataHandler Stream mapping: Stream #0:0 -> #0:0 (copy) Press [q] to stop, [?] for help frame= 25 fps=0.0 q=-1.0 Lsize= 13kB time=00:00:00.88 bitrate= 123.6kbits/s video:12kB audio:0kB subtitle:0 global headers:0kB muxing overhead 8.819528% }}} And the output is still 3/2 DAR. The result is the same with -vf options. I was able to make this adjustment using muxmovie's -hscale option but would like to be able to do this in ffmpeg. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 00:35:25 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 19 Dec 2012 23:35:25 -0000 Subject: [FFmpeg-trac] #2047(undetermined:new): FFmpeg 1.0 reports wrong creation_time metadata Message-ID: <034.d7cd74ab7ff3e4436e41b30bdd9c40d8@avcodec.org> #2047: FFmpeg 1.0 reports wrong creation_time metadata ---------------------------------------+---------------------------------- Reporter: jwang | Type: defect Status: new | Priority: normal Component: undetermined | Version: 1.0 Keywords: creation_time | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------------+---------------------------------- Summary of the bug: Since FFmpeg 1.0 release all creation_time extracted with ffprobe are wrong. Time is shifted for about 70 years. How to reproduce: ffprobe any MP4 file. For example, FFmpeg 1.0: {{{ ffprobe version 1.0 Copyright (c) 2007-2012 the FFmpeg developers built on Nov 7 2012 11:51:12 with gcc 4.4.0 (GCC) 20090506 (Red Hat 4.4.0-4) configuration: --disable-yasm libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/home/jwang/clips/MP4/Avatar1080.mp4': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: isomavc1mp42 creation_time : 1939-10-21 02:15:28 Duration: 00:02:34.58, start: 0.000000, bitrate: 2821 kb/s Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 120 kb/s Metadata: creation_time : 1939-10-21 02:15:28 handler_name : (C) 2007 Google Inc. v08.13.2007. Stream #0:1(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 3274 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc Metadata: creation_time : 1939-10-21 02:15:30 handler_name : (C) 2007 Google Inc. v08.13.2007. }}} FFmpeg 0.11.1: {{{ ffprobe version 0.11.1 Copyright (c) 2007-2012 the FFmpeg developers built on Jun 14 2012 18:01:36 with gcc 4.4.0 20090506 (Red Hat 4.4.0-4) configuration: --disable-yasm libavutil 51. 54.100 / 51. 54.100 libavcodec 54. 23.100 / 54. 23.100 libavformat 54. 6.100 / 54. 6.100 libavdevice 54. 0.100 / 54. 0.100 libavfilter 2. 77.100 / 2. 77.100 libswscale 2. 1.100 / 2. 1.100 libswresample 0. 15.100 / 0. 15.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/home/jwang/clips/MP4/Avatar1080.mp4': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: isomavc1mp42 creation_time : 2009-11-25 08:43:44 Duration: 00:02:34.58, start: 0.000000, bitrate: 2821 kb/s Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 120 kb/s Metadata: creation_time : 2009-11-25 08:43:44 handler_name : (C) 2007 Google Inc. v08.13.2007. Stream #0:1(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 3274 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc Metadata: creation_time : 2009-11-25 08:43:46 handler_name : (C) 2007 Google Inc. v08.13.2007. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 10:08:45 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 09:08:45 -0000 Subject: [FFmpeg-trac] #1312(avcodec:closed): Support multi-threaded resolution change In-Reply-To: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> References: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> Message-ID: <053.008fd2bc442ac4f600c72965bb44f63f@avcodec.org> #1312: Support multi-threaded resolution change -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: enhancement | Status: closed Priority: wish | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Implemented by Janne Grunau. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 10:49:58 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 09:49:58 -0000 Subject: [FFmpeg-trac] #1312(avcodec:closed): Support multi-threaded resolution change In-Reply-To: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> References: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> Message-ID: <053.c87965a8cf881f674cf5bc21f6531251@avcodec.org> #1312: Support multi-threaded resolution change -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: enhancement | Status: closed Priority: wish | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by jyavenard): excellent news... any chance to get this ever backported to release/1.0 ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 11:30:56 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 10:30:56 -0000 Subject: [FFmpeg-trac] #1312(avcodec:closed): Support multi-threaded resolution change In-Reply-To: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> References: <038.6dd3ae925e079b2c80916f48ead53781@avcodec.org> Message-ID: <053.d8f1b5d0539e08341c11b408850d3a4d@avcodec.org> #1312: Support multi-threaded resolution change -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: enhancement | Status: closed Priority: wish | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by reimar): Personally I think that features should only in very special circumstances ever be backported. And with such extensive and kind of risky changes I don't think it's a good idea, if you're willing to risk regressions for this feature you can just use git, if you're not willing to take that risk backporting it would be a disservice. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 11:45:04 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 10:45:04 -0000 Subject: [FFmpeg-trac] #2048(undetermined:new): reproducible crash on some subtitles in ff_ass_split_override_codes() Message-ID: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() --------------------------------------+---------------------------------- Reporter: julian | Type: defect Status: new | Priority: normal Component: undetermined | Version: 1.0 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+---------------------------------- ffmpeg crashes reproducibly when converting files with some subtitles. i've seen the crash with self-compiled ffmpeg 1.0 as well as the Mac OS X binary (linked to from the hompage) for 1.0.1. download the sample file: https://dl.dropbox.com/u/7221986/ffmpeg-bug.mkv {{{ % ffmpeg -i ffmpeg-bug.mkv -map 0:2 -map 0:0 -map 0:1 -scodec mov_text -vcodec copy out.mp4 ffmpeg version 1.0.1-tessus Copyright (c) 2000-2012 the FFmpeg developers built on Dec 3 2012 23:31:08 with llvm-gcc 4.2.1 (LLVM build 2336.1.00) configuration: --prefix=/Users/tessus/data/ext/ffmpeg/sw --as=yasm --extra-version=tessus --disable-shared --enable-static --disable-ffplay --disable-ffserver --enable-gpl --enable-pthreads --enable-postproc --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-libspeex --enable-bzlib --enable-zlib --enable- libopencore-amrnb --enable-libopencore-amrwb --enable-libxavs --enable- version3 --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvpx --enable-libgsm --enable-libopus --enable-fontconfig --enable-libfreetype --enable-libass --enable-filters --enable-runtime-cpudetect libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 Input #0, matroska,webm, from 'ffmpeg-bug.mkv': Metadata: ENCODER : Lavf54.29.104 Duration: 00:24:27.06, start: 0.000000, bitrate: 8 kb/s Stream #0:0: Subtitle: ssa (default) Metadata: title : ???? Stream #0:1: Video: h264 (High), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 23.81 fps, 23.81 tbr, 1k tbn, 47.62 tbc (default) Stream #0:2: Subtitle: ssa (default) Metadata: title : ???? File 'out.mp4' already exists. Overwrite ? [y/N] y Output #0, mp4, to 'out.mp4': Metadata: encoder : Lavf54.29.104 Stream #0:0: Subtitle: mov_text ([8][0][0][0] / 0x0008) (default) Metadata: title : ???? Stream #0:1: Subtitle: mov_text ([8][0][0][0] / 0x0008) (default) Metadata: title : ???? Stream #0:2: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 640x360 [SAR 1:1 DAR 16:9], q=2-31, 23.81 fps, 1k tbn, 1k tbc (default) Stream mapping: Stream #0:2 -> #0:0 (ass -> mov_text) Stream #0:0 -> #0:1 (ass -> mov_text) Stream #0:1 -> #0:2 (copy) Press [q] to stop, [?] for help Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000000 0x00000001002b1d06 in ff_ass_split_override_codes () }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 11:51:28 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 10:51:28 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.5e5138ed65c29a25e343924af8ce7a26@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => avcodec * priority: normal => important * version: 1.0 => git-master * keywords: => ass crash SIGSEGV Comment: {{{ (gdb) r -i ffmpeg-bug.mkv -map 0:0 -scodec mov_text out.mp4 Starting program: ffmpeg_g -i ffmpeg-bug.mkv -map 0:0 -scodec mov_text out.mp4 [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". ffmpeg version N-48034-g174c483 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 20 2012 10:05:56 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 28.102 / 3. 28.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, matroska,webm, from 'ffmpeg-bug.mkv': Metadata: ENCODER : Lavf54.29.104 Duration: 00:24:27.06, start: 0.000000, bitrate: 8 kb/s Stream #0:0: Subtitle: ssa (default) Metadata: title : ???? Stream #0:1: Video: h264 (High), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 23.81 fps, 23.81 tbr, 1k tbn, 47.62 tbc (default) Stream #0:2: Subtitle: ssa (default) Metadata: title : ???? Output #0, mp4, to 'out.mp4': Metadata: encoder : Lavf54.49.102 Stream #0:0: Subtitle: mov_text ([8][0][0][0] / 0x0008) (default) Metadata: title : ???? Stream mapping: Stream #0:0 -> #0:0 (ass -> mov_text) Press [q] to stop, [?] for help Program received signal SIGSEGV, Segmentation fault. ff_ass_split_override_codes (callbacks=callbacks at entry=0xc79ee0 , priv=priv at entry=0x15ef840, buf=0x0) at libavcodec/ass_split.c:372 372 while (*buf) { (gdb) bt #0 ff_ass_split_override_codes (callbacks=callbacks at entry=0xc79ee0 , priv=priv at entry=0x15ef840, buf=0x0) at libavcodec/ass_split.c:372 #1 0x000000000086b5e1 in mov_text_encode_frame (avctx=0x15f5b00, buf=0x7ffff6463040 "", bufsize=1048576, sub=0x7fffffffd6f0) at libavcodec/movtextenc.c:125 #2 0x00000000009a1238 in avcodec_encode_subtitle (avctx=avctx at entry=0x15f5b00, buf=, buf_size=buf_size at entry=1048576, sub=sub at entry=0x7fffffffd6f0) at libavcodec/utils.c:1485 #3 0x0000000000460011 in do_subtitle_out (sub=0x7fffffffd6f0, ost=0x15eb3e0, s=0x15ec9c0, ist=) at ffmpeg.c:753 #4 transcode_subtitles (ist=ist at entry=0x15e9de0, pkt=pkt at entry=0x7fffffffdac0, got_output=got_output at entry=0x7fffffffd85c) at ffmpeg.c:1728 #5 0x000000000046138a in output_packet (pkt=0x7fffffffda60, ist=0x15e9de0) at ffmpeg.c:1812 #6 process_input (file_index=) at ffmpeg.c:2886 #7 0x00000000004515d0 in transcode_step () at ffmpeg.c:2982 #8 transcode () at ffmpeg.c:3034 #9 main (argc=, argv=) at ffmpeg.c:3209 (gdb) disass $pc-32,$pc+32 Dump of assembler code from 0xaae210 to 0xaae250: 0x0000000000aae210 : push %rsp 0x0000000000aae211 : mov %rdi,%r12 0x0000000000aae214 : push %rbp 0x0000000000aae215 : push %rbx 0x0000000000aae216 : sub $0x128,%rsp 0x0000000000aae21d : lea 0xa0(%rsp),%rbp 0x0000000000aae225 : movl $0x0,0x2c(%rsp) 0x0000000000aae22d : nopl (%rax) => 0x0000000000aae230 : cmpb $0x0,(%r15) 0x0000000000aae234 : je 0xaae42c 0x0000000000aae23a : test %r14,%r14 0x0000000000aae23d : je 0xaae281 0x0000000000aae23f : cmpq $0x0,(%r12) 0x0000000000aae244 : je 0xaae281 0x0000000000aae246 : lea 0x30(%rsp),%rdx 0x0000000000aae24b : xor %eax,%eax 0x0000000000aae24d : mov $0xd4b500,%esi End of assembler dump. (gdb) info register rax 0x1 1 rbx 0x15ef840 23001152 rcx 0x0 0 rdx 0x0 0 rsi 0x15ef840 23001152 rdi 0xc79ee0 13082336 rbp 0x7fffffffd570 0x7fffffffd570 rsp 0x7fffffffd4d0 0x7fffffffd4d0 r8 0x0 0 r9 0x7 7 r10 0x0 0 r11 0x7ffff68d1d60 140737329831264 r12 0xc79ee0 13082336 r13 0x15ef840 23001152 r14 0x0 0 r15 0x0 0 rip 0xaae230 0xaae230 eflags 0x10202 [ IF RF ] cs 0x33 51 ss 0x2b 43 ds 0x0 0 es 0x0 0 fs 0x0 0 gs 0x0 0 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 12:03:55 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 11:03:55 -0000 Subject: [FFmpeg-trac] #2047(avformat:closed): FFmpeg 1.0 reports wrong creation_time metadata In-Reply-To: <034.d7cd74ab7ff3e4436e41b30bdd9c40d8@avcodec.org> References: <034.d7cd74ab7ff3e4436e41b30bdd9c40d8@avcodec.org> Message-ID: <049.8762a9c179a61a6c7507ba899027a168@avcodec.org> #2047: FFmpeg 1.0 reports wrong creation_time metadata -------------------------------------+------------------------------------- Reporter: jwang | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: 1.0 | Resolution: fixed Keywords: | Blocked By: creation_time mov regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * reproduced: 0 => 1 * component: undetermined => avformat * priority: normal => important * keywords: creation_time => creation_time mov regression * resolution: => fixed Comment: For future tickets: Please always provide a sample. Thank you for reporting this, it is a duplicate of ticket #1817, but it wasn't fixed for 1.0. Will be fixed in 1.0.2, you can test with git checkout release/1.0 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 13:39:44 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 12:39:44 -0000 Subject: [FFmpeg-trac] #2010(undetermined:new): ffplay can't seek in file that vlc and mplayer -demuxer mov can seek In-Reply-To: <035.d47fb413ba36d0044314b518c92c5786@avcodec.org> References: <035.d47fb413ba36d0044314b518c92c5786@avcodec.org> Message-ID: <050.26699d5da6950a2f4d7456d42b5a9db3@avcodec.org> #2010: ffplay can't seek in file that vlc and mplayer -demuxer mov can seek -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: seek mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: seek => seek mov -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 13:54:22 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 12:54:22 -0000 Subject: [FFmpeg-trac] #1487(avformat:new): ffmpeg's mpeg mux bug(s) never fixed... In-Reply-To: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> References: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> Message-ID: <051.3f7bd7aef907a97aef8add7e26bac510@avcodec.org> #1487: ffmpeg's mpeg mux bug(s) never fixed... ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Is this still reproducible for current git head? If it is, please provide your command line together with complete, uncut console output for git head. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 13:58:41 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 12:58:41 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.012a6cbbe40fd6e3ad6b0a1ead09d793@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [ticket:2037 ramitbhalla]: > This is creating a problem since while converting to mp4 the audio is slowly going of out sync with the video (upto 5 seconds after about an hour of recording). This sounds like an important issue, could you provide a sample that allows to reproduce this? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 14:14:35 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 13:14:35 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals Message-ID: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Type: defect Status: new | Priority: normal Component: build | Version: git- system | master Keywords: msvc | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: Compilation ffmpeg with toolchain=msvc leads to unresolved external simbols. How to reproduce: I use guide from this page: http://blogs.gnome.org/rbultje/2012/09/27 /microsoft-visual-studio-support-in-ffmpeg-and-libav/ I.e. * Open MSVC2010 command prompt * Run mingw-msys shell {{{c:\mingw\msys\1.0\msys.bat}}} * configure ffmpeg {{{./configure --toolchain=msvc --extra-cflags="-MD"}}} Waiting, while configuration has done. * make At the end of building I have error messages: {{{ LD ffmpeg_g.exe LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; us e /NODEFAULTLIB:library libavutil.a(opt.o) : error LNK2001: unresolved external symbol __imp__avpriv_snp rintf libavutil.a(pixdesc.o) : error LNK2001: unresolved external symbol __imp__avpriv _snprintf libavutil.a(samplefmt.o) : error LNK2001: unresolved external symbol __imp__avpr iv_snprintf ... ffmpeg.o : error LNK2019: unresolved external symbol __imp__avpriv_vsnprintf ref erenced in function _update_benchmark libavformat.a(aviobuf.o) : error LNK2001: unresolved external symbol __imp__avpr iv_vsnprintf libavformat.a(utils.o) : error LNK2001: unresolved external symbol __imp__avpriv _vsnprintf libavformat.a(rtpproto.o) : error LNK2001: unresolved external symbol __imp__avp riv_vsnprintf libavformat.a(rtmpproto.o) : error LNK2019: unresolved external symbol __imp__av priv_strtod referenced in function _rtmp_write_amf_data libavformat.a(sbgdec.o) : error LNK2001: unresolved external symbol __imp__avpri v_strtod libavutil.a(parseutils.o) : error LNK2001: unresolved external symbol __imp__avp riv_strtod libavutil.a(eval.o) : error LNK2001: unresolved external symbol __imp__avpriv_st rtod ffmpeg_g.exe : fatal error LNK1120: 3 unresolved externals make: *** [ffmpeg_g.exe] Error 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 16:13:38 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 15:13:38 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.f4c46287fef5aaf11bbc922ff0f07ac3@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Why do you want to add -MD to the compiler flags? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 16:29:59 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 15:29:59 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.7757ad5a940151c33dc4fa7867b93192@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Sure, the original video is 5GB, I've cut out a 100MB and uploaded it here. http://www.mediafire.com/?8bfooipkdf1e56l The complete original command I'm using is (converting to divx): {{{ ffmpeg -async 1 -threads 0 -drc_scale 0.8 -y -i test-audio-broken.ts -ss 3 -vf yadif=0:-1,hqdn3d,crop=1280:720:0:0,scale=720:400 -vcodec mpeg4 -vtag xvid -b 1800000 -f avi -flags +mv4+aic -g 300 -dts_delta_threshold 0 -acodec ac3 -ab 256k -ac 2 test.avi }}} However the problem can be replicated (and is actually aggrevated) using: {{{ ffmpeg -i test-audio-broken.ts -vcodec mpeg4 -vtag xvid -b 1800000 -acodec ac3 -ab 256k test.avi }}} basic output: {{{ ffmpeg version N-46726-g2f74f8d Copyright (c) 2000-2012 the FFmpeg developers built on Nov 13 2012 19:29:51 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable -bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroed inger --enable-libspeex --enable-libtheora --enable-libutvideo --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 6.100 / 52. 6.100 libavcodec 54. 71.100 / 54. 71.100 libavformat 54. 36.100 / 54. 36.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.100 / 3. 23.100 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 16.100 / 0. 16.100 libpostproc 52. 1.100 / 52. 1.100 [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 76 times [mpegts @ 022db0e0] PES packet size mismatch Input #0, mpegts, from 'test-audio-broken.ts': Duration: 00:01:20.02, start: 1.400000, bitrate: 10483 kb/s Program 1 Metadata: service_name : WVLTDT (WVLT-DT) service_provider: WVLTDT Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fp s, 59.94 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, s16, 192 kb/s Please use -b:a or -b:v, -b is ambiguous File 'test.avi' already exists. Overwrite ? [y/N] y Output #0, avi, to 'test.avi': Metadata: ISFT : Lavf54.36.100 Stream #0:0: Video: mpeg4 (xvid / 0x64697678), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 1800 kb/s, 59.94 tbn, 5 9.94 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (mpeg2video -> mpeg4) Stream #0:1 -> #0:1 (ac3 -> ac3) Press [q] to stop, [?] for help [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 11 times Adjusting PTS forward=8.6 size= 364kB time=00:00:01.40 bitrate=2130.5kbits/s [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 11 times Adjusting PTS forward=8.3 size= 668kB time=00:00:02.51 bitrate=2171.4kbits/s [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 12 times Adjusting PTS forward=10.6 size= 952kB time=00:00:03.68 bitrate=2115.7kbits/s [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 13 times Adjusting PTS forward=11.4 size= 1235kB time=00:00:04.93 bitrate=2049.3kbits/s [mpegts @ 022db0e0] Adjusting PTS forward Last message repeated 11 times ... ... Adjusting PTS forward=31.0 size= 32440kB time=00:02:12.58 bitrate=2004.4kbits/s [mpegts @ 0215b0e0] Adjusting PTS forward Last message repeated 1 times [mpegts @ 0215b0e0] PES packet size mismatch [mpegts @ 0215b0e0] Adjusting PTS forward [mpeg2video @ 02d7dc00] Warning MVs not available [mpeg2video @ 02d7dc00] concealing 741 DC, 741 AC, 741 MV errors in B frame frame= 4764 fps= 90 q=31.0 Lsize= 32796kB time=00:02:12.94 bitrate=2020.8kbits/s video:30004kB audio:2496kB subtitle:0 global headers:0kB muxing overhead 0.911038% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 18:21:54 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 17:21:54 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.5162552fde98da3e5c8a737b624e3409@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Piroxiljin): Replying to [comment:1 cehoyos]: > Why do you want to add -MD to the compiler flags? I use ffmpeg libraries, and my application and all other libraries are linked with DLL run-time library. MSDN: /MD, /MT, /LD (Use Run-Time Library) (http://msdn.microsoft.com/en- us/library/2kzt1wy3(v=vs.100).aspx) -MD Causes your application to use the multithread- and DLL-specific version of the run-time library. -MT Causes your application to use the multithread, static version of the run-time library. Also, I found out that prefix {{{__imp__}}} appears when object-file compiles with -MD. In another way (without -MD, or with -MT) all unresolved symbols has another prefix.(I'm not sure, but I belive it just underscore. I'll check it tomorrow. ) And those object-files (and static libavutils.a) successfully linked with ffmpeg.exe -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 18:33:38 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 17:33:38 -0000 Subject: [FFmpeg-trac] #1487(avformat:new): ffmpeg's mpeg mux bug(s) never fixed... In-Reply-To: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> References: <036.24f34a04f9a149dec630fbb1a107878d@avcodec.org> Message-ID: <051.d763d53177436ae5b26fcbc3877c2baf@avcodec.org> #1487: ffmpeg's mpeg mux bug(s) never fixed... ------------------------------------+------------------------------------ Reporter: downuse | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by downuse): Replying to [comment:10 cehoyos]: > Is this still reproducible for current git head? If it is, please provide your command line together with complete, uncut console output for git head. default muxrate estimating seems fixed. but system_clock_reference_base is still not begin with zero. and some buffer underflow problems. ffmpeg started on 2012-12-21 at 01:22:34 Report written to "ffmpeg-20121221-012234.log" Command line: ffmpeg -loglevel debug -report -y -i 480.m2v -i 480.mp2 -map 0 -c copy -map 1 -c copy -f svcd 480.mpg ffmpeg version 1.0.git-c7a1239 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 01:09:25 with gcc 4.6.2 (GCC) configuration: --enable-gpl --enable-version3 --enable-libvo-aacenc --disable-hwaccels --disable-devices --disable-bzlib --disable-zlib libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Splitting the commandline. Reading option '-loglevel' ... matched as option 'loglevel' (set libav* logging level) with argument 'debug'. Reading option '-report' ... matched as option 'report' (generate a report) with argument '1'. Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'. Reading option '-i' ... matched as input file with argument '480.m2v'. Reading option '-i' ... matched as input file with argument '480.mp2'. Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '0'. Reading option '-c' ... matched as option 'c' (codec name) with argument 'copy'. Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '1'. Reading option '-c' ... matched as option 'c' (codec name) with argument 'copy'. Reading option '-f' ... matched as option 'f' (force format) with argument 'svcd'. Reading option '480.mpg' ... matched as output file. Finished splitting the commandline. Parsing a group of options: global . Applying option loglevel (set libav* logging level) with argument debug. Applying option report (generate a report) with argument 1. Applying option y (overwrite output files) with argument 1. Successfully parsed a group of options. Parsing a group of options: input file 480.m2v. Successfully parsed a group of options. Opening an input file: 480.m2v. [mpegvideo @ 017cf6a0] Format mpegvideo probed with size=8192 and score=51 [mpegvideo @ 017cf6a0] File position before avformat_find_stream_info() is 0 [mpegvideo @ 017cf6a0] max_analyze_duration 5000000 reached at 5005000 [mpegvideo @ 017cf6a0] Estimating duration from bitrate, this may be inaccurate [mpegvideo @ 017cf6a0] File position after avformat_find_stream_info() is 2267136 Input #0, mpegvideo, from '480.m2v': Duration: N/A, bitrate: N/A Stream #0:0, 152, 1/1200000: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 32:27 DAR 16:9], 1001/60000, 29.97 fps, 29.97 tbr, 1200k tbn, 59.94 tbc Successfully openened the file. Parsing a group of options: input file 480.mp2. Successfully parsed a group of options. Opening an input file: 480.mp2. [mp3 @ 0291e9e0] Format mp3 probed with size=4096 and score=51 [mp3 @ 0291e9e0] File position before avformat_find_stream_info() is 0 [mp3 @ 0291e9e0] max_analyze_duration 5000000 reached at 5015510 [mp3 @ 0291e9e0] Estimating duration from bitrate, this may be inaccurate [mp3 @ 0291e9e0] File position after avformat_find_stream_info() is 143360 Input #1, mp3, from '480.mp2': Duration: 00:04:09.00, start: 0.000000, bitrate: 223 kb/s Stream #1:0, 194, 1/14112000: Audio: mp2, 44100 Hz, stereo, s16p, 224 kb/s Successfully openened the file. Parsing a group of options: output file 480.mpg. Applying option map (set input stream mapping) with argument 0. Applying option c (codec name) with argument copy. Applying option map (set input stream mapping) with argument 1. Applying option c (codec name) with argument copy. Applying option f (force format) with argument svcd. Successfully parsed a group of options. Opening an output file: 480.mpg. Successfully openened the file. Output #0, svcd, to '480.mpg': Metadata: encoder : Lavf54.49.102 Stream #0:0, 0, 1/90000: Video: mpeg2video, yuv420p, 720x480 [SAR 32:27 DAR 16:9], 1001/30000, q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream #0:1, 0, 1/90000: Audio: mp2, 44100 Hz, stereo, 224 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #1:0 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 2395 fps=0.0 q=-1.0 size= 36852kB time=00:01:19.91 bitrate=3777.7kbits/s buffer underflow i=0 bufi=106197 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=108221 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=110245 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=112269 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=114293 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=116317 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=118341 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=120365 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=122389 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=124413 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=126437 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=128461 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=130485 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=132509 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=134533 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=134533 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=136557 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=138581 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=140605 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=142629 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=144653 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=146677 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=148701 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=150725 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=152749 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=154773 size=156633 [svcd @ 028db9e0] buffer underflow i=0 bufi=164 size=10030 [svcd @ 028db9e0] buffer underflow i=0 bufi=2188 size=10030 [svcd @ 028db9e0] buffer underflow i=0 bufi=4212 size=10030 [svcd @ 028db9e0] buffer underflow i=0 bufi=6218 size=10030 [svcd @ 028db9e0] buffer underflow i=0 bufi=8242 size=10030 [svcd @ 028db9e0] buffer underflow i=0 bufi=231 size=7186 [svcd @ 028db9e0] buffer underflow i=0 bufi=2255 size=7186 [svcd @ 028db9e0] buffer underflow i=0 bufi=4279 size=7186 [svcd @ 028db9e0] buffer underflow i=0 bufi=6303 size=7186 [svcd @ 028db9e0] buffer underflow i=0 bufi=1136 size=7399 [svcd @ 028db9e0] buffer underflow i=0 bufi=3160 size=7399 [svcd @ 028db9e0] buffer underflow i=0 bufi=5184 size=7399 [svcd @ 028db9e0] buffer underflow i=0 bufi=7208 size=7399 [svcd @ 028db9e0] buffer underflow i=0 bufi=1833 size=6403 [svcd @ 028db9e0] buffer underflow i=0 bufi=3857 size=6403 [svcd @ 028db9e0] buffer underflow i=0 bufi=5881 size=6403 [svcd @ 028db9e0] buffer underflow i=0 bufi=1497 size=8155 [svcd @ 028db9e0] buffer underflow i=0 bufi=3521 size=8155 [svcd @ 028db9e0] buffer underflow i=0 bufi=5545 size=8155 [svcd @ 028db9e0] buffer underflow i=0 bufi=7569 size=8155 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=0 bufi=5481 size=8330 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=0 bufi=7505 size=8330 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 frame= 3424 fps=3221 q=-1.0 size= 52772kB time=00:01:54.24 bitrate=3784.0kbits/s buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=420 size=731 [svcd @ 028db9e0] buffer underflow i=1 bufi=245 size=731 frame= 4632 fps=2963 q=-1.0 size= 71250kB time=00:02:34.55 bitrate=3776.5kbits/s frame= 5297 fps=2560 q=-1.0 size= 81430kB time=00:02:56.74 bitrate=3774.2kbits/s frame= 5751 fps=2235 q=-1.0 size= 88444kB time=00:03:11.89 bitrate=3775.7kbits/s frame= 6109 fps=1978 q=-1.0 size= 93962kB time=00:03:23.83 bitrate=3776.2kbits/s No more output streams to write to, finishing. frame= 7459 fps=2266 q=-1.0 Lsize= 114608kB time=00:04:08.99 bitrate=3770.6kbits/s video:106386kB audio:6809kB subtitle:0 global headers:0kB muxing overhead 1.248262% [AVIOContext @ 017cfc40] Statistics: 108939733 bytes read, 0 seeks [AVIOContext @ 0276f680] Statistics: 7004873 bytes read, 2 seeks -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 22:16:03 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 21:16:03 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.76419174a128f063722d922ff272a1c5@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:2 Piroxiljin]: > Replying to [comment:1 cehoyos]: > > Why do you want to add -MD to the compiler flags? > MSDN: /MD, /MT, /LD (Use Run-Time Library) (http://msdn.microsoft.com /en-us/library/2kzt1wy3(v=vs.100).aspx) > -MD Causes your application to use the multithread- and DLL-specific version of the run-time library. I had also read that page today and please excuse my ignorance but are you sure that "/MD" is the same as "-MD"? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 23:02:51 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 22:02:51 -0000 Subject: [FFmpeg-trac] #2006(avcodec:closed): tiff: support lzw with inverted FillOrder In-Reply-To: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> References: <038.9e4c69c4bdd0561a3b905a7b739149a6@avcodec.org> Message-ID: <053.a84c3dee52e983bf96ba30ae4a343512@avcodec.org> #2006: tiff: support lzw with inverted FillOrder ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: I believe you fixed this ticket;-) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 20 23:42:59 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 22:42:59 -0000 Subject: [FFmpeg-trac] #1948(avformat:closed): dxa: signal EOF In-Reply-To: <038.fa08807c54684914a7e24be8216b8054@avcodec.org> References: <038.fa08807c54684914a7e24be8216b8054@avcodec.org> Message-ID: <053.a8c8e487a16bdfc525a73fda8a21079d@avcodec.org> #1948: dxa: signal EOF ------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: dxa | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 00:01:36 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 23:01:36 -0000 Subject: [FFmpeg-trac] #1980(undetermined:closed): ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) In-Reply-To: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> References: <035.03466a7695e45748f64d1104901c2a05@avcodec.org> Message-ID: <050.6a5f4e1825818118a7c5fa8c655f66ac@avcodec.org> #1980: ffmpeg process hangs with 100% CPU when getting a live rtsp stream (on redhat linux) -------------------------------------+------------------------------------- Reporter: muthuk | Owner: Type: defect | Status: closed Priority: normal | Component: Version: 1.0 | undetermined Keywords: rtsp | Resolution: Blocking: | needs_more_info Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: As said, this sounds like an important issue, please reopen if you can provide a rtsp link that allows to reproduce the problem or a backtrace etc. as explained on http://ffmpeg.org/bugreports.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 00:23:26 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 20 Dec 2012 23:23:26 -0000 Subject: [FFmpeg-trac] #2045(avformat:new): FPE when copying timecode track In-Reply-To: <036.9d5bcfc20a1cd853116ef631a44b3dc7@avcodec.org> References: <036.9d5bcfc20a1cd853116ef631a44b3dc7@avcodec.org> Message-ID: <051.dc37bc7ac9c1eaa9c3eaaa6c33cc14ed@avcodec.org> #2045: FPE when copying timecode track -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: crash fpe | Blocked By: regression mov | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Regression since 5c7a62a. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 02:42:37 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 01:42:37 -0000 Subject: [FFmpeg-trac] #2050(undetermined:new): Playback of HD-PVR recordings failing Message-ID: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: This is a sample produced by a HD-PVR. ffplay could play that file as of commit 74d6871 It doesn't play the file any longer (tested in revision d3db8988 and later) , instead showing a garbage static or a static image with audio. (As a result, MythTV 0.26 is unable to play properly HDPVR recordings (0.25 used ffmpeg as of 74d6871, and 0.26 uses cc4d80c)) File (50MB) is available on: http://www.avenard.org/files/media/mediatest/11159%20HD-PVR%20sample.mpg {{{ Start it from the beginning? (y or n) y Starting program: /Users/jyavenard/Work/mythtv/ffmpeg/ffplay_g ~/Downloads/#11159\ HD-PVR\ sample.mpg Reading symbols for shared libraries . done ffplay version N-48064-gcfa5300 Copyright (c) 2003-2012 the FFmpeg developers built on Dec 21 2012 12:39:20 with llvm-gcc 4.2.1 (LLVM build 2336.11.00) configuration: --enable-debug libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] Reading symbols for shared libraries + done no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 15 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS referenced [h264 @ 0x103008c00] sps_id out of range [h264 @ 0x103008c00] non-existing SPS 32 referenced in buffering period [h264 @ 0x103008c00] non-existing PPS 0 referenced [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] no frame! [h264 @ 0x103008c00] mmco: unref short failure Last message repeated 1 times [h264 @ 0x103008c00] Missing reference picture, default is 65608 [h264 @ 0x103008c00] Reference 6 >= 5 [h264 @ 0x103008c00] error while decoding MB 14 0, bytestream (23698) [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] reference count overflow [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103008c00] decode_slice_header error [h264 @ 0x103008c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103008c00] Reinit context to 1280x720, pix_fmt: 0 [h264 @ 0x103008c00] mmco: unref short failure Last message repeated 1 times [h264 @ 0x103008c00] cabac decode of qscale diff failed at 59 38 [h264 @ 0x103008c00] error while decoding MB 59 38, bytestream (72519) [h264 @ 0x103008c00] concealing 550 DC, 550 AC, 550 MV errors in B frame [mpegts @ 0x10183bc00] max_analyze_duration 5000000 reached at 5024000 Input #0, mpegts, from '/Users/jyavenard/Downloads/#11159 HD-PVR sample.mpg': Duration: 00:00:44.40, start: 0.419044, bitrate: 9447 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (Main) (HDMV / 0x564D4448), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 53.25 fps, 59.94 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s Reading symbols for shared libraries + done Reading symbols for shared libraries + done Reading symbols for shared libraries . done [h264 @ 0x10380b000] Missing reference picture, default is 0 [h264 @ 0x10380b000] decode_slice_header error [h264 @ 0x10380b000] mmco: unref short failure2KB sq= 0B f=0/0 Last message repeated 1 times 20KB vq= 0KB sq= 0B f=0/0 [h264 @ 0x103818800] Missing reference picture, default is 65608 [h264 @ 0x103818800] Reference 6 >= 5 [h264 @ 0x103818800] error while decoding MB 14 0, bytestream (23698) [h264 @ 0x103818800] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103818e00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103818e00] illegal reordering_of_pic_nums_idc [h264 @ 0x103818e00] decode_slice_header error [h264 @ 0x103818e00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103819400] illegal reordering_of_pic_nums_idc [h264 @ 0x103819400] decode_slice_header error [h264 @ 0x103819400] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x10380b000] reference count overflow [h264 @ 0x10380b000] decode_slice_header error [h264 @ 0x10380b000] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103816a00] illegal reordering_of_pic_nums_idc [h264 @ 0x103816a00] decode_slice_header error [h264 @ 0x103816a00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103817000] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103817000] illegal reordering_of_pic_nums_idc [h264 @ 0x103817000] decode_slice_header error [h264 @ 0x103817000] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817600] illegal reordering_of_pic_nums_idc 0B f=0/0 [h264 @ 0x103817600] decode_slice_header error [h264 @ 0x103817600] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103817c00] decode_slice_header error [h264 @ 0x103817c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818200] illegal reordering_of_pic_nums_idc [h264 @ 0x103818200] decode_slice_header error [h264 @ 0x103818200] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103818800] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103818800] illegal reordering_of_pic_nums_idc [h264 @ 0x103818800] decode_slice_header error [h264 @ 0x103818800] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818e00] illegal reordering_of_pic_nums_idc [h264 @ 0x103818e00] decode_slice_header error [h264 @ 0x103818e00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103819400] illegal reordering_of_pic_nums_idc [h264 @ 0x103819400] decode_slice_header error [h264 @ 0x103819400] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x10380b000] illegal reordering_of_pic_nums_idc [h264 @ 0x10380b000] decode_slice_header error [h264 @ 0x10380b000] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103816a00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103816a00] illegal reordering_of_pic_nums_idc [h264 @ 0x103816a00] decode_slice_header error [h264 @ 0x103816a00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817000] illegal reordering_of_pic_nums_idc [h264 @ 0x103817000] decode_slice_header error [h264 @ 0x103817000] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817600] illegal reordering_of_pic_nums_idc [h264 @ 0x103817600] decode_slice_header error [h264 @ 0x103817600] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103817c00] decode_slice_header error [h264 @ 0x103817c00] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103818200] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103818200] illegal reordering_of_pic_nums_idc [h264 @ 0x103818200] decode_slice_header error [h264 @ 0x103818200] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818800] illegal reordering_of_pic_nums_idc [h264 @ 0x103818800] decode_slice_header error [h264 @ 0x103818800] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818e00] illegal reordering_of_pic_nums_idc 0B f=0/0 [h264 @ 0x103818e00] decode_slice_header error [h264 @ 0x103818e00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103819400] illegal reordering_of_pic_nums_idc [h264 @ 0x103819400] decode_slice_header error [h264 @ 0x103819400] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x10380b000] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x10380b000] illegal reordering_of_pic_nums_idc [h264 @ 0x10380b000] decode_slice_header error [h264 @ 0x10380b000] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103816a00] illegal reordering_of_pic_nums_idc [h264 @ 0x103816a00] decode_slice_header error [h264 @ 0x103816a00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817000] illegal reordering_of_pic_nums_idc [h264 @ 0x103817000] decode_slice_header error [h264 @ 0x103817000] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103817600] illegal reordering_of_pic_nums_idc [h264 @ 0x103817600] decode_slice_header error [h264 @ 0x103817600] concealing 1350 DC, 1350 AC, 1350 MV errors in P frame [h264 @ 0x103817c00] number of reference frames (0+5) exceeds max (4; probably corrupt input), discarding one [h264 @ 0x103817c00] illegal reordering_of_pic_nums_idc [h264 @ 0x103817c00] decode_slice_header error [h264 @ 0x103817c00] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818200] illegal reordering_of_pic_nums_idc [h264 @ 0x103818200] decode_slice_header error [h264 @ 0x103818200] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818800] illegal reordering_of_pic_nums_idc [h264 @ 0x103818800] decode_slice_header error [h264 @ 0x103818800] concealing 1350 DC, 1350 AC, 1350 MV errors in B frame [h264 @ 0x103818e00] Reinit context to 1280x720, pix_fmt: 0 [h264 @ 0x103819400] mmco: unref short failure [h264 @ 0x103817600] mmco: unref short failure [h264 @ 0x103819400] cabac decode of qscale diff failed at 59 380 [h264 @ 0x103819400] error while decoding MB 59 38, bytestream (72519) [h264 @ 0x103819400] concealing 550 DC, 550 AC, 550 MV errors in B frame Frame changed from size:0x0 to size:720x480 [ffplay_buffer @ 0x1021297e0] Changing frame properties on the fly is not supported by all filters. Assertion abs(src_linesize) >= bytewidth failed at libavutil/imgutils.c:248 Program received signal SIGABRT, Aborted. [Switching to process 5427 thread 0xbf03] 0x00007fff8e953212 in __pthread_kill () (gdb) bt #0 0x00007fff8e953212 in __pthread_kill () #1 0x00007fff8a8caaf4 in pthread_kill () #2 0x00007fff8a90edce in abort () (gdb) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 02:42:56 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 01:42:56 -0000 Subject: [FFmpeg-trac] #2050(undetermined:new): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.303e752b5eab1c22aa3069da3ab34c62@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by jyavenard): working on a git bisect now -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 03:19:26 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 02:19:26 -0000 Subject: [FFmpeg-trac] #2050(undetermined:new): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.69db8d83b276c41e7bc6736eb4d974f9@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by jyavenard): Commit where the problem first occur is: 4478e9d8db65ca827f2b3ef3ef6ee806bffdba45 {{{ Merge remote-tracking branch 'qatar/master' * qatar/master: FATE: add tests for dfa mpegaudiodec: fix seeking. mpegaudiodec: fix compilation when testing the unchecked bitstream reader threads: add sysconf based number of CPUs detection threads: always include necessary headers for number of CPUs detection threads: default to automatic thread count detection Changelog: restore version header cook: K&R formatting cosmetics Conflicts: Changelog libavcodec/version.h Merged-by: Michael Niedermayer }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 05:18:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 04:18:41 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.d6717ea4eb5c33356cb681db64b7a0b8@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Piroxiljin): Replying to [comment:3 cehoyos]: > Replying to [comment:2 Piroxiljin]: > > Replying to [comment:1 cehoyos]: > > > Why do you want to add -MD to the compiler flags? > > MSDN: /MD, /MT, /LD (Use Run-Time Library) (http://msdn.microsoft.com /en-us/library/2kzt1wy3(v=vs.100).aspx) > > -MD Causes your application to use the multithread- and DLL-specific version of the run-time library. > I had also read that page today and please excuse my ignorance but are you sure that "/MD" is the same as "-MD"? Compiler Command-Line Syntax (http://msdn.microsoft.com/en- us/library/610ecb4h(v=vs.100).aspx) {{{CL [option...] file... [option | file]... [lib...] [@command-file] [/link link-opt...]}}} {{{option}}} - One or more CL options. Note that all options apply to all specified source files. Options are specified by either a forward slash (/) or a dash (?). If an option takes an argument, the option's description documents whether a space is allowed between the option and the arguments. Option names (except for the /HELP option) are case sensitive. See Order of CL Options for more information. Yes, I am. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 07:17:44 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 06:17:44 -0000 Subject: [FFmpeg-trac] #2049(build system:new): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.31c0a33e49765c79c262fc6ee7d7df5f@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Piroxiljin): Well. The source of the trouble is c99wrap. It preprocesses source code with commands like {{{ c99wrap cl -I. -I./ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ -Dstrtod=avpriv_strtod -Dsnprintf=avpriv_snprintf -D_snprintf=avpriv_snprintf \ -Dvsnprintf=avpriv_vsnprintf -DHAVE_AV_CONFIG_H -nologo -D_USE_MATH_DEFINES \ -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64 -Oy -Z7 -W4 -wd4244 \ -wd4127 -wd4018 -wd4389 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 -wd4152 \ -wd4324 -we4013 -wd4100 -wd4214 -wd4554 -wd4996 -wd4273 -O2 -MD -c \ -Fo libavutil/../compat/msvcrt/snprintf.o libavutil/../compat/msvcrt/snprintf.c }}} Here we have preprocessor defines which replace "snprintf" to "avpriv_snprintf" Also, preprocessed source file includes declarations of _snprintf ( and another functions from standart library). When we compile with -MD, this functions declared as {{{ #pragma warning(push) #pragma warning(disable:4793) __declspec(deprecated("This function or variable may be unsafe. Consider using " \ "_snprintf_s" " instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.")) \ __declspec(dllimport) int __cdecl _snprintf( char *_Dest, size_t _Count, const char * _Format, ...);\ __declspec(deprecated("This function or variable may be unsafe. Consider using " "_vsnprintf_s" " instead. \ To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.")) \ __declspec(dllimport) int __cdecl _vsnprintf( char *_Dest, size_t _Count, const char * _Format, va_list _Args); #pragma warning(pop) }}} I.e. this functions declared as imported from DLL. But preprocessor replace such declarations and so we have our {{{avpriv_snprintf}}} function is declared as imported. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 08:34:59 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 07:34:59 -0000 Subject: [FFmpeg-trac] #2050(undetermined:new): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.caa42140a1adea2a8fa800b74ad9e8e0@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: regression | Resolution: crash abort | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => regression crash abort * priority: normal => important * version: unspecified => git-master Comment: Replying to [ticket:2050 jyavenard]: > File (50MB) is available on: > http://www.avenard.org/files/media/mediatest/11159%20HD-PVR%20sample.mpg Unfortunately not (403). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 11:47:33 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 10:47:33 -0000 Subject: [FFmpeg-trac] #2051(undetermined:new): Video merging sinking issue Message-ID: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> #2051: Video merging sinking issue -------------------------------------+------------------------------------- Reporter: elbysam | Type: defect Status: new | Priority: important Component: | Version: undetermined | unspecified Keywords: ffmpeg, | Blocked By: video merging | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Hi all, We are trying to merge couple of videos. Using code { ffmpeg -i input.flv -qscale:v 1 -y output.mpg } then an issue occurred in audio / Video Sinking. ie the lips sink is not correct. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 11:58:11 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 10:58:11 -0000 Subject: [FFmpeg-trac] #2052(undetermined:new): rm: fix the real duration for sipr in ra4 Message-ID: <038.18da25a192a43e3fed168d304dc9c69f@avcodec.org> #2052: rm: fix the real duration for sipr in ra4 -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- maybe useful: libavcodec/utils.c: {{{ if (ba > 0) { // calc from block_align if (id == AV_CODEC_ID_SIPR) { switch (ba) { case 20: return 160; case 19: return 144; case 29: return 288; case 37: return 480; } } else if (id == AV_CODEC_ID_ILBC) { switch (ba) { case 38: return 160; case 50: return 240; } } } }}} {{{ C:\>ffmpeg -i RA5.0_16kbps_voice_wideband.ra -f null - ffmpeg version N-48063-g230bef0 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 02:24:12 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Truncating packet of size 160 to 28 [rm @ 0x1eeeb80] Estimating duration from bitrate, this may be inaccurate Input #0, rm, from 'RA5.0_16kbps_voice_wideband.ra': Metadata: title : author : copyright : comment : Duration: N/A, bitrate: N/A Stream #0:0: Audio: sipr (sipr / 0x72706973), 16000 Hz, mono, flt Output #0, null, to 'pipe:': Metadata: title : author : copyright : comment : encoder : Lavf54.49.102 Stream #0:0: Audio: pcm_s16le, 16000 Hz, mono, s16, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (sipr -> pcm_s16le) Press [q] to stop, [?] for help Multiple frames in a packet from stream 0 [null @ 0x1ffc440] st:0 PTS: 900 DTS: 900 < 6301 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 1800 DTS: 1800 < 6302 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 2700 DTS: 2700 < 6303 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 3600 DTS: 3600 < 6304 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 4500 DTS: 4500 < 6305 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 6306 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 6307 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 1800 DTS: 1800 < 7201 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 2700 DTS: 2700 < 7202 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 3600 DTS: 3600 < 7203 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 4500 DTS: 4500 < 7204 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 7205 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 7206 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 7207 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 2700 DTS: 2700 < 8101 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 3600 DTS: 3600 < 8102 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 4500 DTS: 4500 < 8103 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 8104 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 8105 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 8106 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 8107 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 3600 DTS: 3600 < 9001 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 4500 DTS: 4500 < 9002 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 9003 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 9004 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 9005 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 9006 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 9007 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 4500 DTS: 4500 < 9901 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 9902 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 9903 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 9904 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 9905 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 9906 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 9907 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 5400 DTS: 5400 < 10801 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 10802 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 10803 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 10804 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 10805 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 10806 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 10800 DTS: 10800 < 10807 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 6300 DTS: 6300 < 11701 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 11702 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 11703 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 11704 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 11705 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 10800 DTS: 10800 < 11706 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 11700 DTS: 11700 < 11707 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 7200 DTS: 7200 < 12601 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 12602 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 12603 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 12604 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 10800 DTS: 10800 < 12605 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 11700 DTS: 11700 < 12606 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 12600 DTS: 12600 < 12607 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 8100 DTS: 8100 < 13501 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 13502 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 13503 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 10800 DTS: 10800 < 13504 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 11700 DTS: 11700 < 13505 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 12600 DTS: 12600 < 13506 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 13500 DTS: 13500 < 13507 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9000 DTS: 9000 < 14401 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 9900 DTS: 9900 < 14402 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 10800 DTS: 10800 < 14403 invalid, clipping st:0 PTS: 11700 DTS: 11700 < 14404 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 12600 DTS: 12600 < 14405 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 13500 DTS: 13500 < 14406 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 14400 DTS: 14400 < 14407 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 342900 DTS: 342900 < 344705 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 343800 DTS: 343800 < 344706 invalid, clipping [null @ 0x1ffc440] st:0 PTS: 344700 DTS: 344700 < 344707 invalid, clipping [sipr @ 0x1eef4c0] Error processing packet: packet size (7) too small Error while decoding stream #0:0: Error number -1 occurred [null @ 0x1ffc440] st:0 PTS: 340200 DTS: 340200 < 345601 invalid, clipping RA5.0_16kbps_voice_wideband.ra: Input/output error size= 0kB time=00:00:03.85 bitrate= 0.0kbits/s video:0kB audio:945kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 12:16:04 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 11:16:04 -0000 Subject: [FFmpeg-trac] #2051(undetermined:new): Video merging sinking issue In-Reply-To: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> References: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> Message-ID: <051.62f7c731e8424862063cacd32a203c10@avcodec.org> #2051: Video merging sinking issue -------------------------------------+------------------------------------- Reporter: elbysam | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: ffmpeg, video merging => * priority: important => normal Comment: To make this a valid ticket, please provide the command line you are using together with the complete, uncut console output. And please consider providing a sample that allows to reproduce the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 12:26:23 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 11:26:23 -0000 Subject: [FFmpeg-trac] #2051(undetermined:new): Video merging sinking issue In-Reply-To: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> References: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> Message-ID: <051.7c6c98d45bb582a2288b194ada88b1d7@avcodec.org> #2051: Video merging sinking issue -------------------------------------+------------------------------------- Reporter: elbysam | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by elbysam): Hi all, We are trying to merge couple of videos. Using code { ffmpeg -i input1.flv -qscale:v 1 -y output1.mpg } { ffmpeg -i input2.flv -qscale:v 1 -y output2.mpg } for join videos using { cat output1.mpg output2.mpg > indeterminate_all.mpg } We got complete output using following code { ffmpeg -i indeterminate_all.mpg -qscale:v 2 completeoutput.avi } then an issue occurred in audio / Video Sinking. ie the lips sink is not correct. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 12:35:25 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 11:35:25 -0000 Subject: [FFmpeg-trac] #2050(undetermined:new): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.8fc295fed3074cebe591f07d2a797723@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: regression | Resolution: crash abort | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by jyavenard): Sorry for that.l, fixed. I should had that release/1.0 and earlier will play the file if ffplay is run with -threads 1. 4478e9d8 is the commit that made multi-threading the default. Current master, will assert. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 16:22:51 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 15:22:51 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.91f43f971641b5b82b08a95f488191d4@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by julian): seems this crash does not only occur in "obscure" asiatic subtitles but also in german ones, e.g. in this file: "Star-Trek-German-720p-BluRay-x264-EmpireHD" / "empire-st11-720p.mkv". -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 17:36:31 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 16:36:31 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.c77ac9aacb70a48ced616a82ebf6ca06@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Did you provide the file? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 17:39:33 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 16:39:33 -0000 Subject: [FFmpeg-trac] #2050(avcodec:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.556ad7bc29a56bd72bafdf294fb7f9fb@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * component: undetermined => avcodec * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 17:47:13 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 16:47:13 -0000 Subject: [FFmpeg-trac] #2050(avcodec:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.857567718e93e22e35a3f2024d6de867@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Only reproducible with ffplay. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 19:20:42 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 18:20:42 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.9742840f890bbee907fe69731ec95ee3@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by julian): no its the same crash. one sample should be enough and i can't upload a 7GB copyrighted file. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 19:22:40 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 18:22:40 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.c384ae8a7e7828093090f2cfd0c7aed5@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:4 julian]: > no its the same crash. one sample should be enough I completely agree (if it is the same crash which I don't know), I only wonder why you mentioned a second file? (A crash does not get less important if it is difficult to trigger as long as there is a sample that triggers the crash.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 19:26:06 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 18:26:06 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.700c8af9e816c14cb83078dfd430a313@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by julian): >(if it is the same crash which I don't know) i'm quite sure, its also in ff_ass_split_override_codes(). will test with this file too once a fix is available to confirm. >(A crash does not get less important if it is difficult to trigger as long as there is a sample that triggers the crash.) ok thanks. i believed so, thats why i mentioned it. i guessed if the crash occurred /only/ in some obscure asiatic subtitles which are hard to come by it would be low priority ... at least we know its not related to a specific language now. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 21 22:36:12 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 21 Dec 2012 21:36:12 -0000 Subject: [FFmpeg-trac] #2050(avcodec:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.38a40a0bdb6e515a5d3436a288917a69@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by jyavenard): Thank you for looking into it. The crash only occurs with ffplay on master (though latest VLC 2.0.4 crashes in a similar fashion). ffplay from release/1.0 branch doesn't crash, however it only shows a static frame (see screen capture) This is what is shown by most players I've tried using a recentish ffmpeg. mplayer started with: -lavdopts threads=2 will show the same static frame. ffplay plays the file fine if started with -threads 1. VLC 2.0.4 shows the static frame. VLV 1.1.10 plays the file fine. E.g. as soon as multi-threading is enabled, playback will stay on the first frame. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 03:11:54 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 02:11:54 -0000 Subject: [FFmpeg-trac] #1828(avformat:closed): Start timestamp ignored when muxing dvd_subtitle In-Reply-To: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> References: <035.dd57a03425d403c6613359e5fb72e3ef@avcodec.org> Message-ID: <050.e7e96236d0065665a581c8e116d0c0da@avcodec.org> #1828: Start timestamp ignored when muxing dvd_subtitle -------------------------------------+------------------------------------ Reporter: billie | Owner: ubitux Type: enhancement | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: dvdsub | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ubitux): Replying to [comment:7 billie]: > Replying to [comment:5 ubitux]: > > Added in 710c4baf. > > > > You can try to mux with -i sub.idx. > > Thank you very much for your work. Does this also work when directly using vob files as input? I tested one and it did work so I guess it does. When using version 0.10.5 I get errors like this for the subtitle streams: > > Application provided invalid, non monotonically increasing dts to muxer in stream 2: 203320 >= 203320 > av_interleaved_write_frame(): Invalid argument No, the ticket was about supporting idx/sub, so I added support for idx/sub :) About demuxing DVD subtitles properly and being able to mux them as VobSub belongs to another issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 07:12:45 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 06:12:45 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.551430c9c93a756b44752d31e82b74f3@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Comment (by ramitbhalla): Okay, so here's the issue, one side of the problem has been fixed but it ended up breaking the other. Now specifying -ss after -i works fine, but using -ss before -i now breaks ffmpeg. See below: SPECIFYING -ss AFTER -i WORKS FINE {{{ ffmpeg -y -i "D:\Test Videos\Mcebuddyarchive\Test6.ts" -ss 30 -t 1727 -map 0:a -map 0:v -v codec copy -acodec copy test-temp.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from 'D:\Test Videos\Mcebuddyarchive\Test6.ts': Duration: 00:29:47.79, start: 0.200000, bitrate: 14465 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) Output #0, mpegts, to 'test-temp.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Audio: ac3, 48000 Hz, stereo, 96 kb/s (visual impaired) Stream #0:1: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 8911 fps=471 q=-1.0 Lsize= 548857kB time=00:04:59.60 bitrate=15007.5kbits/s video:504598kB audio:3511kB subtitle:0 global headers:0kB muxing overhead 8.019605% }}} SPECIFYING -ss BEFORE -i BREAKS {{{ ffmpeg -y -ss 30 -i "D:\Test Videos\Mcebuddyarchive\Test6.ts" -t 1727 -map 0:a -map 0:v -v codec copy -acodec copy test-temp.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from 'D:\Test Videos\Mcebuddyarchive\Test6.ts': Duration: 00:29:47.79, start: 0.200000, bitrate: 14465 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) Output #0, mpegts, to 'test-temp.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Audio: ac3, 48000 Hz, stereo, 96 kb/s (visual impaired) Stream #0:1: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 03ce7260] first pts value must set av_interleaved_write_frame(): Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 07:13:26 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 06:13:26 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:reopened): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.9d5922949c31dc25eb9c33315f0ef694@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: reopened Priority: important | Component: FFmpeg Version: unspecified | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by ramitbhalla): * status: closed => reopened * resolution: fixed => Comment: Marking important because it's a regression -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 11:09:32 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 10:09:32 -0000 Subject: [FFmpeg-trac] #2050(FFplay:closed): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.822e45132d1f515cf2e1d3fa80b4e4e7@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: closed Priority: important | Component: FFplay Version: git-master | Resolution: fixed Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed * component: avcodec => FFplay Comment: The crash was fixed by Michael, if there are other problems with this sample please open a new ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 11:13:25 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 10:13:25 -0000 Subject: [FFmpeg-trac] #2028(FFmpeg:closed): No Audio in output file if -ss is specified after -i in newer builds In-Reply-To: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> References: <040.d4d85f95ba6a76b134fd120829a3c330@avcodec.org> Message-ID: <055.6ec1838eaecbfed1c61361eef41d6e03@avcodec.org> #2028: No Audio in output file if -ss is specified after -i in newer builds -------------------------------------+---------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: important | Component: FFmpeg Version: unspecified | Resolution: fixed Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => fixed Comment: Please open a new ticket for this independent problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:28:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:28:05 -0000 Subject: [FFmpeg-trac] #2049(build system:open): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.8718c82150d3215467a0625b5544d6f0@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:32:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:32:36 -0000 Subject: [FFmpeg-trac] #2052(undetermined:open): rm: fix the real duration for sipr in ra4 In-Reply-To: <038.18da25a192a43e3fed168d304dc9c69f@avcodec.org> References: <038.18da25a192a43e3fed168d304dc9c69f@avcodec.org> Message-ID: <053.92e61bbeba95f28feeb74a392a619c5f@avcodec.org> #2052: rm: fix the real duration for sipr in ra4 -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: real sipr | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * priority: normal => wish * version: unspecified => git-master * keywords: => real sipr * type: defect => enhancement -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:40:06 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:40:06 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.af3953856283457699abaf4f3e2835eb@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => asf Comment: Iiuc, you reported this ticket about an asf file, then you provided a transport stream with (heavy) A/V desync. The desync for the ts file should be fixed (in the future, please try hard not to report multiple independent problems in one ticket, it makes following the tracker impossible), the question concerning the asf file is: Are you only reporting the possibly incorrectly shown framerate, or is there another problem with the file (and you suspect it is framerate-related)? If there is another problem, please provide a longer sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:42:20 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:42:20 -0000 Subject: [FFmpeg-trac] #2044(avformat:new): timecode copying error with variable frame rate QuickTime files In-Reply-To: <036.12d5ba33a1fd28e627a093db367b5877@avcodec.org> References: <036.12d5ba33a1fd28e627a093db367b5877@avcodec.org> Message-ID: <051.bd0297ebdc0336e4b20624ae1c10dfbd@avcodec.org> #2044: timecode copying error with variable frame rate QuickTime files -------------------------------------+------------------------------------- Reporter: dericed | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: timecode, | Blocked By: mov, vfr | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [ticket:2044 dericed]: > When the input is opened in QuickTime or FCP the first frame of the sample is 00:59:14;24 and the second is 00:59:14;25. With the output the first frame is 00:59:14;24 but the second is 00:59:14;28. Isn't this the expected behaviour given that FFmpeg's mov muxer only supports cfr? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:55:54 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:55:54 -0000 Subject: [FFmpeg-trac] #1900(avcodec:open): h264: huge memory allocation and a memleak (was: h264: huge memory allocation and a memleak, possible race condition) In-Reply-To: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> References: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> Message-ID: <053.bb1c193b472d5defe6d03689f1a57b7c@avcodec.org> #1900: h264: huge memory allocation and a memleak ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: h264 leak | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): I cannot reproduce the race condition anymore, valgrind still reports a 6M memleak and >3.5G memory allocation. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 12:59:41 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 11:59:41 -0000 Subject: [FFmpeg-trac] #1476(undetermined:new): rtp pcm_alaw/pcm_mulaw streaming from ALSA In-Reply-To: <036.d0f77a4b5c1191ae47b433e632819979@avcodec.org> References: <036.d0f77a4b5c1191ae47b433e632819979@avcodec.org> Message-ID: <051.a7a43fd7caab610f9e90a38fd8d9d08b@avcodec.org> #1476: rtp pcm_alaw/pcm_mulaw streaming from ALSA -------------------------------------+------------------------------------- Reporter: Spideru | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: crash | Resolution: SIGSEGV | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => crash SIGSEGV * component: FFmpeg => undetermined Comment: Is this problem still reproducible with current git head? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:01:08 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:01:08 -0000 Subject: [FFmpeg-trac] #2050(avcodec:reopened): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.acef534cb8d319e86d700378cc94b231@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: reopened Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by jyavenard): * status: closed => reopened * resolution: fixed => * component: FFplay => avcodec Comment: Uh? I'm afraid you overlooked the problem. the ffmpeg version used for the above trace contains: {{{ commit 230bef0a89eded951dacc394926d6c9761f3ccba Author: Michael Niedermayer Date: Thu Dec 20 12:24:54 2012 +0100 ffplay: fix handling of resolution changes with h264-mt Reviewed-by: Paul B Mahol Reviewed-by: Marton Balint Signed-off-by: Michael Niedermayer }}} So if that's what you're referring to. It's not fixed. The crash is a minor problem, as, as you said it only impact ffplay. The core issue is that this recording can't be played using libavcodec if you enable multi-thread decoding. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:08:06 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:08:06 -0000 Subject: [FFmpeg-trac] #2050(FFplay:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.65d884041ff9c7bc99b0ba1616927d6b@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: FFplay Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by jyavenard): * status: reopened => open * component: avcodec => FFplay Comment: Oh my bad... there's another fix I see with 3f72dbe4620716113754d06b7ffd558e56d1585f -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:09:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:09:23 -0000 Subject: [FFmpeg-trac] #2050(FFplay:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.f1ae811b110039b467b58a535da67b84@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: FFplay Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by jyavenard): sorry, can't close the ticket.. I will investigate what has been done to prevent the crash and see if it can be done with release/1.0 which is what we are using... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:14:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:14:23 -0000 Subject: [FFmpeg-trac] #2050(FFplay:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.8d2a22542a8d0bee77bafacd5e928642@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: FFplay Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:9 jyavenard]: > So if that's what you're referring to. It's not fixed. You reported an important bug in your original report: A crash with ffplay that was fixed in 3f72dbe. (It was reproducible with -threads 1, this was a regression, making it an important bug.) > The crash is a minor problem, as, as you said it only impact ffplay. I agree that ffplay crashes can be less important, but apart from the fact that this was a regression, it is also not always clear at the time or reporting where the reason for a crash lies, so I will continue to mark ffplay crashes as important to be on the safe side. > The core issue is that this recording can't be played using libavcodec if you enable multi-thread decoding. I tested the following command lines: $ ffplay -threads 2 11159\ HD-PVR\ sample.mpg $ ffmpeg -threads 2 -i 11159\ HD-PVR\ sample.mpg -qscale 2 out.avi $ mplayer -lavdopts threads=2 11159\ HD-PVR\ sample.mpg They are all working fine (MPlayer is slightly verbose atm, but this is not the right place to discuss this), so I don't think I understand you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:15:03 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:15:03 -0000 Subject: [FFmpeg-trac] #2050(FFplay:open): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.d2e5ca59da909c8173abf9b41aca3f90@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: open Priority: important | Component: FFplay Version: git-master | Resolution: Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:11 jyavenard]: > I will investigate what has been done to prevent the crash and see if it can be done with release/1.0 which is what we are using... You did not report a crash against 1.0, could you elaborate? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 13:16:08 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 12:16:08 -0000 Subject: [FFmpeg-trac] #2050(FFplay:closed): Playback of HD-PVR recordings failing In-Reply-To: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> References: <038.4a73e5f1369003e6e7b4fcca417919d8@avcodec.org> Message-ID: <053.32aa833023f04542084ccca0596ec39e@avcodec.org> #2050: Playback of HD-PVR recordings failing -------------------------------------+------------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: closed Priority: important | Component: FFplay Version: git-master | Resolution: fixed Keywords: regression | Blocked By: crash abort | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 16:19:46 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 15:19:46 -0000 Subject: [FFmpeg-trac] #2053(FFplay:new): ffplay's frame step not accurate Message-ID: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> #2053: ffplay's frame step not accurate --------------------------------------+----------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: FFplay Version: git-master | Keywords: framestep Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+----------------------------------- Frame stepping in ffplay doesn't work that well. It seems there is some kind of race. Start playing a relatively big video (with the drawtext filter as shown below to print the frame id), and switch to step-by-step mode ('s'). {{{ ? ./ffplay ~/samples/big_buck_bunny_1080p_h264.mov -vf drawtext=text=%{n}:expansion=normal:fontcolor=yellow:fontsize=50:fontfile=LiberationMono ffplay version N-48100-g3f72dbe Copyright (c) 2003-2012 the FFmpeg developers built on Dec 22 2012 12:54:34 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/home/ubitux/samples/big_buck_bunny_1080p_h264.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2008-05-27 18:40:35 timecode : 00:00:00:00 Duration: 00:09:56.46, start: 0.000000, bitrate: 9725 kb/s Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1920x1080, 9282 kb/s, 24 fps, 24 tbr, 2400 tbn, 4800 tbc Metadata: creation_time : 2008-05-27 18:40:35 handler_name : Apple Alias Data Handler Stream #0:1(eng): Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2008-05-27 18:40:35 handler_name : Apple Alias Data Handler timecode : 00:00:00:00 Stream #0:2(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, 5.1, fltp, 437 kb/s Metadata: creation_time : 2008-05-27 18:40:35 handler_name : Apple Alias Data Handler Frame changed from size:0x0 to size:1920x108001KB sq= 0B f=0/0 }}} Now look at the counter; sometimes (1 out of 10-20 frames, not reproducible with the same frame id between different runs) the frame doesn't increment (and need one or two more key hits), or increment too quickly (often skip 1 frame). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 16:33:35 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 15:33:35 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.2826d97551eb8cc87a8c8e1be777561b@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Initially I thought i was frame rate related, possibly the incorrect frame rate maybe be causing the A/V desync, but after further testing (even forcing the correct framerate using -r) I am unable to get the video in sync. so this is an unrelated issue where the A/V is going out of sync. Again - my apologies for connecting this issue with the frame rate, if you'd like I can open a separate ticket on this issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 16:33:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 15:33:51 -0000 Subject: [FFmpeg-trac] #2054(FFmpeg:new): Specifying -ss before -i breaks the conversions Message-ID: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: important Component: FFmpeg | Version: git- Keywords: | master Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: This is related to ticket #2028, a regression issue, originally specifying -ss after -i caused the audio to break, that was fixed however now specifying -ss before -i is causing the conversion to fail. The sample file is uploaded at: http://www.mediafire.com/?hj8e5kwfd9jq93c See below: SPECIFYING -ss AFTER -i WORKS FINE {{{ ffmpeg -y -i Test6.ts -ss 30 -t 1727 -map 0:a -map 0:v -vcodec copy -acodec copy test-temp .ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from 'Test6.ts': Duration: 00:00:33.95, start: 0.200000, bitrate: 14824 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) Output #0, mpegts, to 'test-temp.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Audio: ac3, 48000 Hz, stereo, 96 kb/s (visual impaired) Stream #0:1: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 58 fps=0.0 q=-1.0 Lsize= 4127kB time=00:00:04.11 bitrate=8221.9kbits/s video:3773kB audio:48kB subtitle:0 global headers:0kB muxing overhead 8.002266% }}} SPECIFYING -ss BEFORE -i BREAKS {{{ ffmpeg -y -ss 30 -i Test6.ts -t 1727 -map 0:a -map 0:v -vcodec copy -acodec copy test-temp .ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from 'Test6.ts': Duration: 00:00:33.95, start: 0.200000, bitrate: 14824 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) Output #0, mpegts, to 'test-temp.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Audio: ac3, 48000 Hz, stereo, 96 kb/s (visual impaired) Stream #0:1: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 02c57dc0] first pts value must set av_interleaved_write_frame(): Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 17:02:41 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 16:02:41 -0000 Subject: [FFmpeg-trac] #1979(FFmpeg:new): Automatically set -fflags +genpts In-Reply-To: <036.1b4c0b323b2d988b1f15ab5692250355@avcodec.org> References: <036.1b4c0b323b2d988b1f15ab5692250355@avcodec.org> Message-ID: <051.80d07d9d5331f64615ffba92e503cd7e@avcodec.org> #1979: Automatically set -fflags +genpts -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): This may also be connected with Ticket #2054 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 18:11:31 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 17:11:31 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.eb2796ce24cfdc783c9c242310d9aa35@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:6 ramitbhalla]: > Initially I thought i was frame rate related, possibly the incorrect frame rate maybe be causing the A/V desync, but after further testing (even forcing the correct framerate using -r) I am unable to get the video in sync. Please provide a sample that is long enough to (easily) reproduce the desync issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 18:18:26 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 17:18:26 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.023a446fb7ab0170df4fdd1cf26d0036@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): I've included the link for the sample with the output and command line above: http://www.mediafire.com/?8bfooipkdf1e56l -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 18:28:02 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 17:28:02 -0000 Subject: [FFmpeg-trac] #2054(undetermined:closed): Specifying -ss before -i breaks the conversions In-Reply-To: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> References: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> Message-ID: <055.468facf91fd59c0b5167918382da6efd@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts | Resolution: duplicate mpeg2video | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * type: defect => enhancement * component: FFmpeg => undetermined * priority: important => wish * keywords: => mpegts mpeg2video av_interleaved_write_frame * resolution: => duplicate Comment: Please understand that seeking before decoding and decoding / demuxing until a specific point in time ("putting -ss before or after -i") are completely different things that cannot be compared or used for comparison in a bug report. It is for example not a valid report to say "-ss before -i is less exact than -ss after -i", and the title for this ticket is also definitely invalid. You may report "some seeking values lead to 'first pts value must set' with -codec copy", but imo, this is just a duplicate of ticket #1979. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 18:28:52 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 17:28:52 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.b32dfdb34476b8e65cd68e3ceefea416@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:8 ramitbhalla]: > I've included the link for the sample with the output and command line above: > > http://www.mediafire.com/?8bfooipkdf1e56l This is not an asf file (and the problem is not reproducible with current git head). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 19:15:37 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 18:15:37 -0000 Subject: [FFmpeg-trac] #2054(undetermined:closed): Specifying -ss before -i breaks the conversions In-Reply-To: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> References: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> Message-ID: <055.9e443e6c144bbf96e531079271496029@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts | Resolution: duplicate mpeg2video | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): I see your point. The way I see it from a users point of view, there are 2 ways to seek: 1. Fast/rough seek - before -i 2. Slow/accurate seek - after -i one works, the other broke :) - hence the title Also, I've noticed you've marked ticket #1979 as a "wish". Given the current situation that seeking leads to a conversion failure, isn't it a critical failure rather than an enhancement wish? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 19:20:30 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 18:20:30 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.b6a0eb593ba93677cba3a0e4305a1b11@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): You're correct, with the 21st Dec build I too am unable to replicate the issue. It appears to have been fixed somewhere between the 13th Nov and 21st Dec build. Thanks, you can close the ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 19:22:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 18:22:05 -0000 Subject: [FFmpeg-trac] #1979(FFmpeg:new): Automatically set -fflags +genpts In-Reply-To: <036.1b4c0b323b2d988b1f15ab5692250355@avcodec.org> References: <036.1b4c0b323b2d988b1f15ab5692250355@avcodec.org> Message-ID: <051.a8ff93180670e02aea1cdded567c547a@avcodec.org> #1979: Automatically set -fflags +genpts -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by ramitbhalla): * cc: ramitbhalla@? (added) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 20:02:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 19:02:05 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.cf98aa9d16f2da19783b87f7f7bb732c@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Is there no longer version of "Test DVRMS.dvr-ms" that shows desync issues? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 20:04:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 19:04:05 -0000 Subject: [FFmpeg-trac] #2054(undetermined:closed): Specifying -ss before -i breaks the conversions In-Reply-To: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> References: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> Message-ID: <055.1f3db9544393c3371b90f999c01bdcde@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts | Resolution: duplicate mpeg2video | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:2 ramitbhalla]: > Also, I've noticed you've marked ticket #1979 as a "wish". Given the current situation that seeking leads to a conversion failure, isn't it a critical failure rather than an enhancement wish? For many values, seeking works fine. For some values, seeking leads to an error message that clearly indicates a missing parameter. This parameter was always needed for some stream copying operations, adding it automatically is an enhancement request. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 20:51:01 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 19:51:01 -0000 Subject: [FFmpeg-trac] #2037(undetermined:new): FFMPEG not able to determine frame rate, primarily DVRMS and some TS In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.a281e11a009eb409b77b94c2c93dc6cc@avcodec.org> #2037: FFMPEG not able to determine frame rate, primarily DVRMS and some TS -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: asf | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Apparently the issue appears to have been fixed in the Dec 21st build. I'm not able to replicate it with this build. If I come across other files with show the desync issue, I'll open a new ticket. Thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 20:52:50 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 19:52:50 -0000 Subject: [FFmpeg-trac] #2054(undetermined:closed): Specifying -ss before -i breaks the conversions In-Reply-To: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> References: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> Message-ID: <055.e822511bd24c5ae70eb534e414f6e474@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts | Resolution: duplicate mpeg2video | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): If you don't mind me asking, since I expect enhancement are usually low priority, it will take time to fix but I need to get my scripts working. What is the downside to add -fflags +genpts by default to all my scripts (for all videos)? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 21:54:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 20:54:09 -0000 Subject: [FFmpeg-trac] #1340(avcodec:open): Possibly suboptimal H.264 error concealment In-Reply-To: <036.87d2d468480142d799f12d5bddf089a6@avcodec.org> References: <036.87d2d468480142d799f12d5bddf089a6@avcodec.org> Message-ID: <051.03912a42bf45f6f30bca30adbdde3a00@avcodec.org> #1340: Possibly suboptimal H.264 error concealment -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: h264 | Blocked By: roundup regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: h264 roundup => h264 roundup regression * status: new => open * reproduced: 0 => 1 Comment: The visible corruption is a regression since d375c10 (merge of ffmpeg-mt). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 21:54:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 20:54:55 -0000 Subject: [FFmpeg-trac] #2054(undetermined:closed): Specifying -ss before -i breaks the conversions In-Reply-To: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> References: <040.59b7a152f9a47c614fb3f6dc4ef5b3e3@avcodec.org> Message-ID: <055.8a10272ecdc24bf5e8a054a32ea24d9f@avcodec.org> #2054: Specifying -ss before -i breaks the conversions -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts | Resolution: duplicate mpeg2video | Blocked By: av_interleaved_write_frame | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:4 ramitbhalla]: > What is the downside to add -fflags +genpts by default to all my scripts (for all videos)? I don't know. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 22 21:58:28 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 22 Dec 2012 20:58:28 -0000 Subject: [FFmpeg-trac] #2037(undetermined:closed): Heavy A/V desync on transcoding (was: FFMPEG not able to determine frame rate, primarily DVRMS and some TS) In-Reply-To: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> References: <040.39de5dd54c0494f160b172442383b33d@avcodec.org> Message-ID: <055.c4be131dbe359e910cacdd9a8f5622a4@avcodec.org> #2037: Heavy A/V desync on transcoding -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: asf mpegts | Resolution: fixed mpeg2video | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * reproduced: 0 => 1 * version: unspecified => git-master * keywords: asf => asf mpegts mpeg2video * resolution: => fixed Comment: Fixed by Michael. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 02:20:49 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 01:20:49 -0000 Subject: [FFmpeg-trac] #2052(avformat:closed): rm: fix the real duration for sipr in ra4 In-Reply-To: <038.18da25a192a43e3fed168d304dc9c69f@avcodec.org> References: <038.18da25a192a43e3fed168d304dc9c69f@avcodec.org> Message-ID: <053.9c2fa743d14d3fd894ffe209049ebeb5@avcodec.org> #2052: rm: fix the real duration for sipr in ra4 -------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: enhancement | Status: closed Priority: wish | Component: avformat Version: git-master | Resolution: fixed Keywords: real sipr | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed * component: undetermined => avformat Comment: Replying to [ticket:2052 ami_stuff]: > {{{ > Duration: N/A, bitrate: N/A > }}} This was fixed by you. > {{{ > size= 0kB time=00:00:03.85 bitrate= 0.0kbits/s > }}} I suggest to open a new ticket for the wrong timestamps (the sample is ~30 seconds long), also reproducible with ffplay and MPlayer. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 04:21:57 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 03:21:57 -0000 Subject: [FFmpeg-trac] #2041(avcodec:closed): Artefacts when encoding to yuvj444p mjpeg In-Reply-To: <036.5a8e3482801f115ce483fa92c6f82664@avcodec.org> References: <036.5a8e3482801f115ce483fa92c6f82664@avcodec.org> Message-ID: <051.d669c133ef954ff925864cd1c8f084ba@avcodec.org> #2041: Artefacts when encoding to yuvj444p mjpeg -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: new => closed * resolution: => fixed * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 05:31:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 04:31:42 -0000 Subject: [FFmpeg-trac] #2025(avformat:closed): FFMPEG unable to create WTV files > 2GB In-Reply-To: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> References: <040.c92adf3282e7ad03459646a1215e4748@avcodec.org> Message-ID: <055.c602093cf916ef567ea8b15c13517240@avcodec.org> #2025: FFMPEG unable to create WTV files > 2GB -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: pross Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Working great, thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 05:38:08 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 04:38:08 -0000 Subject: [FFmpeg-trac] #2055(undetermined:new): FFMPEG unable to copy attachment metadata in WTV files Message-ID: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: When FFMPEG tries to copy attachment metadata it fails How to reproduce: {{{ ffmpeg -i test-wtv.wtv -c copy -map 0 test.wtv ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 0036f1a0] mpeg_decode_postinit() failure Last message repeated 12 times Input #0, wtv, from 'test-wtv.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to sp end the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Eri nn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false Duration: 00:31:59.52, start: 2.880931, bitrate: 8 kb/s Stream #0:0[0x29](eng): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:1[0x2a](eng): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2[0x2b]: Video: mpeg2video (Main), yuv420p, 528x480 [SAR 40:33 DAR 4:3], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc Stream #0:3[0x2c]: Subtitle: eia_608 Stream #0:4[0x0]: Attachment: mjpeg Metadata: title : TV Thumbnail [wtv @ 02d8a780] unknown codec_type (0x3) [wtv @ 02d8a780] write stream codec info failed codec_type(0x3) [wtv @ 02d8a780] write stream codec failed codec_type(0x3) Output #0, wtv, to 'test.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to sp end the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Eri nn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false encoder : Lavf54.49.102 Stream #0:0(eng): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 192 kb/s Stream #0:1(eng): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 192 kb/s Stream #0:2: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 528x480 [SAR 40:33 DAR 4:3], q=2-31, 29.97 fps, 90k tbn , 29.97 tbc Stream #0:3: Subtitle: eia_608 Stream #0:4: Attachment: mjpeg (MJPG / 0x47504A4D) Metadata: title : TV Thumbnail Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Stream #0:2 -> #0:2 (copy) Stream #0:3 -> #0:3 (copy) Stream #0:4 -> #0:4 (copy) Could not write header for output file #0 (incorrect codec parameters ?): Operation not permitted }}} {{{ ffmpeg -i test.wtv ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [wtv @ 0035c940] timeline data missing test.wtv: Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 05:41:38 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 04:41:38 -0000 Subject: [FFmpeg-trac] #2055(undetermined:new): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.8a45d3a48e8f76633f0d0422ae04fb4e@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Add on: if one uses -map 0:s then also it fails, afaik it's not able to copy subtitle streams either from a WTV to a WTV file. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 05:45:24 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 04:45:24 -0000 Subject: [FFmpeg-trac] #2038(undetermined:new): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.7774f4eadafa46de609411df1b2cede7@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): For example, if I run the following command (attaching 3 sample files used) ffmpeg -i "concat:test1.wtv|test2.wtv|test3.wtv" -c copy test.wtv The output file (test.wtv) only contains the first file (test1.wtv) and not the remaining two. {{{ ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, wtv, from 'concat:test1.wtv|test2.wtv|test3.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to sp end the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Eri nn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false WM/MediaThumbType: 3 WM/MediaThumbTimeStamp: 4643601142938852099 WM/WMRVEndTime : 2012-11-22 05:03:01 WM/WMRVBitrate : 3.975938 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: 417 WM/WMRVActualSoftPostPadding: 181 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : true WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 320 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 10 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 4 WM/MediaThumbAspectRatioY: 3 encoder : Lavf54.49.102 Duration: 00:00:05.01, start: 0.005256, bitrate: 10001 kb/s Stream #0:0[0x2]: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s Stream #0:1[0x3]: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2[0x4]: Video: mpeg2video (Main), yuv420p, 528x480 [SAR 40:33 DAR 4:3], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc Output #0, wtv, to 'test.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to sp end the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Eri nn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false WM/MediaThumbType: 3 WM/MediaThumbTimeStamp: 4643601142938852099 WM/WMRVEndTime : 2012-11-22 05:03:01 WM/WMRVBitrate : 3.975938 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: 417 WM/WMRVActualSoftPostPadding: 181 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : true WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 320 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 10 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 4 WM/MediaThumbAspectRatioY: 3 encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 528x480 [SAR 40:33 DAR 4:3], q=2-31, 29.97 fps, 10000k tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 192 kb/s Stream mapping: Stream #0:2 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 150 fps=0.0 q=-1.0 Lsize= 1256kB time=00:00:05.02 bitrate=2048.0kbits/s video:1062kB audio:118kB subtitle:0 global headers:0kB muxing overhead 6.496203% }}} This strategy only seems to work if the inputs files are mpegts files. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 11:04:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 10:04:55 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.776ef51f1bbfbc39893a83f2399ba412@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => worksforme Comment: Works fine here, see also http://ffmpeg.org/ffmpeg-formats.html#concat {{{ $ ffmpeg -f concat -i concat.txt -c copy out.wtv ffmpeg version N-48117-g707af43 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 10:56:26 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [concat @ 0x26567c0] max_analyze_duration 5000000 reached at 5024000 [concat @ 0x26567c0] Estimating duration from bitrate, this may be inaccurate Input #0, concat, from 'concat.txt': Duration: 00:00:00.01, start: 0.000001, bitrate: 30 kb/s Stream #0:0: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2: Video: mpeg2video (Main), yuv420p, 528x480 [SAR 40:33 DAR 4:3], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc Output #0, wtv, to 'out.wtv': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 528x480 [SAR 40:33 DAR 4:3], q=2-31, 29.97 fps, 10000k tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 192 kb/s Stream mapping: Stream #0:2 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 405 fps=0.0 q=-1.0 Lsize= 5660kB time=00:00:15.16 bitrate=3057.0kbits/s video:5127kB audio:352kB subtitle:0 global headers:0kB muxing overhead 3.295385% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 11:16:25 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 10:16:25 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.2cfba543ac7433286ec2a74111d8ac61@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => avformat * priority: normal => wish * version: unspecified => git-master * keywords: => wtv * type: defect => enhancement Comment: Replying to [comment:1 ramitbhalla]: > Add on: > > if one uses -map 0:s then also it fails, afaik it's not able to copy subtitle streams either from a WTV to a WTV file. This is actually the only problem that you did report with the console output you posted... {{{ $ ffmpeg -i test-wtv.wtv -c:t copy -map 0:4 out.wtv ffmpeg version N-48117-g707af43 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 10:56:26 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 0x26e6260] mpeg_decode_postinit() failure Last message repeated 12 times Input #0, wtv, from 'test-wtv.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to spend the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Erinn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false Duration: 00:31:59.52, start: 2.880931, bitrate: 8 kb/s Stream #0:0[0x29](eng): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:1[0x2a](eng): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2[0x2b]: Video: mpeg2video (Main), yuv420p, 528x480 [SAR 40:33 DAR 4:3], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc Stream #0:3[0x2c]: Subtitle: eia_608 Stream #0:4[0x0]: Attachment: mjpeg Metadata: title : TV Thumbnail [wtv @ 0x27b4be0] unknown codec_type (0x4) [wtv @ 0x27b4be0] write stream codec info failed codec_type(0x4) [wtv @ 0x27b4be0] write stream codec failed codec_type(0x4) Output #0, wtv, to 'out.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : Guys With Kids WM/SubTitle : Thanksgiving WM/SubTitleDescription: Sheila tries to win the gang over with a traditional Thanksgiving dinner; Gary decides to spend the holiday waiting in line for a TV that's on sale. genre : Comedy;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Anthony Anderson/Zach Cregger/Jesse Bradford/Jamie- Lynn Sigler/Tempestt Bledsoe;;;Emmitt Smith/Erinn Hayes service_provider: KNBC service_name : KNBC WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2012-11-21T08:00:00Z WM/MediaOriginalRunTime: 20974292466 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-11-22 04:28:02 WM/WMRVSeriesUID: !MCSeries!274690485 WM/WMRVServiceID: !MCService!28455445 WM/WMRVProgramID: !MCProgram!282437030 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 0 WM/WMRVOriginalSoftPrePadding: 420 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -300 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: false encoder : Lavf54.49.102 Stream #0:0: Attachment: mjpeg (MJPG / 0x47504A4D) Metadata: title : TV Thumbnail Stream mapping: Stream #0:4 -> #0:0 (copy) Could not write header for output file #0 (incorrect codec parameters ?): Operation not permitted }}} {{{ $ }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 11:28:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 10:28:36 -0000 Subject: [FFmpeg-trac] #2053(FFplay:open): ffplay's frame step not accurate In-Reply-To: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> References: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> Message-ID: <050.86ff6095821987a47535c38d41124b90@avcodec.org> #2053: ffplay's frame step not accurate ------------------------------------+---------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: FFplay Version: git-master | Resolution: Keywords: framestep | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 11:33:08 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 10:33:08 -0000 Subject: [FFmpeg-trac] #2049(build system:open): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.248b3ff1ec31d9c802760612b051e644@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Is it sufficient to just compile snprintf.c manually without the defines that cause the trouble or are the defines bad for all source files? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 12:00:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 11:00:23 -0000 Subject: [FFmpeg-trac] #1900(avcodec:open): h264: huge memory allocation and a memleak In-Reply-To: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> References: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> Message-ID: <053.65d488856d240e8b135af5fe34d718c1@avcodec.org> #1900: h264: huge memory allocation and a memleak ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: h264 leak | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): No memory leak with -threads 1. (Memory allocation varies, the following run was stopped early.) {{{ $ valgrind --leak-check=full ffmpeg_g -threads 2 -i h264.avi -f null - ==20435== Memcheck, a memory error detector ==20435== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al. ==20435== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright info ==20435== Command: ffmpeg_g -i h264.avi -f null - ==20435== ffmpeg version N-48119-gf9d8658 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 11:31:11 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack --disable-yasm --disable-asm --disable-optimizations libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [...] ==20435== HEAP SUMMARY: ==20435== in use at exit: 7,813,977 bytes in 28 blocks ==20435== total heap usage: 2,207 allocs, 2,179 frees, 1,948,151,926 bytes allocated ==20435== ==20435== 278,895 bytes in 1 blocks are definitely lost in loss record 1 of 2 ==20435== at 0x4C290FE: memalign (in /usr/lib64/valgrind /vgpreload_memcheck-amd64-linux.so) ==20435== by 0x4C291A7: posix_memalign (in /usr/lib64/valgrind /vgpreload_memcheck-amd64-linux.so) ==20435== by 0xC9E701: av_malloc (mem.c:92) ==20435== by 0xC9E861: av_mallocz (mem.c:198) ==20435== by 0xA3E900: ff_fast_malloc (utils.c:82) ==20435== by 0xA3E9C3: av_fast_padded_malloc (utils.c:102) ==20435== by 0x71B5F3: ff_h264_decode_nal (h264.c:240) ==20435== by 0x777EDC: decode_nal_units (h264.c:3983) ==20435== by 0x71D71B: ff_h264_decode_extradata (h264.c:1056) ==20435== by 0x71D94E: ff_h264_decode_init (h264.c:1108) ==20435== by 0x986FB4: frame_thread_init (pthread.c:860) ==20435== by 0x98794F: ff_thread_init (pthread.c:1090) ==20435== ==20435== 7,535,082 bytes in 27 blocks are definitely lost in loss record 2 of 2 ==20435== at 0x4C290FE: memalign (in /usr/lib64/valgrind /vgpreload_memcheck-amd64-linux.so) ==20435== by 0x4C291A7: posix_memalign (in /usr/lib64/valgrind /vgpreload_memcheck-amd64-linux.so) ==20435== by 0xC9E701: av_malloc (mem.c:92) ==20435== by 0xC9E861: av_mallocz (mem.c:198) ==20435== by 0xA3E900: ff_fast_malloc (utils.c:82) ==20435== by 0xA3E9C3: av_fast_padded_malloc (utils.c:102) ==20435== by 0x71B5F3: ff_h264_decode_nal (h264.c:240) ==20435== by 0x777EDC: decode_nal_units (h264.c:3983) ==20435== by 0x779067: decode_frame (h264.c:4332) ==20435== by 0x985A9C: frame_worker_thread (pthread.c:388) ==20435== by 0x55C6E0D: start_thread (in /lib64/libpthread-2.15.so) ==20435== ==20435== LEAK SUMMARY: ==20435== definitely lost: 7,813,977 bytes in 28 blocks ==20435== indirectly lost: 0 bytes in 0 blocks ==20435== possibly lost: 0 bytes in 0 blocks ==20435== still reachable: 0 bytes in 0 blocks ==20435== suppressed: 0 bytes in 0 blocks }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 13:46:03 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 12:46:03 -0000 Subject: [FFmpeg-trac] #2056(undetermined:new): rmdec: fix timestamps for sipr in version 4 container (ra4) Message-ID: <038.5f521990c6295fe29893d85586430622@avcodec.org> #2056: rmdec: fix timestamps for sipr in version 4 container (ra4) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- http://ffmpeg.org/trac/ffmpeg/raw- attachment/ticket/2052/RA5.0_16kbps_voice_wideband.ra {{{ C:\>ffmpeg -i RA5.0_16kbps_voice_wideband.ra -f null - ffmpeg version N-48116-g2e6bd22 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 02:22:15 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Truncating packet of size 160 to 28 [rm @ 0x1eeea80] Estimating duration from bitrate, this may be inaccurate Input #0, rm, from 'RA5.0_16kbps_voice_wideband.ra': Metadata: title : author : copyright : comment : Duration: 00:00:30.29, bitrate: 16 kb/s Stream #0:0: Audio: sipr (sipr / 0x72706973), 16000 Hz, mono, flt, 16 kb/s Output #0, null, to 'pipe:': Metadata: title : author : copyright : comment : encoder : Lavf54.49.102 Stream #0:0: Audio: pcm_s16le, 16000 Hz, mono, s16, 256 kb/s Stream mapping: Stream #0:0 -> #0:0 (sipr -> pcm_s16le) Press [q] to stop, [?] for help Multiple frames in a packet from stream 0 [null @ 0x1ffc3a0] st:0 PTS: 900 DTS: 900 < 6301 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 1800 DTS: 1800 < 6302 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 2700 DTS: 2700 < 6303 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 3600 DTS: 3600 < 6304 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 4500 DTS: 4500 < 6305 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 5400 DTS: 5400 < 6306 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 6300 DTS: 6300 < 6307 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 1800 DTS: 1800 < 7201 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 2700 DTS: 2700 < 7202 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 3600 DTS: 3600 < 7203 invalid, clipping [...] [null @ 0x1ffc3a0] st:0 PTS: 341100 DTS: 341100 < 343804 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 342000 DTS: 342000 < 343805 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 342900 DTS: 342900 < 343806 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 343800 DTS: 343800 < 343807 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 339300 DTS: 339300 < 344701 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 340200 DTS: 340200 < 344702 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 341100 DTS: 341100 < 344703 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 342000 DTS: 342000 < 344704 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 342900 DTS: 342900 < 344705 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 343800 DTS: 343800 < 344706 invalid, clipping [null @ 0x1ffc3a0] st:0 PTS: 344700 DTS: 344700 < 344707 invalid, clipping [sipr @ 0x1eef420] Error processing packet: packet size (7) too small Error while decoding stream #0:0: Error number -1 occurred [null @ 0x1ffc3a0] st:0 PTS: 340200 DTS: 340200 < 345601 invalid, clipping RA5.0_16kbps_voice_wideband.ra: Input/output error size= 0kB time=00:00:03.85 bitrate= 0.0kbits/s video:0kB audio:945kB subtitle:0 global headers:0kB muxing overhead -100.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 13:48:04 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 12:48:04 -0000 Subject: [FFmpeg-trac] #2056(undetermined:open): rmdec: fix timestamps for sipr in version 4 container (ra4) In-Reply-To: <038.5f521990c6295fe29893d85586430622@avcodec.org> References: <038.5f521990c6295fe29893d85586430622@avcodec.org> Message-ID: <053.0f6adbe9a4fd481b1cc1e8d27d62b5bc@avcodec.org> #2056: rmdec: fix timestamps for sipr in version 4 container (ra4) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: real sipr | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => real sipr * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 16:20:40 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 15:20:40 -0000 Subject: [FFmpeg-trac] #2057(postproc:new): Invalid read in dering subfilter MMX2 code Message-ID: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> #2057: Invalid read in dering subfilter MMX2 code --------------------------------------+---------------------------------- Reporter: ubitux | Owner: michael Type: defect | Status: new Priority: normal | Component: postproc Version: git-master | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+---------------------------------- The C version looks unaffected: {{{ ? valgrind ./ffmpeg_g -cpuflags none -i tests/lena.pnm -vf mp=pp -f null - ==31602== Memcheck, a memory error detector ==31602== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al. ==31602== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info ==31602== Command: ./ffmpeg_g -cpuflags none -i tests/lena.pnm -vf mp=pp -f null - ==31602== ffmpeg version N-48134-g8e09e18 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 16:14:18 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'tests/lena.pnm': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: ppm, rgb24, 256x256, 25 tbr, 25 tbn, 25 tbc [Parsed_mp_0 @ 0xb042900] 'pp' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed once it has been ported to a native libavfilter. Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: rawvideo (444P / 0x50343434), yuv444p, 256x256, q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (ppm -> rawvideo) Press [q] to stop, [?] for help [null @ 0xb03b300] Encoder did not produce proper pts, making some up. frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% ==31602== ==31602== HEAP SUMMARY: ==31602== in use at exit: 0 bytes in 0 blocks ==31602== total heap usage: 2,108 allocs, 2,108 frees, 3,145,309 bytes allocated ==31602== ==31602== All heap blocks were freed -- no leaks are possible ==31602== ==31602== For counts of detected and suppressed errors, rerun with: -v ==31602== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 2 from 2) }}} The MMX2 version on the other hand is: {{{ ? valgrind ./ffmpeg_g -cpuflags mmx2 -i tests/lena.pnm -vf mp=pp -f null - ==31603== Memcheck, a memory error detector ==31603== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al. ==31603== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info ==31603== Command: ./ffmpeg_g -cpuflags mmx2 -i tests/lena.pnm -vf mp=pp -f null - ==31603== ffmpeg version N-48134-g8e09e18 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 23 2012 16:14:18 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable-libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --enable- runtime-cpudetect --enable-libcelt libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.101 / 3. 29.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'tests/lena.pnm': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: ppm, rgb24, 256x256, 25 tbr, 25 tbn, 25 tbc [Parsed_mp_0 @ 0xb042900] 'pp' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed once it has been ported to a native libavfilter. Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: rawvideo (444P / 0x50343434), yuv444p, 256x256, q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (ppm -> rawvideo) Press [q] to stop, [?] for help ==31603== Invalid read of size 4 ==31603== at 0xB4EDE9: dering_MMX2 (postprocess_template.c:1094) ==31603== by 0xB5DC8C: postProcess_MMX2 (postprocess_template.c:3617) ==31603== by 0xB73DC0: pp_postprocess (postprocess.c:615) ==31603== by 0x4C74F9: put_image (vf_pp.c:141) ==31603== by 0x493E01: filter_frame (vf_mp.c:826) ==31603== by 0x49E767: default_end_frame (video.c:319) ==31603== by 0x49F50E: ff_end_frame (video.c:341) ==31603== by 0x47AF20: ff_filter_frame (avfilter.c:645) ==31603== by 0x498FE3: filter_frame (vf_scale.c:413) ==31603== by 0x49E767: default_end_frame (video.c:319) ==31603== by 0x49F50E: ff_end_frame (video.c:341) ==31603== by 0x47AF20: ff_filter_frame (avfilter.c:645) ==31603== Address 0xb182e5c is 4 bytes before a block of size 6,144 alloc'd ==31603== at 0x4C29B66: memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31603== by 0x4C29C57: posix_memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31603== by 0xBC2FF1: av_mallocz (mem.c:92) ==31603== by 0xB54AC8: reallocBuffers (postprocess.c:863) ==31603== by 0xB7390B: pp_get_context (postprocess.c:923) ==31603== by 0x4C7614: config (vf_pp.c:67) ==31603== by 0x493CF0: config_inprops (vf_mp.c:771) ==31603== by 0x479C4C: avfilter_config_links (avfilter.c:293) ==31603== by 0x479C02: avfilter_config_links (avfilter.c:239) ==31603== by 0x47C908: avfilter_graph_config (avfiltergraph.c:169) ==31603== by 0x462551: configure_filtergraph (ffmpeg_filter.c:764) ==31603== by 0x46AFE5: transcode_init (ffmpeg.c:2171) ==31603== [null @ 0xb03b300] Encoder did not produce proper pts, making some up. frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/s video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000% ==31603== ==31603== HEAP SUMMARY: ==31603== in use at exit: 0 bytes in 0 blocks ==31603== total heap usage: 2,108 allocs, 2,108 frees, 3,145,309 bytes allocated ==31603== ==31603== All heap blocks were freed -- no leaks are possible ==31603== ==31603== For counts of detected and suppressed errors, rerun with: -v ==31603== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 2 from 2) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 16:36:33 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 15:36:33 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.4db90ac9d9fc9c363fa9504c58115d0b@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Okay thanks, yes I tried that it works now. I have a request, it was a HUGE problem escaping ALL special characters INCLUDING spaces. Can the text file format be adjust to accept the ENTIRE file path within QUOTES and NO escaping of characters? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 16:38:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 15:38:55 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.ad21e1d359c885b2efb75b6157dd23e0@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Got it, can you please correct the title, it should be cannot stream copy Subtitle and Attachment in WTV files. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 17:01:57 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 16:01:57 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.230ff6b73653635ab9ceb6fc3ba0ff9a@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Alternative can the old Pipe format (like what I've used above) be retained? (only escaping the quotes are required). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 17:49:49 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 16:49:49 -0000 Subject: [FFmpeg-trac] #2049(build system:open): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.39c286d419ce30daa61e6fc8c6335b4b@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Piroxiljin): In this way, you need to compile manualy every file which uses redefined functions. Also, this page (http://ffmpeg.org/platform.html#Linking-to-FFmpeg-with- Microsoft-Visual-C_002b_002b) notifies that one must link project with static runtime (/MT option). Right now, I just compile shared library with static runtime. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 18:44:38 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 17:44:38 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.d5cc826fbf4a77f3c79b15dd91286f97@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:5 ramitbhalla]: > Alternative can the old Pipe format (like what I've used above) be retained? What makes you think the concat protocol (if that is what you mean) will not be retained? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 18:46:34 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 17:46:34 -0000 Subject: [FFmpeg-trac] #2058(undetermined:new): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts Message-ID: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: FFMPEG not able to stream copy some WTV files, even with -fflags +genpts in the command. I've uploaded the original file and a text file to the FFMPEG ftp server. Filename is SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv and SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.txt How to reproduce: {{{ OUTPUT: ffmpeg -fflags +genpts -i "..\SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv" -vcodec copy -acodec copy -map 0:a -map 0:v test-temp.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 020cebc0] mpeg_decode_postinit() failure Last message repeated 33 times Input #0, wtv, from '..\SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : The Firm WM/SubTitle : Chapter Seven WM/SubTitleDescription: Mitch's attempts to help a new client, Nate, are complicated when Nate's brother is named as a co-defendant; Tammy pressures a potential ally into explaining a cryptic clue. genre : Drama;General;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Josh Lucas/Callum Keith Rennie/Molly Parker/Natasha Calis/Juliette Lewis;;;Andrew Jenkins/Stuart H ughes/Tricia Helfer service_provider: WNBCDT service_name : WNBCDT (WNBC-DT) WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 1 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/MediaOriginalRunTime: 17215789295 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-14 WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-02-19 02:34:18 WM/WMRVSeriesUID: !MCSeries!01419020 WM/WMRVServiceID: !MCService!28459780 WM/WMRVProgramID: !MCProgram!269627380 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 2176 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -2056 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: true Duration : 16944809188 WM/WMRVEndTime : 2012-02-19 03:02:32 WM/WMRVBitrate : 14.730353 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: -1 WM/WMRVActualSoftPostPadding: 152 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 198 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 14 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 Duration: 00:28:13.87, start: 44.031933, bitrate: 14735 kb/s Stream #0:0[0x2a](eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:1[0x2b]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 59.94 tbr, 10000k tbn , 59.94 tbc Stream #0:2[0x2c](spa): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:3[0x2d]: Subtitle: eia_608 Stream #0:4[0x0]: Attachment: mjpeg Metadata: title : TV Thumbnail File 'test-temp.ts' already exists. Overwrite ? [y/N] y Output #0, mpegts, to 'test-temp.ts': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : The Firm WM/SubTitle : Chapter Seven WM/SubTitleDescription: Mitch's attempts to help a new client, Nate, are complicated when Nate's brother is named as a co-defendant; Tammy pressures a potential ally into explaining a cryptic clue. genre : Drama;General;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Josh Lucas/Callum Keith Rennie/Molly Parker/Natasha Calis/Juliette Lewis;;;Andrew Jenkins/Stuart H ughes/Tricia Helfer service_provider: WNBCDT service_name : WNBCDT (WNBC-DT) WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 1 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/MediaOriginalRunTime: 17215789295 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-14 WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-02-19 02:34:18 WM/WMRVSeriesUID: !MCSeries!01419020 WM/WMRVServiceID: !MCService!28459780 WM/WMRVProgramID: !MCProgram!269627380 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 2176 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -2056 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: true Duration : 16944809188 WM/WMRVEndTime : 2012-02-19 03:02:32 WM/WMRVBitrate : 14.730353 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: -1 WM/WMRVActualSoftPostPadding: 152 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 198 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 14 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 encoder : Lavf54.49.102 Stream #0:0(eng): Audio: ac3, 48000 Hz, 5.1(side), 384 kb/s Stream #0:1(spa): Audio: ac3, 48000 Hz, stereo, 192 kb/s Stream #0:2: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:2 -> #0:1 (copy) Stream #0:1 -> #0:2 (copy) Press [q] to stop, [?] for help pts (147120491) < dts (147120742) in stream 2me=00:26:52.25 bitrate=15661.8kbits/s av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 18:51:39 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 17:51:39 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.89291f03f4acff2ae2b4b82aa627682c@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): What I was suggesting is that the concat demuxed (-f concat if I get it correctly) should also use the same format as the concat protocol for inputs file name rather than a text file, it makes the command line management a whole lot easier. i.e. -f concat -i "\"C:\Test Directory\Test1.wtv\"|"C:\Test Directory\Test2.wtv\"" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 19:09:27 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 18:09:27 -0000 Subject: [FFmpeg-trac] #2057(postproc:new): Invalid read in dering subfilter MMX2 code In-Reply-To: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> References: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> Message-ID: <050.0b09bb99b30269e470ea3f2570859127@avcodec.org> #2057: Invalid read in dering subfilter MMX2 code ------------------------------------+------------------------------------ Reporter: ubitux | Owner: michael Type: defect | Status: new Priority: normal | Component: postproc Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by ubitux): Note: the problem is now exactly the same with {{{-vf pp}}} ({{{-vf mp=pp}}} being dropped now). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 19:44:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 18:44:36 -0000 Subject: [FFmpeg-trac] #2059(avformat:new): There is no way to define a protocol outside of ffmpeg Message-ID: <037.cdfecc30a85180425ca232872cbf4787@avcodec.org> #2059: There is no way to define a protocol outside of ffmpeg ----------------------------------+-------------------------------------- Reporter: mustrumr | Type: defect Status: new | Priority: normal Component: avformat | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- After the removal of libavformat/url.h there is no way (I think) to define a protocol outside of ffmpeg. This is needed by gstreamer's gst-libav to build against ffmpeg. Or maybe I'm wrong. Is there a way to define a protocol without url.h? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 20:00:06 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 19:00:06 -0000 Subject: [FFmpeg-trac] #2038(undetermined:closed): Request for ffmpeg being able to join multiple files In-Reply-To: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> References: <040.34341a1d2f38aa40885b07a4a2ab2314@avcodec.org> Message-ID: <055.70fe21e8463033a378ac58a07be6e3dc@avcodec.org> #2038: Request for ffmpeg being able to join multiple files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: concat | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Why don't you open a feature request? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 20:16:40 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 19:16:40 -0000 Subject: [FFmpeg-trac] #2060(undetermined:new): Concat Demuxer Input Format - Usability enhancement Message-ID: <040.ab954bb671aabb62957018023ba67777@avcodec.org> #2060: Concat Demuxer Input Format - Usability enhancement -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: Status: new | enhancement Component: | Priority: normal undetermined | Version: Keywords: | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the request: Currently the Concat demuxer required a text file input which requires all special characters AND spaces to be escaped. I'm suggesting 2 enhancements to it: 1. Instead of escaping the filepath characters, accept the file path input in double quotes: e.g. file "C:\Test Videos\Test1.wtv" 2. Use the same format as the concat protocol for input file names rather than a text file, it makes the command line management a whole lot easier. e.g. -f concat -i "\"C:\Test Directory\Test1.wtv\"|"C:\Test Directory\Test2.wtv\"" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 20:25:14 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 19:25:14 -0000 Subject: [FFmpeg-trac] #2060(undetermined:new): Concat Demuxer Input Format - Usability enhancement In-Reply-To: <040.ab954bb671aabb62957018023ba67777@avcodec.org> References: <040.ab954bb671aabb62957018023ba67777@avcodec.org> Message-ID: <055.6dae55d002a0477c3f2f047d319b5b2b@avcodec.org> #2060: Concat Demuxer Input Format - Usability enhancement -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Cigaes): Replying to [ticket:2060 ramitbhalla]: > requires all special characters AND spaces to be escaped. Not true. > 1. Instead of escaping the filepath characters, accept the file path input in double quotes: Try single quotes. This is specified in the doc. Reading the doc is always useful. > 2. Use the same format as the concat protocol for input file names Not extensible enough. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 23 20:37:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 19:37:55 -0000 Subject: [FFmpeg-trac] #2060(undetermined:new): Concat Demuxer Input Format - Usability enhancement In-Reply-To: <040.ab954bb671aabb62957018023ba67777@avcodec.org> References: <040.ab954bb671aabb62957018023ba67777@avcodec.org> Message-ID: <055.3e5d16fd8abdde783a1ad32b6d64b965@avcodec.org> #2060: Concat Demuxer Input Format - Usability enhancement -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Yes I did read the documentation and it wasn't clear, enclosing the filepath in single quotes i.e. file '"C:\test videos\test1.wtv"' did not work. I needed to fall back to escaping the spaces, which was a pain! Hence the request for moving to a more friendly format. If 2 is not extensible, is there an alternative which can be used at the command line directly, it's not always feasable to create a text file from scripts, hence the request to provide a command line alternative, it doesn't have to be perfect, but can be a basic alternative. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 00:42:12 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 23 Dec 2012 23:42:12 -0000 Subject: [FFmpeg-trac] #1483(avformat:new): Allow a list of keyframe numbers that are valid for starting a new segment In-Reply-To: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> References: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> Message-ID: <050.e31eca7e7b68ff97e2b5d6950732f064@avcodec.org> #1483: Allow a list of keyframe numbers that are valid for starting a new segment -------------------------------------+------------------------------------ Reporter: gordon | Owner: Type: enhancement | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by gordon): Replying to [comment:4 saste]: > See patch in attachment. Test and comments are welcome. > > Also I'm not sure the patch is still useful, considering that there is already the segment_times option. I think that are cases where it is still useful. I will use it. Thanks! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 02:40:08 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 01:40:08 -0000 Subject: [FFmpeg-trac] #1900(avcodec:open): h264: huge memory allocation and a memleak In-Reply-To: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> References: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> Message-ID: <053.bb231d33a4de111e9848064c7ce26692@avcodec.org> #1900: h264: huge memory allocation and a memleak ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: h264 leak | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by michael): huge memory allocations can be prevented by limiting through -max_alloc X. While its possible in specific cases to more intelligently prevent huge allocations, this is not true in general, one can always encounter a file that stores a 8000x8000 yuv 4:4:4 16bit video that needs 16 frame buffers. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 02:55:38 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 01:55:38 -0000 Subject: [FFmpeg-trac] #1947(avformat:closed): rl2: signal EOF In-Reply-To: <038.cbf50e1ccedc9410d644510811a96c0b@avcodec.org> References: <038.cbf50e1ccedc9410d644510811a96c0b@avcodec.org> Message-ID: <053.573d0a95d3be66e4029c4e20b3f5e40e@avcodec.org> #1947: rl2: signal EOF ------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: rl2 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 03:59:06 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 02:59:06 -0000 Subject: [FFmpeg-trac] #2061(undetermined:new): ffmpeg -vf drawtext not support ft_load_flags=vertical_layout Message-ID: <041.a65816afe05e4a9eaf54b3380bb691c0@avcodec.org> #2061: ffmpeg -vf drawtext not support ft_load_flags=vertical_layout -------------------------------------+------------------------------------- Reporter: | Type: defect visual.zhang | Priority: normal Status: new | Version: Component: | unspecified undetermined | Blocked By: Keywords: | Reproduced by developer: 0 ft_load_flags vertical_layout | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- '''Summary of the bug:''' ffmpeg -vf drawtext not support ft_load_flags=vertical_layout '''How to reproduce:''' ffmpeg.exe -i 1.avi -codec:v libx264 -vf drawtext="ft_load_flags=render+vertical_layout:shadowcolor=0xaaaaaa66:shadowx=5:shadowy=2:fontcolor=white:fontsize=40:fontfile=STXIHEI.TTF:text='ABC':x=10:y=10" 21.avi Only use ft_load_flags=render is ok to render ABC on video. '''ffmpeg version?''' ffmpeg version N-47062-g26c531c Copyright (c) 2000-2012 the FFmpeg developers '''built on Nov 25 2012 12:21:26 with gcc 4.7.2 (GCC)''' configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runt ime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable- libass - -enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enab le-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libo pus --enable-librtmp --enable-libschroedinger --enable-libspeex --enable- libtheo ra --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-li bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --ena ble-zlib libavutil 52. 9.100 / 52. 9.100 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.102 / 3. 23.102 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 04:50:31 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 03:50:31 -0000 Subject: [FFmpeg-trac] #1999(avcodec:closed): fax 2d decompression bug In-Reply-To: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> References: <038.787c47675fcc744e8ca4af8f41320a67@avcodec.org> Message-ID: <053.abb7b261847f991b35771dc35570b10a@avcodec.org> #1999: fax 2d decompression bug ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 13:19:30 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 12:19:30 -0000 Subject: [FFmpeg-trac] #2057(postproc:open): Invalid read in dering subfilter MMX2 code In-Reply-To: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> References: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> Message-ID: <050.40c18ea4724ba0153a79c59c1d084c1e@avcodec.org> #2057: Invalid read in dering subfilter MMX2 code ------------------------------------+------------------------------------ Reporter: ubitux | Owner: michael Type: defect | Status: open Priority: normal | Component: postproc Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 Comment: A similar problem affects SSE2. {{{ ==4768== Invalid read of size 4 ==4768== at 0x87F2998: postProcess_SSE2 (postprocess_template.c:1094) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 15:33:22 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 14:33:22 -0000 Subject: [FFmpeg-trac] #2049(build system:open): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.adaeac94c2e96a9a9c02d201e350bc3e@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by reimar): Since we do not use _snprintf I don't understand why that define is there. Could you try with this configure patch, if that makes all cases work: {{{ --- a/configure +++ b/configure @@ -3372,7 +3372,6 @@ elif check_func_headers stdlib.h _get_doserrno; then libc_type=msvcrt add_compat strtod.o strtod=avpriv_strtod add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \ - _snprintf=avpriv_snprintf \ vsnprintf=avpriv_vsnprintf elif check_cpp_condition stddef.h "defined __KLIBC__"; then libc_type=klibc }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 15:33:54 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 14:33:54 -0000 Subject: [FFmpeg-trac] #2008(avformat:new): ffplay doesn't play encrypted HLS over https In-Reply-To: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> References: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> Message-ID: <050.fbbfda7ab02743b5cc22fb6efb184adc@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------ Reporter: zgzong | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by maximol): I am also looking for HLS support over https. According to trac ticket #575 this should be possible, but on a fairly recent checkout of ffmpeg this does not work. Note that I have intentionally masked the actual URL. {{{ ffmpeg -i https://***/stream.m3u8 -vcodec copy -acodec copy out.ts ffmpeg version git-2012-11-27-2cfa6fd Copyright (c) 2000-2012 the FFmpeg developers built on Nov 27 2012 21:04:11 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5) configuration: --enable-gpl --enable-libfaac --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab --enable-libx264 --enable-nonfree --enable-version3 libavutil 52. 9.102 / 52. 9.102 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 38.100 / 54. 38.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.103 / 3. 23.103 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 https://***/stream.m3u8: Protocol not found }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 15:40:29 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 14:40:29 -0000 Subject: [FFmpeg-trac] #2059(avformat:new): There is no way to define a protocol outside of ffmpeg In-Reply-To: <037.cdfecc30a85180425ca232872cbf4787@avcodec.org> References: <037.cdfecc30a85180425ca232872cbf4787@avcodec.org> Message-ID: <052.eb2fb91077136d2d17d352e5b08773c5@avcodec.org> #2059: There is no way to define a protocol outside of ffmpeg ------------------------------------+------------------------------------ Reporter: mustrumr | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [ticket:2059 mustrumr]: > After the removal of libavformat/url.h There is a file libavformat/url.h in my current git checkout. Could you elaborate? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 15:44:22 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 14:44:22 -0000 Subject: [FFmpeg-trac] #2008(avformat:new): ffplay doesn't play encrypted HLS over https In-Reply-To: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> References: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> Message-ID: <050.bde882af788151dc9054c61c52f3f33e@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------ Reporter: zgzong | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by reimar): https:// is only supported if you enabled either gnutls or openssl support, which you did not (note: --enable-gpl and --enable-openssl will possibly result in a binary that you can't redistribute without breaking licenses, gnutls is thus the "safer" choice). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 16:15:59 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 15:15:59 -0000 Subject: [FFmpeg-trac] #2058(undetermined:new): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.290987cb9517be620f92540e9d33c849@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: av_interleaved_write_frame | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => av_interleaved_write_frame Comment: Is this problem also reproducible with the following command line? $ ffmpeg -i SirDave\ US\ The\ Firm_WNBCDT_2012_02_18_21_34_17.wtv -an -vcodec copy out.ts If yes, please provide complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 16:16:15 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 15:16:15 -0000 Subject: [FFmpeg-trac] #2059(avformat:new): There is no way to define a protocol outside of ffmpeg In-Reply-To: <037.cdfecc30a85180425ca232872cbf4787@avcodec.org> References: <037.cdfecc30a85180425ca232872cbf4787@avcodec.org> Message-ID: <052.a82cb2c77b6330ba35cef3da3d558e88@avcodec.org> #2059: There is no way to define a protocol outside of ffmpeg ------------------------------------+------------------------------------ Reporter: mustrumr | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by reimar): That file will no longer be installed. I think we are generally open to adding it back (that change originated from Libav), but you might consider just using avio_alloc_context and use that to set the pb field of the AVFormatContext. See e.g. MPlayer's demux_lavf.c. It should result in simpler code than providing your own protocol. Of course it's not impossible that you have some other use case where this is not a possible workaround? Another example for its usage is in MPlayer's stream/stream_ffmpeg.c, but that is the case when you want to use FFmpeg's protocols, not when you want to write your own protocols, so it might not be interesting (but it demonstrates one way to use AVIO_FLAG_DIRECT, which avoids issues due to the buffering that using the new API forces onto you). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 16:46:57 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 15:46:57 -0000 Subject: [FFmpeg-trac] #2058(undetermined:new): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.c5ef667fbd99ae6fc1312835f4687d73@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: av_interleaved_write_frame | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Yes: {{{ ffmpeg -i "SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv" -an -vcodec copy out.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 002ee8a0] mpeg_decode_postinit() failure Last message repeated 33 times Input #0, wtv, from 'SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : The Firm WM/SubTitle : Chapter Seven WM/SubTitleDescription: Mitch's attempts to help a new client, Nate, are complicated when Nate's brother is named as a co-defendant; Tammy pressures a potential ally into explaining a cryptic clue. genre : Drama;General;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Josh Lucas/Callum Keith Rennie/Molly Parker/Natasha Calis/Juliette Lewis;;;Andrew Jenkins/Stuart H ughes/Tricia Helfer service_provider: WNBCDT service_name : WNBCDT (WNBC-DT) WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 1 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/MediaOriginalRunTime: 17215789295 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-14 WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-02-19 02:34:18 WM/WMRVSeriesUID: !MCSeries!01419020 WM/WMRVServiceID: !MCService!28459780 WM/WMRVProgramID: !MCProgram!269627380 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 2176 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -2056 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: true Duration : 16944809188 WM/WMRVEndTime : 2012-02-19 03:02:32 WM/WMRVBitrate : 14.730353 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: -1 WM/WMRVActualSoftPostPadding: 152 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 198 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 14 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 Duration: 00:28:13.87, start: 44.031933, bitrate: 14735 kb/s Stream #0:0[0x2a](eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:1[0x2b]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 59.94 tbr, 10000k tbn , 59.94 tbc Stream #0:2[0x2c](spa): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:3[0x2d]: Subtitle: eia_608 Stream #0:4[0x0]: Attachment: mjpeg Metadata: title : TV Thumbnail Output #0, mpegts, to 'out.ts': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : The Firm WM/SubTitle : Chapter Seven WM/SubTitleDescription: Mitch's attempts to help a new client, Nate, are complicated when Nate's brother is named as a co-defendant; Tammy pressures a potential ally into explaining a cryptic clue. genre : Drama;General;Series WM/OriginalReleaseTime: 0 WM/MediaCredits : Josh Lucas/Callum Keith Rennie/Molly Parker/Natasha Calis/Juliette Lewis;;;Andrew Jenkins/Stuart H ughes/Tricia Helfer service_provider: WNBCDT service_name : WNBCDT (WNBC-DT) WM/MediaNetworkAffiliation: NBC Affiliate WM/MediaOriginalChannel: 4 WM/MediaOriginalChannelSubNumber: 1 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/MediaOriginalRunTime: 17215789295 WM/MediaIsStereo: true WM/MediaIsRepeat: false WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-14 WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-02-19 02:34:18 WM/WMRVSeriesUID: !MCSeries!01419020 WM/WMRVServiceID: !MCService!28459780 WM/WMRVProgramID: !MCProgram!269627380 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 2176 WM/WMRVOriginalSoftPostPadding: 180 WM/WMRVHardPrePadding: -2056 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: true WM/WMRVDTVContent: true WM/WMRVHDContent: true Duration : 16944809188 WM/WMRVEndTime : 2012-02-19 03:02:32 WM/WMRVBitrate : 14.730353 WM/WMRVKeepUntil: -1 WM/WMRVActualSoftPrePadding: -1 WM/WMRVActualSoftPostPadding: 152 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 198 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 9 WM/MediaThumbRatingLevel: 14 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help pts (147120491) < dts (147120742) in stream 0me=00:27:02.62 bitrate=15010.4kbits/s av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 24 16:50:42 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 24 Dec 2012 15:50:42 -0000 Subject: [FFmpeg-trac] #2057(postproc:open): Invalid read in dering subfilter MMX2 code In-Reply-To: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> References: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> Message-ID: <050.84d919b40f5b0504780f220cdaeebbcd@avcodec.org> #2057: Invalid read in dering subfilter MMX2 code ------------------------------------+------------------------------------ Reporter: ubitux | Owner: michael Type: defect | Status: open Priority: normal | Component: postproc Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by ubitux): Yes that's normal: the SSE2 template is exactly the MMX2 code. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 07:45:12 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 06:45:12 -0000 Subject: [FFmpeg-trac] #2049(build system:open): msvc: --extra-cflags="-MD" leads to unresolved externals In-Reply-To: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> References: <039.2a52a2c3c2af556de9a99b67c4f12977@avcodec.org> Message-ID: <054.a1d12b1c35145a01590d42911c60cb21@avcodec.org> #2049: msvc: --extra-cflags="-MD" leads to unresolved externals -------------------------------------+------------------------------------- Reporter: Piroxiljin | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: msvc | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Piroxiljin): {{{ $ make echo @printf "CC\t%s\n" libavfilter/af_amix.o; c99wrap cl -I. -I./ -D_ISOC99_SOU RCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv_strtod -Dsnprintf =avpriv_snprintf -Dvsnprintf=avpriv_vsnprintf -DHAVE_AV_CONFIG_H -nologo -D_USE_ MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64 -Z7 -MD -Oy -Z7 -W4 -wd4244 -wd4127 -wd4018 -wd4389 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 -wd4 152 -wd4324 -we4013 -wd4100 -wd4214 -wd4554 -wd4996 -wd4273 -O2 -c -Fo libav filter/af_amix.o libavfilter/af_amix.c @printf CC\t%s\n libavfilter/af_amix.o af_amix.c d:\user\Alex\projects\ffmpeg\msvc-10-debug\3\ffmpeg-HEAD- 1166fc0\config.h(9) : w arning C4005: 'av_restrict' : macro redefinition d:\user\alex\projects\ffmpeg\msvc-10-debug\3\ffmpeg-head- 1166fc0\libavut il\attributes.h(66) : see previous definition of 'av_restrict' af_amix.o_converted.c libavfilter/af_amix.c(502) : error C4013: 'avpriv_snprintf' undefined; assuming extern returning int libavfilter/af_amix.c(531) : warning C4090: 'function' : different 'const' quali fiers make: *** [libavfilter/af_amix.o] Error 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 17:04:10 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 16:04:10 -0000 Subject: [FFmpeg-trac] #2062(avcodec:new): Playback of HD-PVR recordings corrupted when using VDPAU Message-ID: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> #2062: Playback of HD-PVR recordings corrupted when using VDPAU -----------------------------------+--------------------------------------- Reporter: jyavenard | Type: defect Status: new | Priority: normal Component: avcodec | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+--------------------------------------- Summary of the bug: In reference to bug #2050 The following clip: http://www.avenard.org/files/media/mediatest/11159%20HD-PVR%20sample.mpg Presents video corruptions when using VDPAU, where playback devolves into a weird backward-and-forward stuttering, with frames being displayed out of order git bisect point bfca35114ae174bbabd88526379d95d4022a98b1 as the commit introducing the regression: {{{ commit bfca35114ae174bbabd88526379d95d4022a98b1 Author: Michael Niedermayer Date: Wed Nov 16 23:58:06 2011 +0100 h264: rewrite has_b_frame calculation code, the previous implementation was too buggy. Signed-off-by: Michael Niedermayer }}} Reversal of that commit against release/1.0 is available at: http://pastebin.com/mPqMzCVq Issue also occurs on master. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 17:11:21 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 16:11:21 -0000 Subject: [FFmpeg-trac] #2008(avformat:closed): ffplay doesn't play encrypted HLS over https In-Reply-To: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> References: <035.9e89747ad5f01cb29c2f2441ace97739@avcodec.org> Message-ID: <050.da0a5ac02572de786dfd7f87e470569c@avcodec.org> #2008: ffplay doesn't play encrypted HLS over https -------------------------------------+------------------------------------ Reporter: zgzong | Owner: Type: enhancement | Status: closed Priority: wish | Component: avformat Version: git-master | Resolution: invalid Keywords: https | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 17:12:30 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 16:12:30 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.9cbf15eaa295d6c8b0c2ff5b1c90bb1a@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: av_interleaved_write_frame => av_interleaved_write_frame wtv mpeg2video * status: new => open * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 17:23:57 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 16:23:57 -0000 Subject: [FFmpeg-trac] #2062(avcodec:new): Playback of HD-PVR recordings corrupted when using VDPAU In-Reply-To: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> References: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> Message-ID: <053.8a50594591307d137945fdcb43c9ae95@avcodec.org> #2062: Playback of HD-PVR recordings corrupted when using VDPAU -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by gjdfgh): * cc: nfxjfg@? (added) Comment: Interestingly this actually works in mplayer2 with vdpau hardware decoding (except for some spam at the start of the file, which happens with software decoding too). Tested with ffmpeg 0b980e57ace0acf74bee8bcfc89cbd4f0ff2a602. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 19:22:36 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 18:22:36 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.312a037d82c9c428614f586d83551457@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): I'm facing similar issues (same error messagE) with some TS files also. Should I tag those to this ticket also or should I open a new ticket for them? {{{ ffmpeg -y -threads 0 -i "CSI- Crime Scene Investigation_WVLTDT_22_02_2012_21_58_01.ts" -ss 23.19 -t 233.4 -map 0:a -map 0:v -vcodec copy -acodec copy "CSI- Crime Scene Investigation_WVLTDT_22_02_2012_21_58_01_23_256.ts" --> ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers --> built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) --> configuration: --enable-static --arch=x86 --target-os=mingw32 --cross-prefix=/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg- config --enable-gpl --enable-libx264 --enable-avisynth --enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheora --enable-libspeex --enable- libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable- fontconfig --enable-libass --enable-libutvideo --enable-libopus --disable- w32threads --enable-frei0r --enable-filter=frei0r --enable-libvo-aacenc --enable-bzlib --enable-libxavs --extra-cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo- amrwbenc --enable-libschroedinger --enable-libbluray --enable-libvpx --enable-runtime-cpudetect --> libavutil 52. 12.100 / 52. 12.100 --> libavcodec 54. 81.100 / 54. 81.100 --> libavformat 54. 49.102 / 54. 49.102 --> libavdevice 54. 3.102 / 54. 3.102 --> libavfilter 3. 29.100 / 3. 29.100 --> libswscale 2. 1.103 / 2. 1.103 --> libswresample 0. 17.102 / 0. 17.102 --> libpostproc 52. 2.100 / 52. 2.100 --> Input #0, mpegts, from 'CSI- Crime Scene Investigation_WVLTDT_22_02_2012_21_58_01.ts': --> Duration: 01:04:58.13, start: 1.269000, bitrate: 10817 kb/s --> Video duration=3898.13 --> Program 1 --> Metadata: --> service_name : Service01 --> service_provider: FFmpeg --> Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fps, 59.94 tbr, 90k tbn, 119.88 tbc --> Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s --> Output #0, mpegts, to 'CSI- Crime Scene Investigation_WVLTDT_22_02_2012_21_58_01_23_256.ts': --> Metadata: --> encoder : Lavf54.49.102 --> Stream #0:0: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, 192 kb/s --> Stream #0:1: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 59.94 fps, 90k tbn, 59.94 tbc --> Stream mapping: --> Stream #0:1 -> #0:0 (copy) --> Stream #0:0 -> #0:1 (copy) --> Press [q] to stop, [?] for help --> frame= 0 fps=0.0 q=-1.0 size= 0kB time=00:00:00.00 bitrate= 0.0kbits/s --> frame= 0 fps=0.0 q=-1.0 size= 0kB time=00:00:00.00 bitrate= 0.0kbits/s --> frame= 0 fps=0.0 q=-1.0 size= 0kB time=00:00:00.00 bitrate= 0.0kbits/s --> frame= 0 fps=0.0 q=-1.0 size= 0kB time=00:00:00.00 bitrate= 0.0kbits/s --> pts (22590) < dts (24120) in stream 1 --> av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 22:37:23 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 21:37:23 -0000 Subject: [FFmpeg-trac] #2053(FFplay:open): ffplay's frame step not accurate In-Reply-To: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> References: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> Message-ID: <050.5fcd9c9ff317d94add6b14c6355f8d78@avcodec.org> #2053: ffplay's frame step not accurate ------------------------------------+---------------------------------- Reporter: ubitux | Owner: cus Type: defect | Status: open Priority: normal | Component: FFplay Version: git-master | Resolution: Keywords: framestep | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cus): * owner: => cus -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 23:33:32 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 22:33:32 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.ff6ba9c5f955532053923b228588cd66@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Please provide a sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 23:33:50 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 22:33:50 -0000 Subject: [FFmpeg-trac] #2063(undetermined:new): ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files Message-ID: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> #2063: ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: when trying to remux dvrms to ts, ffmpeg throws a huge amount of pts < dts invalid, clipping messages. Is this normal or is there an issue? How to reproduce: {{{ ffmpeg.2311.exe -fflags +genpts -i "Test DVRMS.dvr-ms" -c copy out.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 030e9aa0] interlaced frame in progressive sequence, ignoring [mpeg2video @ 030e9aa0] invalid frame_pred_frame_dct [mpeg2video @ 030e9aa0] slice below image (30 >= 30) [asf @ 003ec960] Estimating duration from bitrate, this may be inaccurate Input #0, asf, from 'Test DVRMS.dvr-ms': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording Duration: 00:00:01.62, start: 37.280000, bitrate: 10356 kb/s Stream #0:0: Video: mjpeg, yuvj420p, 200x200 [SAR 96:96 DAR 1:1], 90k tbr, 90k tbn, 90k tbc Metadata: title : TV Thumbnail comment : Movie/video screen capture Stream #0:1: Audio: mp2, 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], 12000 kb/s, 25.58 fps , 25 tbr, 1k tbn, 50 tbc Output #0, mpegts, to 'out.ts': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], q=2-31, 12000 kb/s, 2 5.58 fps, 90k tbn, 50 tbc Stream #0:1: Audio: mp2, 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:2 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 030dc080] st:0 PTS: 33390 DTS: 33390 < 40591 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 36990 DTS: 36990 < 40592 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 44190 DTS: 44190 < 51391 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 47790 DTS: 47790 < 51392 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 54990 DTS: 54990 < 62191 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 58590 DTS: 58590 < 62192 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 65790 DTS: 65790 < 72991 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 69390 DTS: 69390 < 72992 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 76590 DTS: 76590 < 83791 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 80190 DTS: 80190 < 83792 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 87390 DTS: 87390 < 94591 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 90990 DTS: 90990 < 94592 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 98190 DTS: 98190 < 105391 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 101790 DTS: 101790 < 105392 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 108990 DTS: 108990 < 116191 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 112590 DTS: 112590 < 116192 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 119790 DTS: 119790 < 126991 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 123390 DTS: 123390 < 126992 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 130590 DTS: 130590 < 137791 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 134190 DTS: 134190 < 137792 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 141390 DTS: 141390 < 148591 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 144990 DTS: 144990 < 148592 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 152190 DTS: 152190 < 159391 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 155790 DTS: 155790 < 159392 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 162990 DTS: 162990 < 170191 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 166590 DTS: 166590 < 170192 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 173790 DTS: 173790 < 180991 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 177390 DTS: 177390 < 180992 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 184590 DTS: 184590 < 191791 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 188190 DTS: 188190 < 191792 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 195390 DTS: 195390 < 202591 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 198990 DTS: 198990 < 202592 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 206190 DTS: 206190 < 213391 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 209790 DTS: 209790 < 213392 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 216990 DTS: 216990 < 224191 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 220590 DTS: 220590 < 224192 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 227790 DTS: 227790 < 234991 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 231390 DTS: 231390 < 234992 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 238590 DTS: 238590 < 245791 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 242190 DTS: 242190 < 245792 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 249390 DTS: 249390 < 256591 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 252990 DTS: 252990 < 256592 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 260190 DTS: 260190 < 267391 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 263790 DTS: 263790 < 267392 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 270990 DTS: 270990 < 278191 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 274590 DTS: 274590 < 278192 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 281790 DTS: 281790 < 288991 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 285390 DTS: 285390 < 288992 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 292590 DTS: 292590 < 299791 invalid, clipping [mpegts @ 030dc080] st:0 PTS: 296190 DTS: 296190 < 299792 invalid, clipping frame= 79 fps=0.0 q=-1.0 Lsize= 2029kB time=00:00:03.47 bitrate=4788.0kbits/s video:1770kB audio:98kB subtitle:0 global headers:0kB muxing overhead 8.608650% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 25 23:57:42 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 22:57:42 -0000 Subject: [FFmpeg-trac] #1903(FFplay:open): ffplay: audio wave does not refresh for mp3s with apic In-Reply-To: <038.4cb55ea996692afca771524b6af80fa2@avcodec.org> References: <038.4cb55ea996692afca771524b6af80fa2@avcodec.org> Message-ID: <053.6f1739b9c2e93a3db63cb77b2115b416@avcodec.org> #1903: ffplay: audio wave does not refresh for mp3s with apic ------------------------------------+---------------------------------- Reporter: ami_stuff | Owner: cus Type: defect | Status: open Priority: normal | Component: FFplay Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cus): * owner: => cus -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 00:03:14 2012 From: trac at avcodec.org (FFmpeg) Date: Tue, 25 Dec 2012 23:03:14 -0000 Subject: [FFmpeg-trac] #2062(avcodec:new): Playback of HD-PVR recordings corrupted when using VDPAU In-Reply-To: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> References: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> Message-ID: <053.a2b7825e7d08c1db047c9db6995a3b5f@avcodec.org> #2062: Playback of HD-PVR recordings corrupted when using VDPAU -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by jyavenard): The issue show in mythtv (bug report: http://code.mythtv.org/trac/ticket/11159) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 01:32:39 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 00:32:39 -0000 Subject: [FFmpeg-trac] #2063(undetermined:new): ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files In-Reply-To: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> References: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> Message-ID: <055.a33b8ccaedafd232f4a1a3b39e82edb3@avcodec.org> #2063: ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: minor | Component: Version: git-master | undetermined Keywords: wtv | Resolution: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => wtv mpeg2video * priority: normal => minor * version: unspecified => git-master Comment: Is this problem only reproducible with -fflags +genpts? Is it reproducible with -an or -vn? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 01:48:01 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 00:48:01 -0000 Subject: [FFmpeg-trac] #2063(undetermined:new): ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files In-Reply-To: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> References: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> Message-ID: <055.88aa99682a77a3f37b3b1916d677e50a@avcodec.org> #2063: ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: minor | Component: Version: git-master | undetermined Keywords: wtv | Resolution: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Without genpts it fails (which is another open ticket) {{{ Stream #0:0: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], q=2-31, 12000 kb/s, 2 5.58 fps, 90k tbn, 50 tbc Stream #0:1: Audio: mp2, 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:2 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 02ce4c00] st:0 PTS: 33390 DTS: 33390 < 40591 invalid, clipping [mpegts @ 02ce4c00] st:0 PTS: 36990 DTS: 36990 < 40592 invalid, clipping [mpegts @ 02ce4c00] st:0 PTS: 44190 DTS: 44190 < 51391 invalid, clipping [mpegts @ 02ce4c00] st:0 PTS: 47790 DTS: 47790 < 51392 invalid, clipping [mpegts @ 02ce4c00] first pts value must set av_interleaved_write_frame(): Invalid data found when processing input }}} With -an (and genpts, without genpts it fails as above) it gives the same warnings/errors: {{{ Stream #0:0: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], q=2-31, 12000 kb/s, 2 5.58 fps, 90k tbn, 50 tbc Stream mapping: Stream #0:2 -> #0:0 (copy) Press [q] to stop, [?] for help [mpegts @ 003cce60] st:0 PTS: 33390 DTS: 33390 < 40591 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 36990 DTS: 36990 < 40592 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 44190 DTS: 44190 < 51391 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 47790 DTS: 47790 < 51392 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 54990 DTS: 54990 < 62191 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 58590 DTS: 58590 < 62192 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 65790 DTS: 65790 < 72991 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 69390 DTS: 69390 < 72992 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 76590 DTS: 76590 < 83791 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 80190 DTS: 80190 < 83792 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 87390 DTS: 87390 < 94591 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 90990 DTS: 90990 < 94592 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 98190 DTS: 98190 < 105391 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 101790 DTS: 101790 < 105392 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 108990 DTS: 108990 < 116191 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 112590 DTS: 112590 < 116192 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 119790 DTS: 119790 < 126991 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 123390 DTS: 123390 < 126992 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 130590 DTS: 130590 < 137791 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 134190 DTS: 134190 < 137792 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 141390 DTS: 141390 < 148591 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 144990 DTS: 144990 < 148592 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 152190 DTS: 152190 < 159391 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 155790 DTS: 155790 < 159392 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 162990 DTS: 162990 < 170191 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 166590 DTS: 166590 < 170192 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 173790 DTS: 173790 < 180991 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 177390 DTS: 177390 < 180992 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 184590 DTS: 184590 < 191791 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 188190 DTS: 188190 < 191792 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 195390 DTS: 195390 < 202591 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 198990 DTS: 198990 < 202592 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 206190 DTS: 206190 < 213391 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 209790 DTS: 209790 < 213392 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 216990 DTS: 216990 < 224191 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 220590 DTS: 220590 < 224192 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 227790 DTS: 227790 < 234991 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 231390 DTS: 231390 < 234992 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 238590 DTS: 238590 < 245791 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 242190 DTS: 242190 < 245792 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 249390 DTS: 249390 < 256591 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 252990 DTS: 252990 < 256592 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 260190 DTS: 260190 < 267391 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 263790 DTS: 263790 < 267392 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 270990 DTS: 270990 < 278191 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 274590 DTS: 274590 < 278192 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 281790 DTS: 281790 < 288991 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 285390 DTS: 285390 < 288992 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 292590 DTS: 292590 < 299791 invalid, clipping [mpegts @ 003cce60] st:0 PTS: 296190 DTS: 296190 < 299792 invalid, clipping frame= 79 fps=0.0 q=-1.0 Lsize= 1919kB time=00:00:03.47 bitrate=4530.2kbits/s video:1770kB audio:0kB subtitle:0 global headers:0kB muxing overhead 8.419719% }}} with -vn (and genpts) there are no warnings/errors: {{{ Stream #0:0: Audio: mp2, 48000 Hz, stereo, 256 kb/s Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help size= 110kB time=00:00:03.12 bitrate= 287.8kbits/s video:0kB audio:98kB subtitle:0 global headers:0kB muxing overhead 12.415865% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 01:58:40 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 00:58:40 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.e6cbe85bdadad96ca5afb6371f9d0c0e@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): I'm attaching a small sample. Here is the command (simplified) to reproduce the issue: ffmpeg -threads 0 -i csi.ts -map 0:a -map 0:v -vcodec copy -acodec copy "csi-test.ts" {{{ ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpegts, from 'csi.ts': Duration: 00:00:01.44, start: 1.269000, bitrate: 7733 kb/s Program 1 Metadata: service_name : Service01 service_provider: FFmpeg Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fp s, 59.92 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s File 'csi-test.ts' already exists. Overwrite ? [y/N] y Output #0, mpegts, to 'csi-test.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, 192 kb/s Stream #0:1: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 59.94 fps, 90k tbn, 59.94 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:0 -> #0:1 (copy) Press [q] to stop, [?] for help [mpegts @ 03630060] st:0 PTS: 43650 DTS: 39150 < 39151 invalid, clipping [mpegts @ 03630060] pts (42120) < dts (43650) in stream 1 av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 04:25:24 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 03:25:24 -0000 Subject: [FFmpeg-trac] #2064(avcodec:new): Missing ADPCM_MS header Message-ID: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Type: Status: new | enhancement Component: avcodec | Priority: wish Keywords: adpcm_ms | Version: header | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: FFmpeg does not recognize ADPCM_MS audio file when audio header is not present. How to reproduce: {{{ ffmpeg -i radio-orig.wav ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:13:20 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86_64 --target-os=mingw32 --cross-prefi x=/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-x86_64/bin/x86_64 -w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avi synth --enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --ena ble-librtmp --enable-libvorbis --enable-libtheora --enable-libspeex --enable-lib openjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable- fontconfi g --enable-libass --enable-libutvideo --enable-libopus --disable- w32threads --en able-frei0r --enable-filter=frei0r --enable-libvo-aacenc --enable-bzlib --enable -libxavs --extra-cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-l ibopencore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable-libbl uray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 radio-orig.wav: Invalid data found when processing input ffmpeg -i radio-header.wav ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:13:20 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86_64 --target-os=mingw32 --cross-prefi x=/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-x86_64/bin/x86_64 -w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avi synth --enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --ena ble-librtmp --enable-libvorbis --enable-libtheora --enable-libspeex --enable-lib openjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable- fontconfi g --enable-libass --enable-libutvideo --enable-libopus --disable- w32threads --en able-frei0r --enable-filter=frei0r --enable-libvo-aacenc --enable-bzlib --enable -libxavs --extra-cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-l ibopencore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable-libbl uray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [wav @ 000000000225dfe0] max_analyze_duration 5000000 reached at 5002667 Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, wav, from 'radio-header.wav': Duration: 24:51:18.49, bitrate: 0 kb/s Stream #0:0: Audio: adpcm_ms ([2][0][0][0] / 0x0002), 48000 Hz, stereo, s16, 384 kb/s At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 04:28:05 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 03:28:05 -0000 Subject: [FFmpeg-trac] #2064(avcodec:new): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.af5d902297dfd1d29c4048c4c2f849ac@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: unspecified | Resolution: Keywords: adpcm_ms | Blocked By: header | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by DJX): Original file: http://www.djxmmx.net/temp/FFmpeg-ADPCM_MS/radio-orig.wav File with header manually added: http://www.djxmmx.net/temp/FFmpeg-ADPCM_MS/radio-header.wav -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 04:31:13 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 03:31:13 -0000 Subject: [FFmpeg-trac] #2065(undetermined:new): ADPCM_MS audio duration is incorrect Message-ID: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> #2065: ADPCM_MS audio duration is incorrect -------------------------------------+------------------------------------- Reporter: DJX | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: The duration of an ADPCM_MS file is incorrectly reported. FFmpeg reports a duration of 24:51:18.49 for this file when it should be 2:00 (2 minutes). How to reproduce: {{{ ffmpeg -i radio-header.wav ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:13:20 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86_64 --target-os=mingw32 --cross-prefi x=/home/rdp/dev/ffmpeg-windows-build- helpers/sandbox/mingw-w64-x86_64/bin/x86_64 -w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avi synth --enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --ena ble-librtmp --enable-libvorbis --enable-libtheora --enable-libspeex --enable-lib openjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable- fontconfi g --enable-libass --enable-libutvideo --enable-libopus --disable- w32threads --en able-frei0r --enable-filter=frei0r --enable-libvo-aacenc --enable-bzlib --enable -libxavs --extra-cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-l ibopencore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable-libbl uray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [wav @ 000000000225dfe0] max_analyze_duration 5000000 reached at 5002667 Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, wav, from 'radio-header.wav': Duration: 24:51:18.49, bitrate: 0 kb/s Stream #0:0: Audio: adpcm_ms ([2][0][0][0] / 0x0002), 48000 Hz, stereo, s16, 384 kb/s At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 04:31:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 03:31:36 -0000 Subject: [FFmpeg-trac] #2065(undetermined:new): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.0744741995ea80f6101b9903de9c5f03@avcodec.org> #2065: ADPCM_MS audio duration is incorrect -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DJX): File: http://www.djxmmx.net/temp/FFmpeg-ADPCM_MS/radio-header.wav -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 08:18:07 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 07:18:07 -0000 Subject: [FFmpeg-trac] #2066(FFmpeg:new): Facing problem related to directpred (Please find attached screen shot) Message-ID: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> #2066: Facing problem related to directpred (Please find attached screen shot) ----------------------------------+--------------------------------------- Reporter: indecomm | Type: defect Status: new | Priority: critical Component: FFmpeg | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+--------------------------------------- Summary of the bug: How to reproduce: {{{ % ffmpeg -i input ... output ffmpeg version built on ... }}} Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 10:04:00 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 09:04:00 -0000 Subject: [FFmpeg-trac] #2066(FFmpeg:closed): Facing problem related to directpred (Please find attached screen shot) In-Reply-To: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> References: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> Message-ID: <052.c3d7251cf49eeb238390e3e09d60ada1@avcodec.org> #2066: Facing problem related to directpred (Please find attached screen shot) -------------------------------------+----------------------------------- Reporter: indecomm | Owner: Type: defect | Status: closed Priority: normal | Component: FFmpeg Version: unspecified | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * priority: critical => normal * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 10:08:17 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 09:08:17 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.bef8c231cde0aa481657771f2f07f968@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Isn't this also reproducible with the following command line? $ ffmpeg -i csi.ts -an -vcodec copy csi-test.ts -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 10:25:20 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 09:25:20 -0000 Subject: [FFmpeg-trac] #2066(FFmpeg:closed): Facing problem related to directpred (Please find attached screen shot) In-Reply-To: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> References: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> Message-ID: <052.cb7bdc887ab344796669674eca68986a@avcodec.org> #2066: Facing problem related to directpred (Please find attached screen shot) -------------------------------------+----------------------------------- Reporter: indecomm | Owner: Type: defect | Status: closed Priority: normal | Component: FFmpeg Version: unspecified | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by indecomm): Please let me knwo what happened to this ticket? Do u need any other info then let me knw -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 11:34:24 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 10:34:24 -0000 Subject: [FFmpeg-trac] #2066(FFmpeg:closed): Facing problem related to directpred (Please find attached screen shot) In-Reply-To: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> References: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> Message-ID: <052.574edbfcdcc4df6ff74693a1429b17fa@avcodec.org> #2066: Facing problem related to directpred (Please find attached screen shot) -------------------------------------+----------------------------------- Reporter: indecomm | Owner: Type: defect | Status: closed Priority: normal | Component: FFmpeg Version: unspecified | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by reimar): You should really copy and paste the output instead of attaching a screenshot. For what I can tell your preset file contains the option "directpred" which is now called "direct-pred". Apart from that it's very unlikely that it makes sense for you to specify such settings manually, you should almost always use exclusively one of the presets build into x264 itself. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:09:02 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:09:02 -0000 Subject: [FFmpeg-trac] #2064(undetermined:new): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.92c202a131074015697a945ed067e828@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: unspecified | undetermined Keywords: adpcm_ms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: adpcm_ms header => adpcm_ms * component: avcodec => undetermined Comment: How was radio-orig.wav produced? Which software plays radio-orig.wav ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:10:36 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:10:36 -0000 Subject: [FFmpeg-trac] #2065(avformat:new): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.5449921e84df935ccd109f0ac5046606@avcodec.org> #2065: ADPCM_MS audio duration is incorrect ------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => regression * version: unspecified => git-master * component: undetermined => avformat -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:29:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:29:33 -0000 Subject: [FFmpeg-trac] #2066(FFmpeg:closed): Facing problem related to directpred (Please find attached screen shot) In-Reply-To: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> References: <037.161d36c77ec2748ce635828c3426e51f@avcodec.org> Message-ID: <052.07c499d5b2b81493da3fa926b3e37a63@avcodec.org> #2066: Facing problem related to directpred (Please find attached screen shot) -------------------------------------+----------------------------------- Reporter: indecomm | Owner: Type: defect | Status: closed Priority: normal | Component: FFmpeg Version: unspecified | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by indecomm): Hi, Sorry for providing very brief description on the issue. Here is the complete update on the issue, Basically we are trying to convert a multimedia file (of any format) to .mp4 format using some third party presets. Attached here with filename (test.ffpreset). We have imported this preset into winff tool and tried to convert a multimedia file(.flv) to .mp4 file. The preset selected in the tool had the value as "-f mp4 -acodec vorbis -aq 30 -ab 128k -ac 2 -ar 24000 -vcodec libx264 - fpre test.ffpreset -b 330k -s 640x360 -vf pad=iw:ih+2*60:0:60 -strict experimental -threads 0" Conversion was unsuccessful with below error "Unrecognized option 'directpred' libx264-ingenico.ffpreset: Invalid option or argument: 'directpred=3 ', parsed as 'directpred' = '3'" Later we tried by changing "directpred" to "direct-pred", again it was unsuccessful with below error ------------------------------------------------------------------------------------------------------ Please use -b:a or -b:v, -b is ambiguous [NULL @ 032a5f60] [Eval @ 0022e6fc] Undefined constant or missing '(' in 'mixed' [NULL @ 032a5f60] Unable to parse option value "mixed-refs-dct8x8 -fastpskip-wpre d" [NULL @ 032a5f60] Error setting option flags2 to value -mixed-refs- dct8x8-fastps kip-wpred. Output #0, mp4, to 'C:\Users\Kamalesh.Kumar\Desktop\desparado.mp4': Metadata: WMFSDKVersion : 12.0.7601.17514 WMFSDKNeeded : 0.0.0.0000 IsVBR : 0 title : Facebook Stream #0:0: Video: none, yuv420p, 640x360, q=-1--1, 90k tbn, 29.97 tbc Stream #0:1: Audio: none, 24000 Hz, stereo, fltp, 128 kb/s Stream mapping: Stream #0:1 -> #0:0 (wmv3 -> libx264) Stream #0:0 -> #0:1 (wmav2 -> vorbis) Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height -------------------------------------------------------------------------------------------------------------- Could you please suggest us a solution on what preset values should be used for above mentioned configurations. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:29:47 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:29:47 -0000 Subject: [FFmpeg-trac] #2061(avfilter:open): ffmpeg -vf drawtext not support ft_load_flags=vertical_layout In-Reply-To: <041.a65816afe05e4a9eaf54b3380bb691c0@avcodec.org> References: <041.a65816afe05e4a9eaf54b3380bb691c0@avcodec.org> Message-ID: <056.a3ac82a92aeea429869774a96761e05b@avcodec.org> #2061: ffmpeg -vf drawtext not support ft_load_flags=vertical_layout -------------------------------------+------------------------------------- Reporter: | Owner: visual.zhang | Status: open Type: defect | Component: avfilter Priority: normal | Resolution: Version: unspecified | Blocked By: Keywords: | Reproduced by developer: 1 ft_load_flags vertical_layout | drawtext | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by saste): * keywords: ft_load_flags vertical_layout => ft_load_flags vertical_layout drawtext * status: new => open * component: undetermined => avfilter * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:58:40 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:58:40 -0000 Subject: [FFmpeg-trac] #113(avcodec:open): AAC - Audio object type 23 is not supported In-Reply-To: <040.2b51c00bb6991c8d538fd4b03d97967f@avcodec.org> References: <040.2b51c00bb6991c8d538fd4b03d97967f@avcodec.org> Message-ID: <055.f106a0cca63d1637eec688643ca9e775@avcodec.org> #113: AAC - Audio object type 23 is not supported -------------------------------------+----------------------------------- Reporter: k_s_johnson | Owner: Type: enhancement | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: AAC-LD | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by bat_guano): Replying to [comment:3 cehoyos]: Hi This AAC-LD profile can be achieved using libfdk_aac encoder with FFmpeg:- $ ffmpeg -i foo -c:a libfdk_aac -profile:a aac_ld -b:a 64k -ar 44100 -ac 2 foo.m4a Sample is attached. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 12:59:56 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 11:59:56 -0000 Subject: [FFmpeg-trac] #113(avcodec:open): AAC - Audio object type 23 is not supported In-Reply-To: <040.2b51c00bb6991c8d538fd4b03d97967f@avcodec.org> References: <040.2b51c00bb6991c8d538fd4b03d97967f@avcodec.org> Message-ID: <055.7d261a4583fcbcba13cb0b98a9c2bd80@avcodec.org> #113: AAC - Audio object type 23 is not supported -------------------------------------+----------------------------------- Reporter: k_s_johnson | Owner: Type: enhancement | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: AAC-LD | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by bat_guano): * cc: batguano999@? (added) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 13:00:29 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 12:00:29 -0000 Subject: [FFmpeg-trac] #2061(avfilter:open): ffmpeg -vf drawtext not support ft_load_flags=vertical_layout In-Reply-To: <041.a65816afe05e4a9eaf54b3380bb691c0@avcodec.org> References: <041.a65816afe05e4a9eaf54b3380bb691c0@avcodec.org> Message-ID: <056.b645c5939c793065546d279cfb60bf0f@avcodec.org> #2061: ffmpeg -vf drawtext not support ft_load_flags=vertical_layout --------------------------------------+------------------------------------ Reporter: visual.zhang | Owner: Type: defect | Status: open Priority: normal | Component: avfilter Version: git-master | Resolution: Keywords: drawtext | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: ft_load_flags vertical_layout drawtext => drawtext * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 14:53:34 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 13:53:34 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy WTV files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.f7eef95596bbf3bb5b9bdc978b5089c3@avcodec.org> #2058: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame wtv | Blocked By: mpeg2video | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Yes {{{ ffmpeg.2311.exe -i csi.ts -vcodec copy -an "csi-test.ts" ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpegts, from 'csi.ts': Duration: 00:00:01.44, start: 1.269000, bitrate: 7733 kb/s Program 1 Metadata: service_name : Service01 service_provider: FFmpeg Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fp s, 59.92 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s File 'csi-test.ts' already exists. Overwrite ? [y/N] y Output #0, mpegts, to 'csi-test.ts': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 59.94 fps, 90k tbn, 59.94 tbc Stream mapping: Stream #0:0 -> #0:0 (copy) Press [q] to stop, [?] for help [mpegts @ 035d0060] st:0 PTS: 0 DTS: -4500 < -4499 invalid, clipping [mpegts @ 035d0060] pts (-1530) < dts (0) in stream 0 av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 15:14:24 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 14:14:24 -0000 Subject: [FFmpeg-trac] #913(avcodec:open): tiff g3fax: incorrect value of rows per strip In-Reply-To: <038.02910410be3d52b907c942c35da71490@avcodec.org> References: <038.02910410be3d52b907c942c35da71490@avcodec.org> Message-ID: <053.3e958a71ac0fb261157f633191ce231d@avcodec.org> #913: tiff g3fax: incorrect value of rows per strip -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by ami_stuff): this is a regression between git-de545d2 (11-May-2011) and git-27614b1 (15-May-2011) repleacing "s->avctx->height" with "s->height" fixes the problem -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 16:28:52 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 15:28:52 -0000 Subject: [FFmpeg-trac] #2065(avformat:open): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.96ca47491e7714518fe71ccc68c69d92@avcodec.org> #2065: ADPCM_MS audio duration is incorrect ------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 Comment: Regression since 462b262. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 17:10:54 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 16:10:54 -0000 Subject: [FFmpeg-trac] #913(avcodec:open): tiff g3fax: incorrect value of rows per strip In-Reply-To: <038.02910410be3d52b907c942c35da71490@avcodec.org> References: <038.02910410be3d52b907c942c35da71490@avcodec.org> Message-ID: <053.e41bca0509a5bf17bedf2c716b676da6@avcodec.org> #913: tiff g3fax: incorrect value of rows per strip -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: tif | Blocked By: regression roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: tif => tif regression roundup * priority: wish => important * type: enhancement => defect Comment: Regression since bbc572a / 7215341, related to issue 1925. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 17:13:17 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 16:13:17 -0000 Subject: [FFmpeg-trac] #1900(avcodec:open): h264: huge memory allocation and a memleak In-Reply-To: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> References: <038.3ce3acd617cd4d5e41b29a2b923a1aaf@avcodec.org> Message-ID: <053.03c376c41803d174d0931d8f71ab7bf2@avcodec.org> #1900: h264: huge memory allocation and a memleak ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: h264 leak | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * priority: important => normal -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 17:31:52 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 16:31:52 -0000 Subject: [FFmpeg-trac] #2064(undetermined:new): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.83ccca2c307d48fbb349e810c1d56ba8@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: unspecified | undetermined Keywords: adpcm_ms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DJX): I do not know how it was produced. It plays in a video game: Call of Duty Black Ops. I don't know if they removed the header to save space (doubtful) or for obfuscation purposes. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:00:33 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:00:33 -0000 Subject: [FFmpeg-trac] #2064(undetermined:new): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.b1c31f09f7d192a3c96dccd503b7e314@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: unspecified | undetermined Keywords: adpcm_ms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Do I understand you correctly that the file is found as-is on your drive if Call of Duty Black Ops is installed / that the exact file can be found on the DVD? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:10:44 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:10:44 -0000 Subject: [FFmpeg-trac] #2063(undetermined:open): ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files In-Reply-To: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> References: <040.2fb171c3361bdaf755378f55b9cb7fa5@avcodec.org> Message-ID: <055.9e50f3da0ba526e51f013b850ce7d9e3@avcodec.org> #2063: ffmpeg throwing an excessive amount of pts < dts clipping messages for dvrms files -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: minor | Component: Version: git-master | undetermined Keywords: asf | Resolution: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: wtv mpeg2video => asf mpeg2video * status: new => open * reproduced: 0 => 1 Comment: {{{ $ ffmpeg -i Test\ DVRMS.dvr-ms -vcodec copy -an out.avi ffmpeg version N-48213-g39d1788 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 26 2012 18:27:31 with gcc 4.3 (SUSE Linux) configuration: --enable-gpl libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 0x8feb300] interlaced frame in progressive sequence, ignoring [mpeg2video @ 0x8feb300] invalid frame_pred_frame_dct [mpeg2video @ 0x8feb300] slice below image (30 >= 30) [asf @ 0x8fe7f80] Estimating duration from bitrate, this may be inaccurate Input #0, asf, from 'Test DVRMS.dvr-ms': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 title : Manual Recording Duration: 00:00:01.62, start: 37.280000, bitrate: 10356 kb/s Stream #0:0: Video: mjpeg, yuvj420p, 200x200 [SAR 96:96 DAR 1:1], 90k tbr, 90k tbn, 90k tbc Metadata: title : TV Thumbnail comment : Movie/video screen capture Stream #0:1: Audio: mp2, 48000 Hz, stereo, s16p, 256 kb/s Stream #0:2: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], 12000 kb/s, 25.58 fps, 25 tbr, 1k tbn, 50 tbc Output #0, avi, to 'out.avi': Metadata: DVR Index Granularity: 500 WM/SubTitle : Ch 9, 6:00 PM WM/SubTitleDescription: Nine Digital 6:00 PM WM/OriginalReleaseTime: 0001-01-01T00:00:00Z service_provider: Nine Digital service_name : Nine Digital WM/MediaOriginalChannel: 9 WM/MediaOriginalBroadcastDateTime: 0001-01-01T00:00:00Z WM/WMRVServiceID: 191625:4114:1056:1057 WM/WMRVProgramID: None WM/MediaOriginalRunTime: 8201308 WM/WMRVEncodeTime: 1844674 WM/MediaIsStereo: 0 WM/VideoClosedCaptioning: 0 WM/MediaIsRepeat: 0 WM/MediaIsLive : 0 WM/MediaIsTape : 0 WM/MediaIsDelay : 0 WM/MediaIsSubtitled: 0 WM/MediaIsMovie : 0 WM/MediaIsPremiere: 0 WM/MediaIsFinale: 0 WM/MediaIsSAP : 0 WM/WMRVRequestID: 645 WM/WMRVScheduleItemID: 656 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 0 WM/WMRVOriginalSoftPostPadding: 0 WM/WMRVActualSoftPrePadding: 0 WM/WMRVHardPrePadding: 0 WM/WMRVEndTime : 2579709 WM/WMRVExpirationDate: 1844674 WM/WMRVBitrate : 0 WM/WMRVKeepUntil: 184 WM/WMRVHardPostPadding: 0 WM/WMRVActualSoftPostPadding: 0 WM/WMRVContentProtectedPercent: 0 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : 0 WM/WMRVATSCContent: 0 WM/WMRVDTVContent: 1 WM/WMRVHDContent: 0 WM/WMRVContentProtected: 0 WM/MediaThumbTimeStamp: 1844674 WM/MediaThumbWidth: 360 WM/MediaThumbHeight: 288 WM/MediaThumbStride: 108 WM/MediaThumbRet: 0 WM/MediaThumbType: 3 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 16 WM/MediaThumbAspectRatioY: 9 WMFSDKVersion : 11.0.6001.7000 WMFSDKNeeded : 0.0.0.0000 VBR Peak : 159 IsVBR : 1 INAM : Manual Recording ISFT : Lavf54.50.102 Stream #0:0: Video: mpeg2video (DVR / 0x20525644), yuv420p, 704x480 [SAR 64:45 DAR 1408:675], q=2-31, 12000 kb/s, 25.58 fps, 100 tbn, 100 tbc Stream mapping: Stream #0:2 -> #0:0 (copy) Press [q] to stop, [?] for help [avi @ 0x909ff60] st:0 PTS: 37 DTS: 37 < 46 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 41 DTS: 41 < 47 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 49 DTS: 49 < 58 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 53 DTS: 53 < 59 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 61 DTS: 61 < 70 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 65 DTS: 65 < 71 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 73 DTS: 73 < 82 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 77 DTS: 77 < 83 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 85 DTS: 85 < 94 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 89 DTS: 89 < 95 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 97 DTS: 97 < 106 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 101 DTS: 101 < 107 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 109 DTS: 109 < 118 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 113 DTS: 113 < 119 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 121 DTS: 121 < 130 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 125 DTS: 125 < 131 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 133 DTS: 133 < 142 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 137 DTS: 137 < 143 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 145 DTS: 145 < 154 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 149 DTS: 149 < 155 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 157 DTS: 157 < 166 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 161 DTS: 161 < 167 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 169 DTS: 169 < 178 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 173 DTS: 173 < 179 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 181 DTS: 181 < 190 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 185 DTS: 185 < 191 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 193 DTS: 193 < 202 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 197 DTS: 197 < 203 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 205 DTS: 205 < 214 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 209 DTS: 209 < 215 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 217 DTS: 217 < 226 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 221 DTS: 221 < 227 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 229 DTS: 229 < 238 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 233 DTS: 233 < 239 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 241 DTS: 241 < 250 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 245 DTS: 245 < 251 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 253 DTS: 253 < 262 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 257 DTS: 257 < 263 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 265 DTS: 265 < 274 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 269 DTS: 269 < 275 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 277 DTS: 277 < 286 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 281 DTS: 281 < 287 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 289 DTS: 289 < 298 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 293 DTS: 293 < 299 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 301 DTS: 301 < 310 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 305 DTS: 305 < 311 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 313 DTS: 313 < 322 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 317 DTS: 317 < 323 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 325 DTS: 325 < 334 invalid, clipping [avi @ 0x909ff60] st:0 PTS: 329 DTS: 329 < 335 invalid, clipping frame= 79 fps=0.0 q=-1.0 Lsize= 1785kB time=00:00:03.46 bitrate=4226.4kbits/s video:1770kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.829445% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:41:30 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:41:30 -0000 Subject: [FFmpeg-trac] #2067(avfilter:new): -vf subtitles=??? libass seeking problem Message-ID: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> #2067: -vf subtitles=??? libass seeking problem -----------------------------------+--------------------------------------- Reporter: nikov | Type: defect Status: new | Priority: critical Component: avfilter | Version: unspecified Keywords: subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+--------------------------------------- Summary of the bug: When I try to burn subtitles in the video, everything is fine, except when I try seeking. The subtitles are added again from the first second, not from 30 minute. I think that when I seek the movie, the subtitles must be seeked too. How to reproduce: {{{ C:\ffmpeg>ffmpeg -ss 00:30:00 -i f.avi -vf subtitles=f.srt -c:a vorbis -strict -2 -c:v libx264 -preset ultrafast fout.mp4 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:43:21 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:43:21 -0000 Subject: [FFmpeg-trac] #2067(avfilter:new): -vf subtitles=??? libass seeking problem In-Reply-To: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> References: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> Message-ID: <049.a2cdb6286c8b958c499abd1ee63e8aca@avcodec.org> #2067: -vf subtitles=??? libass seeking problem -------------------------------------+------------------------------------ Reporter: nikov | Owner: Type: defect | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * priority: critical => normal Comment: Please provide complete, uncut console output together with your command line. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:48:20 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:48:20 -0000 Subject: [FFmpeg-trac] #2067(avfilter:new): -vf subtitles=??? libass seeking problem In-Reply-To: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> References: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> Message-ID: <049.24f82a4247e80524f909aaff208bc37f@avcodec.org> #2067: -vf subtitles=??? libass seeking problem -------------------------------------+------------------------------------ Reporter: nikov | Owner: Type: defect | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ubitux): You need to do that in two steps currently. libavfilter has no visibility on your seek. {{{ ffmpeg -ss 30 -i f.srt f2.srt ffmpeg ... -vf subtitles=f2.srt ... }}} Alternatively, we could add a seek parameter to the filter. The best solution is obviously to support proper subtitles filtering, but this is another long standing issue, not easy to deal with, and which require large changes. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 19:50:53 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 18:50:53 -0000 Subject: [FFmpeg-trac] #2067(avfilter:new): -vf subtitles=??? libass seeking problem In-Reply-To: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> References: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> Message-ID: <049.d64a0604a4e4bd906040ccd3a5268149@avcodec.org> #2067: -vf subtitles=??? libass seeking problem -------------------------------------+------------------------------------ Reporter: nikov | Owner: Type: defect | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by Cigaes): I do not think this is absolutely necessary here: if you know how subtitles and seeking work, reading the title of the ticket is enough to guess what and why, the only problem in reproducing it is finding files layound around on one's hard drive. The hard part is to devise a clean way of fixing the problem. Other temporary workarounds: {{{-ss}}} as output option (slower before the start of encoding), or {{{-copyts}}} to keep the timestamps (but it will require {{{setpts}}} to reset the timestamps afterwards, or it will show in the output file). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 20:34:31 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 19:34:31 -0000 Subject: [FFmpeg-trac] #2064(undetermined:new): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.bae44ab97bcb8701234cd61f3d916936@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: unspecified | undetermined Keywords: adpcm_ms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DJX): Yes. The files are inside an archive system, which when read through, make up the file system for the game. You can extract the files with 7-Zip and obtain many more samples. This is most likely an obfuscation attempt. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 20:38:42 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 19:38:42 -0000 Subject: [FFmpeg-trac] #2067(avfilter:new): -vf subtitles=??? libass seeking problem In-Reply-To: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> References: <034.ef4ad1de1cf14bc681e60050c6961fb4@avcodec.org> Message-ID: <049.268d5bb0767fdd54644da0a24869477a@avcodec.org> #2067: -vf subtitles=??? libass seeking problem -------------------------------------+------------------------------------ Reporter: nikov | Owner: Type: defect | Status: new Priority: normal | Component: avfilter Version: unspecified | Resolution: Keywords: subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by nikov): Also another problem is if you put full path to the subtitles on windows example -vf subtitles=C:\\ffmpeg\\f2.srt It tries to find \ffmpeg\f2.srt -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 20:40:45 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 19:40:45 -0000 Subject: [FFmpeg-trac] #2064(avformat:open): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.e235ebc9544e05b3a6a11586f556f861@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: adpcm_ms | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * version: unspecified => git-master * component: undetermined => avformat * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 26 21:09:30 2012 From: trac at avcodec.org (FFmpeg) Date: Wed, 26 Dec 2012 20:09:30 -0000 Subject: [FFmpeg-trac] #2003(avcodec:closed): jpeg: support restart interval in rows for progressive In-Reply-To: <038.6ce1c3cd51833d52c83c7a6022b1cefe@avcodec.org> References: <038.6ce1c3cd51833d52c83c7a6022b1cefe@avcodec.org> Message-ID: <053.d7c7b0ac5acfd5c7335dca9c45b608e8@avcodec.org> #2003: jpeg: support restart interval in rows for progressive ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Michael. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 01:53:30 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 00:53:30 -0000 Subject: [FFmpeg-trac] #2068(undetermined:new): mjpeg: tweak rstn handling for progressive mode Message-ID: <038.dd5cc18011c487c069c9da63cc6ee675@avcodec.org> #2068: mjpeg: tweak rstn handling for progressive mode -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- There seems to be still some problems with rstn handling, I have uploaded some more samples: http://www.datafilehost.com/download-9735e969.html {{{ C:\>ffmpeg -i rstn5.jpg out.bmp ffmpeg version N-48228-gceee440 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 27 2012 02:22:24 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=5 x=0 [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=9 x=126 [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=5 x=0 Input #0, image2, from 'rstn5.jpg': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj444p, 1024x768 [SAR 96:96 DAR 4:3], 25 tbr, 2 5 tbn, 25 tbc Output #0, image2, to 'out.bmp': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: bmp, bgr24, 1024x768 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s , 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> bmp) Press [q] to stop, [?] for help [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=5 x=0 [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=9 x=126 [mjpeg @ 0x1eff5e0] error count: 268435456 [mjpeg @ 0x1eff5e0] error y=5 x=0 frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:2304kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000 % }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 07:53:45 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 06:53:45 -0000 Subject: [FFmpeg-trac] #2065(avformat:open): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.cb8d02f090c221b816017026a07beef5@avcodec.org> #2065: ADPCM_MS audio duration is incorrect ------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by jamal): This is not a bug. The file has a broken header. The "data" portion reports a size of 0xFFFFFF (This is at offset 0x74 of the file), which is being used to calculate the duration of the stream and thus getting such result. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 08:17:48 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 07:17:48 -0000 Subject: [FFmpeg-trac] #2069(FFmpeg:new): Incorrect overall bitrate Message-ID: <041.7c8ac3a68c6fd481a1e02c009a1cb953@avcodec.org> #2069: Incorrect overall bitrate -------------------------------------+------------------------------------- Reporter: VIKASH | Type: defect KUMAR | Priority: important Status: new | Version: Component: FFmpeg | Blocked By: Keywords: | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: whenever a video is converted by ffmpeg it will set incorrect overall bitrate. actually overall bitrate = video bitrate + audio bitrate but in case of ffmpeg overall bitrate = audio bitrate. How to reproduce: {{{ E:\ctemp\ffe\ffmpeg.exe -i "F:\Movies\Matrix1\Matrix1.wmv" -vcodec copy -acodec copy -y "F:\Movies\Matrix1\Matrix1 [copy][copy].wmv" ffmpeg version: FFmpeg git-26c531c 32-bit Static (Latest) (2012-11-25) built on ... Windows }}} Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 10:54:02 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 09:54:02 -0000 Subject: [FFmpeg-trac] #2069(avformat:new): Incorrect overall bitrate In-Reply-To: <041.7c8ac3a68c6fd481a1e02c009a1cb953@avcodec.org> References: <041.7c8ac3a68c6fd481a1e02c009a1cb953@avcodec.org> Message-ID: <056.9ae2b468f1d0fb24eec1c1a29dd723d2@avcodec.org> #2069: Incorrect overall bitrate --------------------------------------+------------------------------------ Reporter: VIKASH KUMAR | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Changes (by cehoyos): * priority: important => normal * version: => unspecified * component: FFmpeg => avformat Comment: To make this a valid ticket, please add the complete, uncut console output of your command line. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 14:28:47 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 13:28:47 -0000 Subject: [FFmpeg-trac] #2065(avformat:open): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.033f6864faa7983acb9c71d6499014ec@avcodec.org> #2065: ADPCM_MS audio duration is incorrect ------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: regression | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by DJX): The file plays fine in Winamp. In Winamp, duration is calculated correctly for many more samples of this same kind. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 17:34:43 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 16:34:43 -0000 Subject: [FFmpeg-trac] #2070(undetermined:new): Handling Multichannel BINK Message-ID: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> #2070: Handling Multichannel BINK -------------------------------------+------------------------------------- Reporter: DJX | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I have a BINK video that has three audio streams. I believe this is because it is used in a surround sound environment. I would like to purpose a change to the way FFmpeg handles these types of files. In this case, they should all be mixed together to produce the correct audio output. Currently, on a two channel system, it is missing a lot of the audio. Additionally, as a work around, I tried the "amerge" filter but it does not allow for this type of conversion because the file has more then two audio streams. FFmpeg & FFplay should be considered here. How to reproduce: {{{ ffmpeg -i "flashpoint_load.bik" ffmpeg version N-48228-gceee440 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 27 2012 02:02:43 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab le-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libg sm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore- amrwb --e nable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinger --e nable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo- amrwben c --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable- libxvid --enable-zlib libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, bink, from 'flashpoint_load.bik': Duration: 00:00:43.77, start: 0.000000, bitrate: 6393 kb/s Stream #0:0: Video: binkvideo (BIKi / 0x694B4942), yuv420p, 1280x720, 30 tbr , 30 tbn, 30 tbc Stream #0:1: Audio: binkaudio_dct, 48000 Hz, stereo, fltp Stream #0:2: Audio: binkaudio_dct, 48000 Hz, mono, fltp Stream #0:3: Audio: binkaudio_dct, 48000 Hz, stereo, fltp At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 17:35:11 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 16:35:11 -0000 Subject: [FFmpeg-trac] #2070(undetermined:new): Handling Multichannel BINK In-Reply-To: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> References: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> Message-ID: <047.94138e1c6194242e3103cb2dc5a32c1d@avcodec.org> #2070: Handling Multichannel BINK -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DJX): File: http://www.djxmmx.net/temp/FFmpeg-BINK/flashpoint_load.bik -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 17:47:17 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 16:47:17 -0000 Subject: [FFmpeg-trac] #2068(avcodec:closed): mjpeg: tweak rstn handling for progressive mode In-Reply-To: <038.dd5cc18011c487c069c9da63cc6ee675@avcodec.org> References: <038.dd5cc18011c487c069c9da63cc6ee675@avcodec.org> Message-ID: <053.90976f704002c1a038d46002c92e02b6@avcodec.org> #2068: mjpeg: tweak rstn handling for progressive mode -------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: unspecified | Resolution: fixed Keywords: jpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by michael): * keywords: => jpeg * resolution: => fixed * status: new => closed * component: undetermined => avcodec * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 20:04:59 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 19:04:59 -0000 Subject: [FFmpeg-trac] #2071(undetermined:new): Ass filter wont use selected fonts Message-ID: <033.4b554fcc78317761351c242240b4be81@avcodec.org> #2071: Ass filter wont use selected fonts -------------------------------------+------------------------------------- Reporter: ivrx | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Hello! I'm trying to burn custom ass files to the video, file that includes the subtitles and other styling features. While encoding i'm receiving warnings as such: fontconfig: Selected font is not the requested one: 'DejaVu Sans Bold' != '.Aharoni' The end result is a video with subtitles and everything but with wrong fonts. looks more like system's default fonts. I'm using Ubuntu 12.04, Compiled FFmpeg with GIT using this guide: https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide All the fonts are installed on my system. The command: ivrx at ns4006550:/home/ivrx/encoding/sp2$ ffmpeg -ss 00:00:00 -i sp2.mp4 -t 00:01:00 -c:v libx264 -c:a copy -preset slow -tune film -profile:v high -crf 18 -vf 'ass=1.ass' output7.mp4 Output logs: http://lawl.it/ffmpeglog.txt http://lawl.it/ffmpeglog99.txt -- beware! used "-v 9 -loglevel 99" on this log! What can i do to make ffmpeg select the fonts that specified in ass files? ffmpeg version git-2012-12-25-1be8d0f Thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 20:24:47 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 19:24:47 -0000 Subject: [FFmpeg-trac] #2072(undetermined:new): mjpeg: progressive with quality<24 fails to decode Message-ID: <038.3ffdb31c8c934d72f1afdf71db99bf2a@avcodec.org> #2072: mjpeg: progressive with quality<24 fails to decode -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- created with: {{{ cjpeg -targa -quality 23 -progressive test.tga >1.jpg }}} {{{ C:\>ffmpeg -i 1.jpg out.bmp ffmpeg version N-48228-gceee440 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 27 2012 02:22:24 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mjpeg @ 0x1eff600] dqt: 16bit precision [mjpeg @ 0x1eff600] error count: 268435456 [mjpeg @ 0x1eff600] error y=31 x=23 Input #0, image2, from '1.jpg': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj420p, 1024x768 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.bmp': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: bmp, bgr24, 1024x768 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s , 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> bmp) Press [q] to stop, [?] for help [mjpeg @ 0x1eff600] dqt: 16bit precision [mjpeg @ 0x1eff600] error count: 268435456 [mjpeg @ 0x1eff600] error y=31 x=23 frame= 1 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.04 bitrate= 0.0kbits/ s video:2304kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.000000 % }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 20:25:45 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 19:25:45 -0000 Subject: [FFmpeg-trac] #1145(avcodec:closed): jpeg: problem with MCU-rows and progressive mode In-Reply-To: <038.4cb9488d4063c6726381922803292ce9@avcodec.org> References: <038.4cb9488d4063c6726381922803292ce9@avcodec.org> Message-ID: <053.bf9bf58a9884063033db4a1de580416a@avcodec.org> #1145: jpeg: problem with MCU-rows and progressive mode ------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: duplicate Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------- Changes (by ami_stuff): * status: open => closed * resolution: => duplicate Comment: Duplicate of ticket #2003 / #2068. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 20:43:01 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 19:43:01 -0000 Subject: [FFmpeg-trac] #2073(FFmpeg:new): m4v with h264 container problem, but with mp4 is working fine Message-ID: <034.b0f468399a758f59c834f763c1d941dc@avcodec.org> #2073: m4v with h264 container problem, but with mp4 is working fine -------------------------------------+------------------------------------- Reporter: nikov | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: git- Keywords: m4v problem | master Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: Hello, I need to use m4v container. When I try to convert video with h264 encoding and mp4 container it is fine. The converted video is playing, but when I try to switch to m4v the output file is unplayable. I tried to play the video by using VLC and QuickTime. ffmpeg.exe -i pb.avi -an -vcodec libx264 -preset fast -profile:v baseline -f mp4 pbtest.mp4 ffmpeg.exe -i pb.avi -an -vcodec libx264 -preset fast -profile:v baseline -f m4v pbtest.m4v How to reproduce: {{{ C:\ffmpeg>ffmpeg.exe -i pb.avi -an -vcodec libx264 -preset fast -profile:v baseline -f mp4 pbtest.mp4 ffmpeg version N-48218-ga2349dc Copyright (c) 2000-2012 the FFmpeg developers built on Dec 26 2012 16:59:00 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86_64 --target-os=mingw32 --cross-prefi x=/ffmpeg_build/build/mgw/mingw-w64-x86_64/bin/x86_64-w64-mingw32- --pkg- config= pkg-config --enable-gpl --disable-ffplay --disable-ffprobe --enable- libx264 --en able-avisynth --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable -libspeex --enable-libfreetype --enable-fontconfig --enable-libass --disable-w32 threads --enable-filter=subtitles --extra-cflags=-DPTW32_STATIC_LIB --enable-lib vpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg4 @ 00000000035413e0] Invalid and inefficient vfw-avi packed B frames detec ted Input #0, avi, from 'pb.avi': Metadata: encoder : VirtualDubMod 1.5.10.2 (build 2540/release) Duration: 00:39:45.53, start: 0.000000, bitrate: 1225 kb/s Stream #0:0: Video: mpeg4 (Advanced Simple Profile) (XVID / 0x44495658), yuv 420p, 640x352 [SAR 1:1 DAR 20:11], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 32 kb /s File 'pbtest.mp4' already exists. Overwrite ? [y/N] y using SAR=1/1 [libx264 @ 000000000037e480] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShu ffle SSE4.2 AVX [libx264 @ 000000000037e480] profile Constrained Baseline, level 3.0 [libx264 @ 000000000037e480] 264 - core 129 r2230 1cffe9f - H.264/MPEG-4 AVC cod ec - Copyleft 2003-2012 - http://www.videolan.org/x264.html - options: cabac=0 r ef=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed _ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pski p=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 dec imate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 key int=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=30 rc=crf mbtree= 1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to 'pbtest.mp4': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 640x352 [SAR 1:1 DAR 20:11], q=-1--1, 12800 tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mpeg4 -> libx264) Press [q] to stop, [?] for help [mpeg4 @ 00000000078ac6e0] Invalid and inefficient vfw-avi packed B frames detec ted frame= 159 fps=0.0 q=28.0 size= 233kB time=00:00:04.64 bitrate= 411.6kbits/ frame= 320 fps=311 q=28.0 size= 573kB time=00:00:11.08 bitrate= 423.8kbits/ frame= 463 fps=300 q=28.0 size= 942kB time=00:00:16.80 bitrate= 459.3kbits/ frame= 605 fps=294 q=28.0 size= 1319kB time=00:00:22.48 bitrate= 480.5kbits/ frame= 767 fps=298 q=28.0 size= 1703kB time=00:00:28.96 bitrate= 481.6kbits/ frame= 778 fps=283 q=511.0 Lsize= 1816kB time=00:00:31.12 bitrate= 478.0kbit s/s dup=1 drop=0 video:1812kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.214753% [libx264 @ 000000000037e480] frame I:36 Avg QP:19.30 size: 11453 [libx264 @ 000000000037e480] frame P:742 Avg QP:22.46 size: 1944 [libx264 @ 000000000037e480] mb I I16..4: 51.1% 0.0% 48.9% [libx264 @ 000000000037e480] mb P I16..4: 4.5% 0.0% 1.9% P16..4: 32.5% 7.0 % 2.0% 0.0% 0.0% skip:52.1% [libx264 @ 000000000037e480] coded y,uvDC,uvAC intra: 35.7% 57.3% 13.5% inter: 7 .2% 14.4% 0.1% [libx264 @ 000000000037e480] i16 v,h,dc,p: 58% 19% 13% 11% [libx264 @ 000000000037e480] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 30% 22% 19% 5% 6% 5% 5% 5% 4% [libx264 @ 000000000037e480] i8c dc,h,v,p: 52% 20% 25% 4% [libx264 @ 000000000037e480] ref P L0: 75.2% 24.8% [libx264 @ 000000000037e480] kb/s:476.85 Received signal 2: terminating. C:\ffmpeg> C:\ffmpeg> C:\ffmpeg> C:\ffmpeg> C:\ffmpeg> C:\ffmpeg>ffmpeg.exe -i pb.avi -an -vcodec libx264 -preset fast -profile:v baseline -f m4v pbtest.m4v ffmpeg version N-48218-ga2349dc Copyright (c) 2000-2012 the FFmpeg developers built on Dec 26 2012 16:59:00 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86_64 --target-os=mingw32 --cross-prefi x=/ffmpeg_build/build/mgw/mingw-w64-x86_64/bin/x86_64-w64-mingw32- --pkg- config= pkg-config --enable-gpl --disable-ffplay --disable-ffprobe --enable- libx264 --en able-avisynth --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable -libspeex --enable-libfreetype --enable-fontconfig --enable-libass --disable-w32 threads --enable-filter=subtitles --extra-cflags=-DPTW32_STATIC_LIB --enable-lib vpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg4 @ 00000000035a13e0] Invalid and inefficient vfw-avi packed B frames detec ted Input #0, avi, from 'pb.avi': Metadata: encoder : VirtualDubMod 1.5.10.2 (build 2540/release) Duration: 00:39:45.53, start: 0.000000, bitrate: 1225 kb/s Stream #0:0: Video: mpeg4 (Advanced Simple Profile) (XVID / 0x44495658), yuv 420p, 640x352 [SAR 1:1 DAR 20:11], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 32 kb /s File 'pbtest.m4v' already exists. Overwrite ? [y/N] y using SAR=1/1 [libx264 @ 0000000001b9e3c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShu ffle SSE4.2 AVX [libx264 @ 0000000001b9e3c0] profile Constrained Baseline, level 3.0 Output #0, m4v, to 'pbtest.m4v': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: h264, yuv420p, 640x352 [SAR 1:1 DAR 20:11], q=-1-- 1, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mpeg4 -> libx264) Press [q] to stop, [?] for help [mpeg4 @ 0000000007967c00] Invalid and inefficient vfw-avi packed B frames detec ted frame= 187 fps=0.0 q=28.0 size= 268kB time=00:00:05.76 bitrate= 381.4kbits/ frame= 333 fps=323 q=28.0 size= 616kB time=00:00:11.60 bitrate= 435.2kbits/ frame= 473 fps=306 q=28.0 size= 964kB time=00:00:17.20 bitrate= 459.1kbits/ frame= 617 fps=300 q=28.0 size= 1354kB time=00:00:22.96 bitrate= 483.2kbits/ frame= 772 fps=300 q=28.0 size= 1710kB time=00:00:29.16 bitrate= 480.3kbits/ frame= 903 fps=292 q=28.0 size= 2051kB time=00:00:34.40 bitrate= 488.4kbits/ frame= 979 fps=283 q=3599.0 Lsize= 2346kB time=00:00:39.16 bitrate= 490.7kbi ts/s dup=1 drop=0 video:2346kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.000000% [libx264 @ 0000000001b9e3c0] frame I:48 Avg QP:19.67 size: 10922 [libx264 @ 0000000001b9e3c0] frame P:931 Avg QP:22.76 size: 2017 [libx264 @ 0000000001b9e3c0] mb I I16..4: 52.7% 0.0% 47.3% [libx264 @ 0000000001b9e3c0] mb P I16..4: 4.6% 0.0% 2.2% P16..4: 33.3% 7.4 % 2.1% 0.0% 0.0% skip:50.4% [libx264 @ 0000000001b9e3c0] coded y,uvDC,uvAC intra: 37.1% 57.0% 12.9% inter: 7 .5% 14.3% 0.1% [libx264 @ 0000000001b9e3c0] i16 v,h,dc,p: 58% 18% 13% 11% [libx264 @ 0000000001b9e3c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 32% 20% 19% 5% 5% 5% 5% 5% 4% [libx264 @ 0000000001b9e3c0] i8c dc,h,v,p: 51% 19% 27% 4% [libx264 @ 0000000001b9e3c0] ref P L0: 75.1% 24.9% [libx264 @ 0000000001b9e3c0] kb/s:490.69 Received signal 2: terminating. C:\ffmpeg> }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 22:00:12 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 21:00:12 -0000 Subject: [FFmpeg-trac] #2073(undetermined:new): m4v with h264 container problem, but with mp4 is working fine In-Reply-To: <034.b0f468399a758f59c834f763c1d941dc@avcodec.org> References: <034.b0f468399a758f59c834f763c1d941dc@avcodec.org> Message-ID: <049.59da84d1b6b290a8f23bd4642a05143b@avcodec.org> #2073: m4v with h264 container problem, but with mp4 is working fine -------------------------------------+------------------------------------- Reporter: nikov | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: m4v problem => mov * component: FFmpeg => undetermined Comment: Is the problem only reproducible with an external library (x264) or also with -vcodec mpeg4 ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 22:01:14 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 21:01:14 -0000 Subject: [FFmpeg-trac] #2072(avcodec:open): mjpeg: progressive with quality<24 fails to decode In-Reply-To: <038.3ffdb31c8c934d72f1afdf71db99bf2a@avcodec.org> References: <038.3ffdb31c8c934d72f1afdf71db99bf2a@avcodec.org> Message-ID: <053.9829b633ad278275eedc5b8cb20b50bc@avcodec.org> #2072: mjpeg: progressive with quality<24 fails to decode ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => mjpeg * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 22:03:39 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 21:03:39 -0000 Subject: [FFmpeg-trac] #2071(undetermined:new): Ass filter wont use selected fonts In-Reply-To: <033.4b554fcc78317761351c242240b4be81@avcodec.org> References: <033.4b554fcc78317761351c242240b4be81@avcodec.org> Message-ID: <048.2fdbf383ce2617325ce8e4ed83cec46e@avcodec.org> #2071: Ass filter wont use selected fonts -------------------------------------+------------------------------------- Reporter: ivrx | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libass | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => libass Comment: Isn't this a problem with your fontconfig installation? Please do not use external resources to describe your problem (they may disappear), paste the console output into the ticket, you can attach longer output if it is useful. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 22:57:42 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 21:57:42 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts (was: FFMPEG sometimes not able to stream copy WTV files, error with pts < dts) In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.3dcda9cf31cdfbce4d2e8006f82f0320@avcodec.org> #2058: FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame mpegts | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: av_interleaved_write_frame wtv mpeg2video => av_interleaved_write_frame mpegts mpeg2video * reproduced: 0 => 1 Comment: The file you originally uploaded does not work here: {{{ $ ls -l SirDave\ US\ The\ Firm_WNBCDT_2012_02_18_21_34_17.wtv -rw-r--r-- 1 cehoyos users 3104090772 Dec 23 21:23 SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv $ md5sum SirDave\ US\ The\ Firm_WNBCDT_2012_02_18_21_34_17.wtv 09b8b98c24a739c04078ba21b956aaed SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv $ ffmpeg -i SirDave\ US\ The\ Firm_WNBCDT_2012_02_18_21_34_17.wtv ffmpeg version N-48238-g10a3fa8 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 27 2012 21:51:00 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [wtv @ 0x2fc0500] unknown guid 704488df063b82cc213dc80000000000, expected dir_entry_guid; remaining directory entries ignored [wtv @ 0x2fc0500] timeline data missing SirDave US The Firm_WNBCDT_2012_02_18_21_34_17.wtv: Invalid data found when processing input }}} I suggest we concentrate on the transport stream sample until you find a shorter wtv sample to reproduce. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 22:58:18 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 21:58:18 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.d02cf38e86f9ddaf29ffba1ac08b6259@avcodec.org> #2058: FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame mpegts | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): {{{ $ ffmpeg -i csi.ts -an -vcodec copy -f null - ffmpeg version N-48238-g10a3fa8 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 27 2012 21:51:00 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpegts, from 'csi.ts': Duration: 00:00:01.44, start: 1.269000, bitrate: 7733 kb/s Program 1 Metadata: service_name : Service01 service_provider: FFmpeg Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 59.94 fps, 59.92 tbr, 90k tbn, 119.88 tbc Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s Output #0, null, to 'pipe:': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: mpeg2video ([2][0][0][0] / 0x0002), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 59.94 fps, 90k tbn, 59.94 tbc Stream mapping: Stream #0:0 -> #0:0 (copy) Press [q] to stop, [?] for help [null @ 0x200d800] st:0 PTS: 0 DTS: -4500 < -4499 invalid, clipping [null @ 0x200d800] pts (-1530) < dts (0) in stream 0 [null @ 0x200d800] pts (3060) < dts (4500) in stream 0 [null @ 0x200d800] pts (7560) < dts (9000) in stream 0 [null @ 0x200d800] pts (12060) < dts (13500) in stream 0 [null @ 0x200d800] pts (16560) < dts (18000) in stream 0 [null @ 0x200d800] pts (21060) < dts (22500) in stream 0 [null @ 0x200d800] pts (25560) < dts (27000) in stream 0 [null @ 0x200d800] pts (30060) < dts (31500) in stream 0 [null @ 0x200d800] pts (34560) < dts (36090) in stream 0 [null @ 0x200d800] pts (39060) < dts (40590) in stream 0 [null @ 0x200d800] pts (43560) < dts (45090) in stream 0 [null @ 0x200d800] pts (48060) < dts (49590) in stream 0 [null @ 0x200d800] pts (52560) < dts (54090) in stream 0 [null @ 0x200d800] pts (57060) < dts (58590) in stream 0 [null @ 0x200d800] pts (61560) < dts (63090) in stream 0 [null @ 0x200d800] pts (66060) < dts (67590) in stream 0 [null @ 0x200d800] pts (70560) < dts (72090) in stream 0 [null @ 0x200d800] pts (75060) < dts (76590) in stream 0 [null @ 0x200d800] pts (79560) < dts (81090) in stream 0 frame= 60 fps=0.0 q=-1.0 Lsize=N/A time=00:00:00.93 bitrate=N/A video:1213kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.001771% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 23:01:46 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 22:01:46 -0000 Subject: [FFmpeg-trac] #2068(avcodec:closed): mjpeg: tweak rstn handling for progressive mode In-Reply-To: <038.dd5cc18011c487c069c9da63cc6ee675@avcodec.org> References: <038.dd5cc18011c487c069c9da63cc6ee675@avcodec.org> Message-ID: <053.f9b0998655956722ec95de13f0eb7d11@avcodec.org> #2068: mjpeg: tweak rstn handling for progressive mode ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: jpeg => mjpeg * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 23:16:47 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 22:16:47 -0000 Subject: [FFmpeg-trac] #2072(avcodec:closed): mjpeg: progressive with quality<24 fails to decode In-Reply-To: <038.3ffdb31c8c934d72f1afdf71db99bf2a@avcodec.org> References: <038.3ffdb31c8c934d72f1afdf71db99bf2a@avcodec.org> Message-ID: <053.48ae38b989d155ae8eb3ea5b0155c702@avcodec.org> #2072: mjpeg: progressive with quality<24 fails to decode ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 27 23:45:56 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 22:45:56 -0000 Subject: [FFmpeg-trac] #2064(avformat:open): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.8958c6833da971bb0ab816e94737a444@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: adpcm_ms | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Could you compare the first 64 bytes of a few samples (or provide them)? At least the sample-rate is stored in a short header afaict, it may be possible to autodetect the format. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 00:02:35 2012 From: trac at avcodec.org (FFmpeg) Date: Thu, 27 Dec 2012 23:02:35 -0000 Subject: [FFmpeg-trac] #2064(avformat:open): Missing ADPCM_MS header In-Reply-To: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> References: <032.9a28829e0bbeeddc4404c74c458f2afa@avcodec.org> Message-ID: <047.631d11dce9fd3c9ba55b10509564daea@avcodec.org> #2064: Missing ADPCM_MS header -------------------------------------+------------------------------------ Reporter: DJX | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: adpcm_ms | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by DJX): I will leave it to better men to investigate properly. For more samples, please feel free to browse the directory of: http://www.djxmmx.net/temp/FFmpeg-ADPCM_MS/ All original/unmodified samples from the game. The only file in which I manually added a header is: http://www.djxmmx.net/temp/FFmpeg-ADPCM_MS/radio-header.wav I can add more samples to that directory if you need. Just let me know. Thank you -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 01:19:16 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 00:19:16 -0000 Subject: [FFmpeg-trac] #2070(undetermined:new): Handling Multichannel BINK In-Reply-To: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> References: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> Message-ID: <047.dd257f741abea8354e93d65c99b0da3c@avcodec.org> #2070: Handling Multichannel BINK -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I may misunderstand your issue but the following works as expected here: $ ffmpeg -i flashpoint_load.bik -filter_complex amerge=inputs=3 out.wav -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 03:04:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 02:04:41 -0000 Subject: [FFmpeg-trac] #2057(postproc:closed): Invalid read in dering subfilter MMX2 code In-Reply-To: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> References: <035.16fcb572b4a9313925d006d44b0364f2@avcodec.org> Message-ID: <050.96601e7a3bdcaf655b14bf74a0a3d193@avcodec.org> #2057: Invalid read in dering subfilter MMX2 code ------------------------------------+------------------------------------ Reporter: ubitux | Owner: michael Type: defect | Status: closed Priority: normal | Component: postproc Version: git-master | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 03:07:19 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 02:07:19 -0000 Subject: [FFmpeg-trac] #2058(undetermined:open): FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts In-Reply-To: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> References: <040.5884b976b3058deb2c544db198afa62c@avcodec.org> Message-ID: <055.47e9af172710496089e7cd0af8b5e681@avcodec.org> #2058: FFMPEG sometimes not able to stream copy mpeg2video files, error with pts < dts -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: av_interleaved_write_frame mpegts | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ramitbhalla): Please delete the file, I'll try upload it again with a another ftp client and see if it works. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 05:24:22 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 04:24:22 -0000 Subject: [FFmpeg-trac] #2074(undetermined:new): decoded frame picture type does not match packet flags Message-ID: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> #2074: decoded frame picture type does not match packet flags -------------------------------------+------------------------------------- Reporter: mrhines | Type: defect Status: new | Priority: normal Component: | Version: 1.0.1 undetermined | Blocked By: Keywords: key frame, | Reproduced by developer: 0 decode, mpeg2 | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I'm routine decoding an MPEG2 video, like this: avcodec_decode_video2(codecCtx, frame, &got_frame, &packet) .. and upon encountering a key frame, I perform a sanity check, like this: if(got_frame && (packet.flags & AV_PKT_FLAG_KEY)) printf("picture type: '%c'\n", av_get_picture_type_char(frame->pict_type)); .. which prints out: picture type 'P' Perhaps my layman's understanding of video is wrong, but doesn't "key frame" == 'I' frame? Is this output valid? Confirming with: ffprobe -show_frames sample.mpg Shows: [FRAME] ... snip ... key_frame=1 ... snip ... pict_type=I ... snip ... [/FRAME] Am I missing something? How to reproduce: {{{ % run avcodec_decode_video2() for a while until you hit a keyframe packet and then perform the sanity check ffmpeg version 1.0 (also confirmed on trunk with 'git checkout master' built on Ubuntu Linux 12.04 }}} Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 06:39:36 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 05:39:36 -0000 Subject: [FFmpeg-trac] #2074(undetermined:new): decoded frame picture type does not match packet flags In-Reply-To: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> References: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> Message-ID: <051.dfa019759be1b2e9e369a5e256afc86e@avcodec.org> #2074: decoded frame picture type does not match packet flags -------------------------------------+------------------------------------- Reporter: mrhines | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: key frame, | Resolution: decode, mpeg2 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by mrhines): * version: 1.0.1 => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 06:40:31 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 05:40:31 -0000 Subject: [FFmpeg-trac] #2074(avcodec:new): decoded frame picture type does not match packet flags In-Reply-To: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> References: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> Message-ID: <051.bd74f53337cb195e385b871a3c9e42fe@avcodec.org> #2074: decoded frame picture type does not match packet flags -------------------------------------+------------------------------------- Reporter: mrhines | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: key frame, | Blocked By: decode, mpeg2 | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by mrhines): * component: undetermined => avcodec -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 07:25:53 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 06:25:53 -0000 Subject: [FFmpeg-trac] #2074(avcodec:new): decoded frame picture type does not match packet flags In-Reply-To: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> References: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> Message-ID: <051.e0327755b42214e796523b996c58b5d9@avcodec.org> #2074: decoded frame picture type does not match packet flags -------------------------------------+------------------------------------- Reporter: mrhines | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: key frame, | Blocked By: decode, mpeg2 | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by reimar): You do not explain sufficiently what "upon encountering a key frame" means, but I suspect your are missing the codec delay. The video frame you get out usually isn't based on the packet you just sent in at all. This is especially true with multithreaded decoding, but even without it's not generally possible due to how B-frames work. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 07:31:20 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 06:31:20 -0000 Subject: [FFmpeg-trac] #2075(undetermined:new): Wrong bitrate when transcoding to aac Message-ID: <035.f0ec07b64986023a02dd50769f02f97d@avcodec.org> #2075: Wrong bitrate when transcoding to aac -------------------------------------+------------------------------------- Reporter: ddnlkd | Type: defect Status: new | Priority: important Component: | Version: 1.0.1 undetermined | Blocked By: Keywords: aac bitrate | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: I want to transcode from a mp3 file to aac file, the command line is as following : ffmpeg -y -v 9 -loglevel 99 -i 10.mp3 -acodec libfaac -ac 2 -ab 32000 10.aac I Specified the bitrate as 32kbps, but the output file bitrate is 58.5kbits/s. Following is the output and attach is the oringal file: ffmpeg version 1.0.1 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 25 2012 11:55:44 with gcc 3.4.6 (GCC) 20060404 (Red Hat 3.4.6-10) configuration: --prefix=/usr --enable-gpl --enable-shared --enable- libfaac --enable-nonfree --disable-yasm libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 [mp3 @ 0x82f1500] Format mp3 probed with size=131072 and score=51 [mp3 @ 0x82f1500] pad 576 576 [mp3 @ 0x82f1500] File position before avformat_find_stream_info() is 107743 [mjpeg @ 0x82f9100] marker=d8 avail_size_in_buf=45910 [mjpeg @ 0x82f9100] marker parser used 0 bytes (0 bits) [mjpeg @ 0x82f9100] marker=e0 avail_size_in_buf=45908 [mjpeg @ 0x82f9100] marker parser used 16 bytes (128 bits) [mjpeg @ 0x82f9100] marker=fe avail_size_in_buf=45890 [mjpeg @ 0x82f9100] marker parser used 60 bytes (480 bits) [mjpeg @ 0x82f9100] marker=db avail_size_in_buf=45828 [mjpeg @ 0x82f9100] index=0 [mjpeg @ 0x82f9100] qscale[0]: 0 [mjpeg @ 0x82f9100] marker parser used 67 bytes (536 bits) [mjpeg @ 0x82f9100] marker=db avail_size_in_buf=45759 [mjpeg @ 0x82f9100] index=1 [mjpeg @ 0x82f9100] qscale[1]: 0 [mjpeg @ 0x82f9100] marker parser used 67 bytes (536 bits) [mjpeg @ 0x82f9100] marker=c0 avail_size_in_buf=45690 [mjpeg @ 0x82f9100] sof0: picture: 240x240 [mjpeg @ 0x82f9100] component 0 2:2 id: 0 quant:0 [mjpeg @ 0x82f9100] component 1 1:1 id: 1 quant:1 [mjpeg @ 0x82f9100] component 2 1:1 id: 2 quant:1 [mjpeg @ 0x82f9100] pix fmt id 22111100 [mjpeg @ 0x82f9100] marker parser used 17 bytes (136 bits) [mjpeg @ 0x82f9100] marker=c4 avail_size_in_buf=45671 [mjpeg @ 0x82f9100] class=0 index=0 nb_codes=12 [mjpeg @ 0x82f9100] marker parser used 31 bytes (248 bits) [mjpeg @ 0x82f9100] marker=c4 avail_size_in_buf=45638 [mjpeg @ 0x82f9100] class=1 index=0 nb_codes=251 [mjpeg @ 0x82f9100] marker parser used 181 bytes (1448 bits) [mjpeg @ 0x82f9100] marker=c4 avail_size_in_buf=45455 [mjpeg @ 0x82f9100] class=0 index=1 nb_codes=12 [mjpeg @ 0x82f9100] marker parser used 31 bytes (248 bits) [mjpeg @ 0x82f9100] marker=c4 avail_size_in_buf=45422 [mjpeg @ 0x82f9100] class=1 index=1 nb_codes=251 [mjpeg @ 0x82f9100] marker parser used 181 bytes (1448 bits) [mjpeg @ 0x82f9100] escaping removed 218 bytes [mjpeg @ 0x82f9100] marker=da avail_size_in_buf=45239 [mjpeg @ 0x82f9100] component: 0 [mjpeg @ 0x82f9100] component: 1 [mjpeg @ 0x82f9100] component: 2 [mjpeg @ 0x82f9100] marker parser used 45020 bytes (360155 bits) [mjpeg @ 0x82f9100] marker=d9 avail_size_in_buf=0 [mjpeg @ 0x82f9100] decode frame unused 0 bytes [mp3 @ 0x82f1500] max_analyze_duration 5000000 reached at 5015510 [mp3 @ 0x82f1500] File position after avformat_find_stream_info() is 189663 Input #0, mp3, from '10.mp3': Metadata: artist : ??? title : ????? Tagging time : 2012-09-03T03:39:33 album : ????? TYER : 2012-07-20 Duration: 00:03:36.71, start: 0.000000, bitrate: 131 kb/s Stream #0:0, 194, 1/14112000: Audio: mp3, 44100 Hz, stereo, s16, 128 kb/s Stream #0:1, 1, 1/90000: Video: mjpeg, yuvj420p, 240x240 [SAR 1:1 DAR 1:1], 1/90000, 90k tbr, 90k tbn, 90k tbc Metadata: title : e comment : Cover (front) [abuffer @ 0x8369c20] Setting entry with key 'time_base' to value '1/44100' [abuffer @ 0x8369c20] Setting entry with key 'sample_rate' to value '44100' [abuffer @ 0x8369c20] Setting entry with key 'sample_fmt' to value 's16' [abuffer @ 0x8369c20] Setting entry with key 'channel_layout' to value '0x3' [graph 0 input from stream 0:0 @ 0x83589e0] tb:1/44100 samplefmt:s16 samplerate:44100 chlayout:0x3 [aformat @ 0x836fb60] Setting entry with key 'sample_fmts' to value 's16' [aformat @ 0x836fb60] Setting entry with key 'channel_layouts' to value '0x3' Output #0, adts, to '10.aac': Metadata: artist : ??? title : ????? Tagging time : 2012-09-03T03:39:33 album : ????? TYER : 2012-07-20 encoder : Lavf54.29.104 Stream #0:0, 0, 1/90000: Audio: aac, 44100 Hz, stereo, s16, 32 kb/s Stream mapping: Stream #0:0 -> #0:0 (mp3 -> libfaac) Press [q] to stop, [?] for help [mp3 @ 0x82f1500] demuxer injecting skip 1105 [mp3 @ 0x82f8380] skip 1105 samples due to side data [mp3 @ 0x82f8380] skip 1105/1152 samples EOF on sink link output stream 0:0:default.59.0kbits/s No more output streams to write to, finishing. [libfaac @ 0x831b980] Trying to remove 81 more samples than are in the que size= 1547kB time=00:03:36.71 bitrate= 58.5kbits/s video:0kB audio:1547kB subtitle:0 global headers:0kB muxing overhead 0.000000% [AVIOContext @ 0x82f9ae0] Statistics: 3575132 bytes read, 0 seeks -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 11:36:41 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 10:36:41 -0000 Subject: [FFmpeg-trac] #1483(avformat:closed): Allow a list of keyframe numbers that are valid for starting a new segment In-Reply-To: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> References: <035.f1d34d8d4c5ccc7e34d20beabe395c44@avcodec.org> Message-ID: <050.4b11cdc8faa305cce0144285f19be8a7@avcodec.org> #1483: Allow a list of keyframe numbers that are valid for starting a new segment -------------------------------------+------------------------------------ Reporter: gordon | Owner: Type: enhancement | Status: closed Priority: normal | Component: avformat Version: unspecified | Resolution: fixed Keywords: segment | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Changes (by saste): * analyzed: 0 => 1 * status: new => closed * resolution: => fixed * reproduced: 0 => 1 Comment: Replying to [comment:5 gordon]: > Replying to [comment:4 saste]: > > See patch in attachment. Test and comments are welcome. > > > > Also I'm not sure the patch is still useful, considering that there is already the segment_times option. > > > > I think there are cases where it is still useful. I will use it. Thanks! Should be fixed in: {{{ commit 0156dd6530b998923405e0b21f31bc1fbe68e009 Author: Stefano Sabatini Date: Sun Dec 9 20:26:30 2012 +0100 lavf/segment: add segment_frames option This is meant to address trac ticket #1483. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 11:44:10 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 10:44:10 -0000 Subject: [FFmpeg-trac] #910(avformat:closed): Segmented encode gives increasing time clips In-Reply-To: <037.1f032f6c1bf116610630c57baa30a961@avcodec.org> References: <037.1f032f6c1bf116610630c57baa30a961@avcodec.org> Message-ID: <052.f5586e0bfb4d88a0be9754287543f782@avcodec.org> #910: Segmented encode gives increasing time clips -------------------------------------+------------------------------------- Reporter: stljdpwl | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: 0.9.1 | Resolution: invalid Keywords: segment | Blocked By: dshow | Reproduced by developer: 0 Blocking: | Analyzed by developer: 1 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: segmenting DirectShow => segment dshow -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 11:52:59 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 10:52:59 -0000 Subject: [FFmpeg-trac] #2075(undetermined:closed): Wrong bitrate when transcoding to aac In-Reply-To: <035.f0ec07b64986023a02dd50769f02f97d@avcodec.org> References: <035.f0ec07b64986023a02dd50769f02f97d@avcodec.org> Message-ID: <050.325c42b8a5b30053edada1b156a01eb8@avcodec.org> #2075: Wrong bitrate when transcoding to aac ---------------------------------+---------------------------------------- Reporter: ddnlkd | Owner: Type: defect | Status: closed Priority: normal | Component: undetermined Version: 1.0.1 | Resolution: invalid Keywords: libfaac | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+---------------------------------------- Changes (by cehoyos): * keywords: aac bitrate => libfaac * priority: important => normal * status: new => closed * resolution: => invalid Comment: Please test the following: $ ffmpeg -i 10.mp3 10.wav $ faac -b 32 10.wav faac's console output will tell you if it was successful reaching the bitrate that you specified. Please reopen this ticket if it works correctly. (libfaac is an external library, the bitrate that you specify is passed to the library, we cannot guarantee that an external library works as expected.) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 11:53:57 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 10:53:57 -0000 Subject: [FFmpeg-trac] #2074(avcodec:closed): decoded frame picture type does not match packet flags In-Reply-To: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> References: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> Message-ID: <051.f10194c57b082c7655ab3d715d0e9968@avcodec.org> #2074: decoded frame picture type does not match packet flags ------------------------------------+----------------------------------- Reporter: mrhines | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: key frame, decode, mpeg2 => mpeg2video * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 12:12:40 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 11:12:40 -0000 Subject: [FFmpeg-trac] #2062(avcodec:new): Playback of HD-PVR recordings corrupted when using VDPAU In-Reply-To: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> References: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> Message-ID: <053.ac1d1fcf46c394fb11da6ca9d0ac0db7@avcodec.org> #2062: Playback of HD-PVR recordings corrupted when using VDPAU -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: vdpau h264 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => vdpau h264 Comment: The sample plays fine with mplayer -vc ffh264vdpau here (with -demuxer mpegts and -demuxer lavf), could you also test on your hardware? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 13:21:03 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 12:21:03 -0000 Subject: [FFmpeg-trac] #2062(avcodec:new): Playback of HD-PVR recordings corrupted when using VDPAU In-Reply-To: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> References: <038.c25a58a400a13da51faad799ce3189d5@avcodec.org> Message-ID: <053.eaf6406793088c75cf4c2bf93a5b0967@avcodec.org> #2062: Playback of HD-PVR recordings corrupted when using VDPAU -------------------------------------+----------------------------------- Reporter: jyavenard | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: unspecified | Resolution: Keywords: vdpau h264 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by jyavenard): Actually, it seems that the main culprit is the rendering playback. When using the VDPAU rendering or OpenGL (in mythtv), the frame mis-order occurs. it plays okay with mplayer (svn r35710) :( with: mplayer -vo vdpau -vc ffh264vdpau -demuxer lavf /data/videos/testing/11159\ HD-PVR\ sample.mpg or: mplayer -vo vdpau -vc ffh264vdpau -demuxer mpegts /data/videos/testing/11159\ HD-PVR\ sample.mpg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 14:43:33 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 13:43:33 -0000 Subject: [FFmpeg-trac] #2017(undetermined:closed): [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! In-Reply-To: <035.bc0ae707dbcee09aa8d4f89bd56ba2dd@avcodec.org> References: <035.bc0ae707dbcee09aa8d4f89bd56ba2dd@avcodec.org> Message-ID: <050.459fb5bb0f63159316935c8691e65838@avcodec.org> #2017: [scale @ 0x195aa60] w:1280 h:720 fmt:yuv420p sar:1/1 -> w:426 h:238 fmt:yuv420p sar:1904/1917 flags:0x4 [buffer @ 0x1895de0] Invalid pixel format '-1' Error opening filters! -------------------------------------+------------------------------------- Reporter: mobil1 | Owner: Type: enhancement | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | needs_more_info Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen this ticket if you can add the missing information. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 15:11:19 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 14:11:19 -0000 Subject: [FFmpeg-trac] #2070(undetermined:new): Handling Multichannel BINK In-Reply-To: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> References: <032.2b9b5c03cff49e07941f3eae73d73390@avcodec.org> Message-ID: <047.455ebb74544b075335a932ef20354b69@avcodec.org> #2070: Handling Multichannel BINK -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DJX): Your command works, thanks. I was actualy thinking that these are handled wrong since, in this sample at least, all the channels are supposed to be mixed to produce the correct output. I may be wrong here though. Feel free to close if you want since I have a work around now. Also, the "amerge" option is not avaliable in FFplay. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 18:37:03 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 17:37:03 -0000 Subject: [FFmpeg-trac] #2076(undetermined:new): FFMPEG creates WTV files which are unplayable on XBMC Message-ID: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: FFMPEG with the newest version works well to create WTV files, however these only work on WMP/MCE. They are not playable on XBMC. To replicate the issue, take a very simple case: Take a WTV file, convert to TS, and then convert back to WTV. The resultant file will not play on XBMC. XBMC (including the latest v11) throws an error: CDVDPlayer::OpenDemuxStream - Error creating demuxer However XBMC CAN play the ORIGINAL WTV file without any issues. I've uploaded a sample file CSI.wtv to the FTP server (or you can use any file). This happens consistently with ANY file. The reason I picked WTV -> TS -> WTV was to show that original works on XBMC where as the remuxed does not. How to reproduce: {{{ ffmpeg.2311 -i ..\CSI.wtv -vcodec copy -acodec copy csi-test.ts ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mp2 @ 02c34e20] Header missing [mpeg2video @ 02c2eee0] mpeg_decode_postinit() failure Last message repeated 7 times Input #0, wtv, from '..\CSI.wtv': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : CSI: Crime Scene Investigation WM/SubTitle : Justice Is Served WM/SubTitleDescription: Grissom investigates the death of a jogger; Catherine tries to determine the cause of death of a little girl on a carnival ride. genre : Drama;General;Series;Action/Adventure WM/OriginalReleaseTime: 0 WM/MediaCredits : William Petersen/Marg Helgenberger/Paul Guilfoyle/George Eads/Gary Dourdan/Jorja Fox;Thomas J. Wri ght;;Eric Szmanda/Robert David Hall/Skip O'Brien/David Berman/Alicia Coppola/Earl Brown/Kellie Waymire/Brad Johnson/Wayn e Wilderson/Steffanie Brass/Joseph Pa service_provider: USA service_name : USA Network WM/MediaNetworkAffiliation: Satellite WM/MediaOriginalChannel: 42 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2001-04-26T04:00:00Z WM/MediaOriginalRunTime: 20288549297 WM/MediaIsStereo: true WM/MediaIsRepeat: true WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-01-27 06:28:11 WM/WMRVSeriesUID: !MCSeries!00380341 WM/WMRVServiceID: !MCService!28459373 WM/WMRVProgramID: !MCProgram!29070181 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 1745 WM/WMRVOriginalSoftPostPadding: 120 WM/WMRVHardPrePadding: -1685 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: false WM/WMRVDTVContent: false WM/WMRVHDContent: false Duration : 475547199 WM/WMRVEndTime : 2012-01-27 06:28:58 WM/WMRVBitrate : 8.257536 WM/WMRVKeepUntil: 0 WM/WMRVActualSoftPrePadding: 16 WM/WMRVActualSoftPostPadding: -1861 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 234 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 4 WM/MediaThumbAspectRatioY: 3 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 Duration: 00:00:46.55, start: 14.626711, bitrate: 8290 kb/s Stream #0:0[0x11]: Subtitle: eia_608 Stream #0:1[0x12]: Video: mpeg2video (Main), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 29.97 fps, 29.97 tbr, 10000k tbn, 5 9.94 tbc Stream #0:2[0x13]: Audio: mp2 (P[0][0][0] / 0x0050), 48000 Hz, stereo, s16p, 384 kb/s Stream #0:3[0x0]: Attachment: mjpeg Metadata: title : TV Thumbnail File 'csi-test.ts' already exists. Overwrite ? [y/N] y Output #0, mpegts, to 'csi-test.ts': Metadata: WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74 WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000 Title : CSI: Crime Scene Investigation WM/SubTitle : Justice Is Served WM/SubTitleDescription: Grissom investigates the death of a jogger; Catherine tries to determine the cause of death of a little girl on a carnival ride. genre : Drama;General;Series;Action/Adventure WM/OriginalReleaseTime: 0 WM/MediaCredits : William Petersen/Marg Helgenberger/Paul Guilfoyle/George Eads/Gary Dourdan/Jorja Fox;Thomas J. Wri ght;;Eric Szmanda/Robert David Hall/Skip O'Brien/David Berman/Alicia Coppola/Earl Brown/Kellie Waymire/Brad Johnson/Wayn e Wilderson/Steffanie Brass/Joseph Pa service_provider: USA service_name : USA Network WM/MediaNetworkAffiliation: Satellite WM/MediaOriginalChannel: 42 WM/MediaOriginalChannelSubNumber: 0 WM/MediaOriginalBroadcastDateTime: 2001-04-26T04:00:00Z WM/MediaOriginalRunTime: 20288549297 WM/MediaIsStereo: true WM/MediaIsRepeat: true WM/MediaIsLive : false WM/MediaIsTape : false WM/MediaIsDelay : false WM/MediaIsSubtitled: false WM/MediaIsMovie : false WM/MediaIsPremiere: false WM/MediaIsFinale: false WM/MediaIsSAP : false WM/MediaIsSport : false WM/ParentalRating: TV-PG WM/Provider : MediaCenterDefault WM/VideoClosedCaptioning: true WM/WMRVEncodeTime: 2012-01-27 06:28:11 WM/WMRVSeriesUID: !MCSeries!00380341 WM/WMRVServiceID: !MCService!28459373 WM/WMRVProgramID: !MCProgram!29070181 WM/WMRVRequestID: 0 WM/WMRVScheduleItemID: 0 WM/WMRVQuality : 3 WM/WMRVOriginalSoftPrePadding: 1745 WM/WMRVOriginalSoftPostPadding: 120 WM/WMRVHardPrePadding: -1685 WM/WMRVHardPostPadding: 0 WM/WMRVATSCContent: false WM/WMRVDTVContent: false WM/WMRVHDContent: false Duration : 475547199 WM/WMRVEndTime : 2012-01-27 06:28:58 WM/WMRVBitrate : 8.257536 WM/WMRVKeepUntil: 0 WM/WMRVActualSoftPrePadding: 16 WM/WMRVActualSoftPostPadding: -1861 WM/WMRVContentProtected: false WM/WMRVContentProtectedPercent: 0 WM/WMRVExpirationSpan: 9223372036854775807 WM/WMRVInBandRatingSystem: 255 WM/WMRVInBandRatingLevel: 255 WM/WMRVInBandRatingAttributes: 0 WM/WMRVWatched : false WM/MediaThumbWidth: 352 WM/MediaThumbHeight: 234 WM/MediaThumbStride: 1056 WM/MediaThumbRet: 0 WM/MediaThumbRatingSystem: 255 WM/MediaThumbRatingLevel: 255 WM/MediaThumbRatingAttributes: 0 WM/MediaThumbAspectRatioX: 4 WM/MediaThumbAspectRatioY: 3 WM/MediaThumbTimeStamp: -4616189618054758400 WM/MediaThumbType: 2 encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video, yuv420p, 720x480 [SAR 8:9 DAR 4:3], q=2-31, 29.97 fps, 90k tbn, 29.97 tbc Stream #0:1: Audio: mp2 (P[0][0][0] / 0x0050), 48000 Hz, stereo, 384 kb/s Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:2 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 1388 fps=0.0 q=-1.0 Lsize= 48525kB time=00:00:46.69 bitrate=8513.9kbits/s video:42586kB audio:2181kB subtitle:0 global headers:0kB muxing overhead 8.394296% ffmpeg.2311 -i csi-test.ts -vcodec copy -acodec copy csi.wtv ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mp3 @ 021bfc00] Header missing [mpegts @ 021bc940] max_analyze_duration 5000000 reached at 5016000 Input #0, mpegts, from 'csi-test.ts': Duration: 00:00:46.57, start: 1.552389, bitrate: 8535 kb/s Program 1 Metadata: service_name : USA Network service_provider: USA Stream #0:0[0x100]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x480 [SAR 8:9 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x101]: Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 384 kb/s Output #0, wtv, to 'csi.wtv': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 720x480 [SAR 8:9 DAR 4:3], q=2-31, 29.97 fps, 10000k tb n, 29.97 tbc Stream #0:1: Audio: mp2 (P[0][0][0] / 0x0050), 48000 Hz, stereo, 384 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame= 1388 fps=0.0 q=-1.0 Lsize= 45340kB time=00:00:46.53 bitrate=7981.1kbits/s video:42586kB audio:2181kB subtitle:0 global headers:0kB muxing overhead 1.279846% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 18:59:34 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 17:59:34 -0000 Subject: [FFmpeg-trac] #2074(avcodec:closed): decoded frame picture type does not match packet flags In-Reply-To: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> References: <036.9b2505df7240e09f79a7f6f4c38283c2@avcodec.org> Message-ID: <051.a3de1b753b78f911f6d412800ae84bf6@avcodec.org> #2074: decoded frame picture type does not match packet flags ------------------------------------+----------------------------------- Reporter: mrhines | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: mpeg2video | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mrhines): Thanks for the explanation. I wasn't aware there was a "delay" in the decoder. Thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 19:12:22 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 18:12:22 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.ede92d6f9dc74d65174506950d855bb2@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => wtv * component: undetermined => avformat Comment: Are you sure that you are reporting this problem on the right bug tracker? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 28 20:07:42 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 19:07:42 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.cec75c614996caf659958b4d092a8f29@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Yes I thought so too and debated it, you call finally but here' my thoughts. Initially I thought it's a XBMC bug, then I relooked at it - how is it that XBMC is able to play the original file and not the remuxed file. Yes its possible there's a bug in XMBC - but I couldn't overlook the fact that if the Container formats were identical there wouldn't be an issue, possibly something is not right in the container created by FFMPEG which is causing XMBC to bug out. Again, not saying that it's not a XBMC problem but definitely there's something in FFMPEG which is creating the WTV container is a slightly differnet format than the original WTV container. (after all we're only remuxing it). Keeping the above in mind, here's something else anohter user reported in their XMBC logs (which also appears to use ffmpeg). Again keep in mind, there goal here is to find out what's differnet about the ffmpeg created wtv vs the original: {{{ :00:15 T:5640 ERROR: ffmpeg[1608]: [wtv] unknown guid 00000000000000000000000000000000, expected dir_entry_guid; remaining directory entries ignored 08:00:15 T:5640 ERROR: ffmpeg[1608]: [wtv] timeline data missing 08:00:15 T:5640 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file C:\Users\paul\Desktop\S09E11-A Lovely Landing Strip After.wtv 08:00:15 T:5640 ERROR: CDVDFileInfo::ExtractThumb - Error creating demuxer }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 00:12:07 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 23:12:07 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.0abcec49d375ec235e2817c743fe083b@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Is is possible that XBMC is using libavformat to demux wtv files? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 00:31:17 2012 From: trac at avcodec.org (FFmpeg) Date: Fri, 28 Dec 2012 23:31:17 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.5f6b7960a206f4e9b615bb1611294f41@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by pross): What version of XBMC? What operating system? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 06:24:32 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 05:24:32 -0000 Subject: [FFmpeg-trac] #2053(FFplay:closed): ffplay's frame step not accurate In-Reply-To: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> References: <035.4c27b3b9f3ac35aa9c837bdeb3f56770@avcodec.org> Message-ID: <050.4dddd610cd247538d3607f8e3a5143b8@avcodec.org> #2053: ffplay's frame step not accurate ------------------------------------+---------------------------------- Reporter: ubitux | Owner: cus Type: defect | Status: closed Priority: normal | Component: FFplay Version: git-master | Resolution: fixed Keywords: framestep | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Marton. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 06:25:19 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 05:25:19 -0000 Subject: [FFmpeg-trac] #1903(FFplay:closed): ffplay: audio wave does not refresh for mp3s with apic In-Reply-To: <038.4cb55ea996692afca771524b6af80fa2@avcodec.org> References: <038.4cb55ea996692afca771524b6af80fa2@avcodec.org> Message-ID: <053.122ecd7056475d7c982a7249e52b7673@avcodec.org> #1903: ffplay: audio wave does not refresh for mp3s with apic ------------------------------------+---------------------------------- Reporter: ami_stuff | Owner: cus Type: defect | Status: closed Priority: normal | Component: FFplay Version: git-master | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Marton. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 07:30:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 06:30:42 -0000 Subject: [FFmpeg-trac] #406(avformat:closed): QuickTime Error: "Error -2041: an invalid sample description was found in the movie" In-Reply-To: <038.a1d8c643329052c8e0beb3f590edd59a@avcodec.org> References: <038.a1d8c643329052c8e0beb3f590edd59a@avcodec.org> Message-ID: <053.9ee6f2677d7b17055f21b2e88f484706@avcodec.org> #406: QuickTime Error: "Error -2041: an invalid sample description was found in the movie" -------------------------------------+------------------------------------- Reporter: KSHawkEye | Owner: michael Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mov mp3 | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: isom mp3 => mov mp3 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 07:31:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 06:31:42 -0000 Subject: [FFmpeg-trac] #1493(undetermined:open): Transcoding MOV file from Rhozet Carbon Server creates video with double duration (needs edit list duration support) In-Reply-To: <037.54193589962f945e63fa23454a61f4ac@avcodec.org> References: <037.54193589962f945e63fa23454a61f4ac@avcodec.org> Message-ID: <052.4a285b853b7efd7f2cc23bcff4668b43@avcodec.org> #1493: Transcoding MOV file from Rhozet Carbon Server creates video with double duration (needs edit list duration support) -------------------------------------+------------------------------------- Reporter: kbreeman | Owner: Type: defect | Status: open Priority: important | Component: Version: git-master | undetermined Keywords: mov edts | Resolution: Blocking: | Blocked By: Analyzed by developer: 1 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mov => mov edts -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 13:10:05 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 12:10:05 -0000 Subject: [FFmpeg-trac] #2077(avformat:new): Realmedia rv40 file cannot be demuxed Message-ID: <036.50dd49f4a9887aab6f7e2dd1731323d9@avcodec.org> #2077: Realmedia rv40 file cannot be demuxed --------------------------------------+----------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Keywords: real rv40 Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 --------------------------------------+----------------------------------- A user uploaded a sample that plays fine with MPlayer: $ mplayer problem.rm -demuxer real -vc ffrv40 Decoding fails with mplayer -demuxer lavf and FFmpeg. {{{ $ ffmpeg -i problem.rm ffmpeg version N-48268-gba34e56 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 29 2012 06:41:55 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [rm @ 0x21cf500] Unsupported stream type 000003a4 [rm @ 0x21cf500] Unsupported stream type 00000292 [rm @ 0x21cf500] DATA tag in middle of chunk, file may be broken. [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 8 with DTS 2235389, packet 9 with DTS 8451993 [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 12 with DTS 8460526, packet 13 with DTS 311043454 [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 30 with DTS 164687, packet 31 with DTS 209101495 [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 62 with DTS 8520781, packet 63 with DTS 914045114 [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 69 with DTS 8462776, packet 70 with DTS 916838991 [rm @ 0x21cf500] DTS discontinuity in stream 3: packet 74 with DTS 17256, packet 75 with DTS 51380227 [rm @ 0x21cf500] max_analyze_duration 5000000 reached at 5000000 Input #0, rm, from 'problem.rm': Metadata: Audiences : 16k Substream for 28k Dial-up;28k Dial-up;56k Dial- up;256k DSL or Cable; audioMode : music Creation Date : 4/30/2005 11:23:03 Generated By : RealProducer(R) Plus 10.0 for Windows, Build 10.0.0.545 Modification Date: 4/30/2005 11:29:42 videoMode : normal ASMRuleBook : #($Bandwidth < 20000),Stream7Bandwidth = 10000, Stream8Bandwidth = 6000;#($Bandwidth >= 20000) && ($Bandwidth < 34000),Stream7B title : author : copyright : (C) 2004 comment : Duration: 00:03:43.49, start: 0.000000, bitrate: 292 kb/s Stream #0:0: Data: none Stream #0:1: Data: none Stream #0:2: Video: rv40 (RV40 / 0x30345652), yuv420p, 360x288, 10 kb/s, 15 fps, 15 tbr, 1k tbn, 1k tbc Stream #0:3: Video: rv40 (RV40 / 0x30345652), yuv420p, 360x288, 12 kb/s, 15 fps, 15 tbr, 1k tbn, 1k tbc Stream #0:4: Video: rv40 (RV40 / 0x30345652), yuv420p, 360x288, 26 kb/s, 15 fps, 15 tbr, 1k tbn, 1k tbc Stream #0:5: Video: rv40 (RV40 / 0x30345652), yuv420p, 360x288, 180 kb/s, 25 fps, 25 tbr, 1k tbn, 1k tbc Stream #0:6: Audio: cook (cook / 0x6B6F6F63), 8000 Hz, mono, fltp, 6 kb/s Stream #0:7: Audio: cook (cook / 0x6B6F6F63), 8000 Hz, mono, fltp, 8 kb/s Stream #0:8: Audio: cook (cook / 0x6B6F6F63), 44100 Hz, stereo, fltp, 44 kb/s Stream #0:9: Video: rv40 (RV40 / 0x30345652), yuv420p, 360x288, 10 kb/s, 15 fps, 15 tbr, 1k tbn, 1k tbc At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 13:10:56 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 12:10:56 -0000 Subject: [FFmpeg-trac] #2077(avformat:new): Realmedia rv40 file cannot be demuxed In-Reply-To: <036.50dd49f4a9887aab6f7e2dd1731323d9@avcodec.org> References: <036.50dd49f4a9887aab6f7e2dd1731323d9@avcodec.org> Message-ID: <051.938affc6fb3fbd7f57533852e81f2d26@avcodec.org> #2077: Realmedia rv40 file cannot be demuxed ------------------------------------+------------------------------------ Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: real rv40 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Sample uploaded: http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket2077/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 15:25:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 14:25:18 -0000 Subject: [FFmpeg-trac] #2029(avformat:closed): mxf op1a audio has wrong duration and bitrate In-Reply-To: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> References: <037.305e2a4480d86c85486bc48e39dd1d44@avcodec.org> Message-ID: <052.522e73cbe3abd7437aed6a91d3f74c4e@avcodec.org> #2029: mxf op1a audio has wrong duration and bitrate -------------------------------------+------------------------------------- Reporter: cbsrobot | Owner: Type: defect | Status: closed Priority: important | Component: avformat Version: git-master | Resolution: fixed Keywords: mxf | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Tomas H?rdin. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 15:32:15 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 14:32:15 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.5e887e58f667e7e0dcbf1818dc47f6ea@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): I've tried XBMC v11 3bit on Windows 7 32 bit SP1. I believe one of the other uesrs tried an older version as well on Windows 7 64 bit. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 15:33:16 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 14:33:16 -0000 Subject: [FFmpeg-trac] #2030(build system:closed): x264_encoder_open_129 In-Reply-To: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> References: <039.d5eeafc58642672fe59ac954dcf4658b@avcodec.org> Message-ID: <054.eeffa774931670c2f64804819e5fe5d2@avcodec.org> #2030: x264_encoder_open_129 -------------------------------------+------------------------------------- Reporter: cybernet2u | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: git-master | system Keywords: libx264 | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => libx264 * status: new => closed * resolution: => invalid Comment: I don't think there is anything about this ticket that can be fixed in FFmpeg. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 16:46:47 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 15:46:47 -0000 Subject: [FFmpeg-trac] #1651(avcodec:open): jpeg rgb progressive decodes incorrectly In-Reply-To: <038.8693bd369ac13ae56f07c027dda00af4@avcodec.org> References: <038.8693bd369ac13ae56f07c027dda00af4@avcodec.org> Message-ID: <053.f152e9eb03897ae329dec10ae1dbf7b9@avcodec.org> #1651: jpeg rgb progressive decodes incorrectly ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ami_stuff): This happens with decreased jpeg quality (see attached files). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 17:43:58 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 16:43:58 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center Message-ID: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: Any WTV file created by FFMPEG, they can be seeked directly in MCE but when one tries toe fast forward or rewind (using the FF and RW buttons on the remote or the console) it does not go beyond at best 1 FF or 1 RW. i.e. WTV files recorded by MCE one can press the FF button upto 4 times to get 4x fast forward. Files created by FFMPEG sometimes get 1x FF and never go beyond 1x FF, it just returns to normal play. This happens with any WTV file, so you can take any file you have in your archive and remux it to wtv and see the results. something as simple as: ffmpeg -i test.ts -c copy test.wtv I'm not uploading a sample since it can be reproduced with any file remuxed to WTV. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 17:56:59 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 16:56:59 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.92539f0fac9b6de5db844e4256524664@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by richardpl): It is obvious xbmc use older ffmpeg. So ticket is invalid. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:28:55 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:28:55 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.ddf1bfd31afa6f2f944364043963b61c@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I tested with gcc-4.4.6 (vanilla) on x86_64, decoding works fine, jpgs also look fine. Please also post the output of the following command to clarify if this is a decoding (or a jpeg-encoding) issue. {{{ $ ffmpeg -i regression.flv -vframes 20 -f framecrc -an - ffmpeg version N-48272-g2a9443a Copyright (c) 2000-2012 the FFmpeg developers built on Dec 29 2012 18:15:32 with gcc 4.4.6 (GCC) configuration: --cc=/usr/local/gcc-4.4.6/bin/gcc libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 Input #0, flv, from 'regression.flv': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : Duration: 00:08:51.63, start: 0.000000, bitrate: 944 kb/s Stream #0:0: Video: h264 (Main), yuv420p, 640x480, 826 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, fltp, 131 kb/s #tb 0: 1001/30000 Output #0, framecrc, to 'pipe:': Metadata: starttime : 0 totalduration : 532 totaldatarate : 944 bytelength : 62755813 canseekontime : true sourcedata : B4A7DDA27MH1353476116770896 purl : pmsg : encoder : Lavf54.50.104 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 640x480, q=2-31, 200 kb/s, 29.97 tbn, 29.97 tbc Stream mapping: Stream #0:0 -> #0:0 (h264 -> rawvideo) Press [q] to stop, [?] for help 0, 0, 0, 1, 460800, 0xe0dfe574 0, 1, 1, 1, 460800, 0x98c2e5b9 0, 2, 2, 1, 460800, 0x809ecc4c 0, 3, 3, 1, 460800, 0x1b76597d 0, 4, 4, 1, 460800, 0xc399d81f 0, 5, 5, 1, 460800, 0x53e31a66 0, 6, 6, 1, 460800, 0x8bb83b7d 0, 7, 7, 1, 460800, 0xb0b4e300 0, 8, 8, 1, 460800, 0xeaa7f61b 0, 9, 9, 1, 460800, 0x8102c27c 0, 10, 10, 1, 460800, 0x2d1bb952 0, 11, 11, 1, 460800, 0xe48ef614 0, 12, 12, 1, 460800, 0x099458be 0, 13, 13, 1, 460800, 0xdf650aec 0, 14, 14, 1, 460800, 0xad449ba9 0, 15, 15, 1, 460800, 0xad166d82 0, 16, 16, 1, 460800, 0x8a0c7910 0, 17, 17, 1, 460800, 0x14a48d50 0, 18, 18, 1, 460800, 0x05b966fd 0, 19, 19, 1, 460800, 0x2a5753a3 frame= 20 fps=0.0 q=0.0 Lsize= 1kB time=00:00:00.66 bitrate= 14.1kbits/s video:9000kB audio:0kB subtitle:0 global headers:0kB muxing overhead -99.987218% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:32:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:32:09 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.c68af9c8ff8a23365f5147c8c90855b4@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): I tested playback of the remuxed file with ffplay 0.7, 0.8, 0.9, 0.10, 0.11 and 1.0 and all of them work fine, so I wonder why it fails with xbmc. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:33:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:33:18 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.570f88f91b5354898e16dd59011b6363@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): In any case, please provide the command line you used to produce a test- file together with complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:45:35 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:45:35 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.3463641f7973014beaf09438df08e105@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): @richardpl - assuming you're read the thread. If it's obvious, why is it able to play MCE recorded WTV files flawlessly? I.e. the WTV file created by FFMPEG is NOT the same (format wise) as the MCE created WTV file right? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:49:09 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:49:09 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.8431403e7ed49250cce4daa268743dea@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [comment:8 ramitbhalla]: > I.e. the WTV file created by FFMPEG is NOT the same (format wise) as the MCE created WTV file right? But the relevant application for wtv is WMP (not xbmc). Does xbmc print the used lavf version or were you able to find out which version was used for compilation? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:50:18 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:50:18 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.aadb2529f7d287c3d7df3d692ef1dc93@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): Sure: This is just one file, I get the same result with any file. {{{ ffmpeg -i "..\Himoe_USA_WRC-HD.ts" -c copy test.wtv ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from '..\Himoe_USA_WRC-HD.ts': Duration: 00:20:26.79, start: 0.200000, bitrate: 15313 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) File 'test.wtv' already exists. Overwrite ? [y/N] y Output #0, wtv, to 'test.wtv': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 10000k tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, 96 kb/s (visual impaired) Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help frame=36773 fps=417 q=-1.0 Lsize= 2278828kB time=00:20:26.99 bitrate=15214.6kbits/s video:2253105kB audio:14377kB subtitle:0 global headers:0kB muxing overhead 0.500394% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 18:52:49 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 17:52:49 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.046f86fb55a73983da7b672f01436651@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Does it only happen with -codec copy, or also if you re-encode? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:06:11 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:06:11 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.665d02c216cc0a5c3af35471aea78069@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Unfortunately no, I tried play with the log settings but am not able to get anything related to this. I did check the dll files installed but there are no version numbers on them, however they appear to be build on 3.2.12 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:08:27 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:08:27 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.136edff2d70a2e4e3a656afa6953ab6d@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [comment:10 ramitbhalla]: > I did check the dll files installed but there are no version numbers on them, however they appear to be build on 3.2.12 If you are unable to look at the sources, you can grep for "lavf" inside the libavformat dll. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:11:16 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:11:16 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.8f5f2d62b26db8b52ee81aeb36e08555@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): With re-coding also, if I use -vcodec mpeg2video -acodec copy, I get the same result. (ffmpeg WTV for now only supports MPEG2, I've submitted a request to support h.264) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:12:41 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:12:41 -0000 Subject: [FFmpeg-trac] #2065(avformat:closed): ADPCM_MS audio duration is incorrect In-Reply-To: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> References: <032.6d4b4038e0383ba84a0bb0ff0d85ca9c@avcodec.org> Message-ID: <047.5d758fa166f57460e06bc1bcceb3cfa4@avcodec.org> #2065: ADPCM_MS audio duration is incorrect -------------------------------------+------------------------------------- Reporter: DJX | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: regression | Blocked By: wav | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: regression => regression wav * status: open => closed * resolution: => fixed Comment: Fixed by James Almer. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:14:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:14:51 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.ea45321065334d37978aabafd91a1a34@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:4 ramitbhalla]: > With re-coding also, if I use -vcodec mpeg2video -acodec copy, I get the same result. What about -acodec mp2 or -acodec ac3 ? > (ffmpeg WTV for now only supports MPEG2, I've submitted a request to support h.264) I was under the impression trac user ianken submitted the request... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:15:51 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:15:51 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.d924a58a8424db394017ae0588f53095@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: wtv | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => wtv -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:19:38 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:19:38 -0000 Subject: [FFmpeg-trac] #2076(avformat:new): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.4d036c8634f8a20c700f50e26d11859d@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Here is what I got: {{{ avformat-52.dll: Location Content-Length Content-Range bytes Transfer- Encoding chunked WWW-Authenticate Authentication- Info Connection close Lavf52.94.0 User-Agent: %s avformat-52.dll: /%s connect app LNX %s %d,%d,%d,%d Lavf52.94.0 FMLE/3.0 (compatible; %s) type nonprivate flashVer tcUrl fpad capabilities audioCodecs videoCodecs videoFunction FLV?? /ondemand/ rtmp Genuine Adobe Flash Media Server 001???J?h??. ????~Wn?]-)?o????6??1? Genuine Adobe Flash Pl ayer 001???J?h??. ????~Wn?]-)?o????6??1? @@ ?@ PCMU ? ? ? @? ? ? GSM ? @? ? ? G723 ? @? ? ? DVI4 ? @? ? ? DVI4 ? ?> ? LPC ? @? ? PCMA ? ? @? ? G722 ? ??? @? ? avformat-52.dll: Lavf52.94.0 encoder !*next_point stream index %d is not valid }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:31:02 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:31:02 -0000 Subject: [FFmpeg-trac] #2078(undetermined:new): FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center In-Reply-To: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> References: <040.53c48e6ea6f73c4cafeca58a7b9ad408@avcodec.org> Message-ID: <055.1f149c7b0c06b186698bad2b6e13b184@avcodec.org> #2078: FFMPEG created WTV files cannot be fast forwarded or fast rewound in Windows Media Center -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: wtv | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ramitbhalla): WTV support for H.264 -> Ticket #1945 (been marked as duplicate of #536) Here is the output of recoding, still the same issue while FF / RW: {{{ ffmpeg -i "..\Himoe_USA_WRC-HD.ts" -vcodec mpeg2video -qscale 2 -acodec ac3 -ab 384k test.wtv ffmpeg version N-48065-g6375318 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 21 2012 09:06:30 with gcc 4.7.2 (GCC) configuration: --enable-static --arch=x86 --target-os=mingw32 --cross- prefix=/home/rdp/dev/ffmpeg-windows-build-helper s/sandbox/mingw-w64-i686/bin/i686-w64-mingw32- --pkg-config=pkg-config --enable-gpl --enable-libx264 --enable-avisynth - -enable-libxvid --enable-libmp3lame --enable-version3 --enable-zlib --enable-librtmp --enable-libvorbis --enable-libtheo ra --enable-libspeex --enable-libopenjpeg --enable-gnutls --enable-libgsm --enable-libfreetype --enable-fontconfig --ena ble-libass --enable-libutvideo --enable-libopus --disable-w32threads --enable-frei0r --enable-filter=frei0r --enable-lib vo-aacenc --enable-bzlib --enable-libxavs --extra- cflags=-DPTW32_STATIC_LIB --enable-libopencore-amrnb --enable-libopenc ore-amrwb --enable-libvo-amrwbenc --enable-libschroedinger --enable- libbluray --enable-libvpx --enable-runtime-cpudetect libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 49.102 / 54. 49.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 29.100 / 3. 29.100 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mpeg, from '..\Himoe_USA_WRC-HD.ts': Duration: 00:20:26.79, start: 0.200000, bitrate: 15313 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 96 kb/s (visual impaired) Please use -q:a or -q:v, -qscale is ambiguous File 'test.wtv' already exists. Overwrite ? [y/N] y Output #0, wtv, to 'test.wtv': Metadata: encoder : Lavf54.49.102 Stream #0:0: Video: mpeg2video (mpg2 / 0x3267706D), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 10000k tbn, 29.97 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 384 kb/s (visual impaired) Stream mapping: Stream #0:0 -> #0:0 (mpeg2video -> mpeg2video) Stream #0:1 -> #0:1 (ac3 -> ac3) Press [q] to stop, [?] for help incomplete frame 42 q=2.0 size= 3780118kB time=00:20:26.77 bitrate=25242.3kbits/s dup=1 drop=0 frame=36774 fps= 42 q=2.0 Lsize= 3784576kB time=00:20:26.99 bitrate=25267.7kbits/s dup=1 drop=0 =0 video:3714268kB audio:57507kB subtitle:0 global headers:0kB muxing overhead 0.339377% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 19:44:10 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 18:44:10 -0000 Subject: [FFmpeg-trac] #2076(avformat:closed): FFMPEG creates WTV files which are unplayable on XBMC In-Reply-To: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> References: <040.43631df07588c07cbf5f5e6131222855@avcodec.org> Message-ID: <055.406b3b6d3e878c1748b217b54e033ab8@avcodec.org> #2076: FFMPEG creates WTV files which are unplayable on XBMC -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: unspecified | Resolution: invalid Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: The playback problem is reproducible with very old (unsupported) versions of FFmpeg, for example a9d921c, fixed by Peter Ross in January 2011 (e6fb5a4). If pross wants to work on this, I will be happy to reopen;-) Note that the two-year old FFmpeg version xbmc uses (if your report is correct) contains hundreds of known, user-reported bugs that have been fixed in current FFmpeg, some of them security relevant (including ones that are said to be actually exploitable), there cannot be any good reason for third party projects to release binaries containing these dll's. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 20:16:29 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 19:16:29 -0000 Subject: [FFmpeg-trac] #1555(undetermined:open): WebM: Silent track not taken into account if followed by a noisy track In-Reply-To: <036.1ce4d11750f8e7eebb6322951c394647@avcodec.org> References: <036.1ce4d11750f8e7eebb6322951c394647@avcodec.org> Message-ID: <051.d7f72b2ad2f74fb8f41f968bee46d271@avcodec.org> #1555: WebM: Silent track not taken into account if followed by a noisy track -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mkv roundup | Resolution: async | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mkv roundup => mkv roundup async * status: new => open * reproduced: 0 => 1 Comment: Works fine with -async 1: $ ffmpeg -async 1 -i res_silence_then_sound.webm -qscale 2 out.avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 20:20:47 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 19:20:47 -0000 Subject: [FFmpeg-trac] #1033(undetermined:open): MOV file with non-zero/negative start has no sync between A/V unless -async 1 is used In-Reply-To: <041.69b40ad151b53c3011f54411f3265baf@avcodec.org> References: <041.69b40ad151b53c3011f54411f3265baf@avcodec.org> Message-ID: <056.671af4d404475878c1afb2626f269a7e@avcodec.org> #1033: MOV file with non-zero/negative start has no sync between A/V unless -async 1 is used -------------------------------------+------------------------------------- Reporter: | Owner: faroutliving | Status: open Type: defect | Component: Priority: normal | undetermined Version: git-master | Resolution: Keywords: mov prores | Blocked By: async | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mov prores => mov prores async -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 20:24:25 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 19:24:25 -0000 Subject: [FFmpeg-trac] #2051(undetermined:closed): Video merging sinking issue In-Reply-To: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> References: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> Message-ID: <051.86a3c0ca32d942816e58a2e9d47b3e7a@avcodec.org> #2051: Video merging sinking issue -------------------------------------+------------------------------------- Reporter: elbysam | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: async flv | Resolution: duplicate nellymoser | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => async flv nellymoser * status: new => closed * resolution: => duplicate Comment: I believe this is a duplicate of ticket #1555 (and some issues on roundup), not a regression afaict. Reproducible with: $ ffmpeg -i TestOrginal1.flv -qscale 2 out1.avi Works fine with -async 1: $ ffmpeg -async 1 -i TestOrginal1.flv -qscale 2 out1async1.avi The concatenation works here for example with the following command line: $ ffmpeg -async 1 -f concat -i concat.txt -qscale 2 outdemuxer.avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 20:24:43 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 19:24:43 -0000 Subject: [FFmpeg-trac] #1555(undetermined:open): WebM: Silent track not taken into account if followed by a noisy track In-Reply-To: <036.1ce4d11750f8e7eebb6322951c394647@avcodec.org> References: <036.1ce4d11750f8e7eebb6322951c394647@avcodec.org> Message-ID: <051.9636764bb7a2c9dd759e4f606c4d5ad3@avcodec.org> #1555: WebM: Silent track not taken into account if followed by a noisy track -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mkv roundup | Resolution: async | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Ticket #2051 looks related. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 21:35:22 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 20:35:22 -0000 Subject: [FFmpeg-trac] #2031(avformat:open): ffmpeg fails to access certain http URLs In-Reply-To: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> References: <035.3c828d757784f61bf16c6ef6a9be9462@avcodec.org> Message-ID: <050.204c4d603bdab5a05fd6742d3e7f3323@avcodec.org> #2031: ffmpeg fails to access certain http URLs -------------------------------------+------------------------------------ Reporter: gjdfgh | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * priority: normal => wish * status: new => open * version: unspecified => git-master * type: defect => enhancement * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 23:02:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 22:02:23 -0000 Subject: [FFmpeg-trac] #2079(build system:new): Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" Message-ID: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> #2079: Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" -------------------------------------+------------------------------------- Reporter: jamal | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git- | system master | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Commit c73c87b made some cosmetic changes that broke the output of a sed regexp from the configure script, generating nonexistent components called "x". Example of the configure script output on a default win32 build: {{{ Enabled decoders: aac c93 indeo4 aac_latm cavs indeo5 [...] ptx tiff x qcelp tmv xan_dpcm [...] Enabled encoders: a64multi jpegls png a64multi5 ljpeg ppm [...] flashsv pcm_u16le x flashsv2 pcm_u24be xbm [...] Enabled demuxers: aac iff pcm_u32le ac3 ilbc pcm_u8 [...] gxf pcm_s32be x h261 pcm_s32le xa [...] Enabled muxers: a64 image2pipe pcm_s16be ac3 ipod pcm_s16le [...] ico pcm_f64le x ilbc pcm_mulaw yuv4mpegpipe image2 Enabled indevs: lavfi vfwcap x Enabled outdevs: x }}} You can see this all around FATE as well. The problem is that the cosmetic changes made REGISTER_ENCDEC, REGISTER_MUXDEMUX and REGISTER_INOUTDEV be defined in more than one line. Before {{{ #define REGISTER_INOUTDEV(X,x) REGISTER_OUTDEV(X,x); REGISTER_INDEV(X,x) }}} After {{{ #define REGISTER_INOUTDEV(X, x) \ REGISTER_OUTDEV(X, x); \ REGISTER_INDEV(X, x) }}} Since the calls are in their own separate lines, the sed regexp processes them as components. Easiest solution would be to put them again on a single line. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 23:11:19 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 22:11:19 -0000 Subject: [FFmpeg-trac] #2079(build system:new): Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" In-Reply-To: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> References: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> Message-ID: <049.90841327772580668991eaf1601c0b35@avcodec.org> #2079: Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" -------------------------------------+------------------------------------- Reporter: jamal | Owner: Type: defect | Status: new Priority: important | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => important Comment: Looks important to me. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 29 23:41:39 2012 From: trac at avcodec.org (FFmpeg) Date: Sat, 29 Dec 2012 22:41:39 -0000 Subject: [FFmpeg-trac] #2079(build system:open): Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" In-Reply-To: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> References: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> Message-ID: <049.3d4559066448318209eee3c1c0ae60c5@avcodec.org> #2079: Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" -------------------------------------+------------------------------------- Reporter: jamal | Owner: Type: defect | Status: open Priority: important | Component: build Version: git-master | system Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => regression * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 01:51:28 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 00:51:28 -0000 Subject: [FFmpeg-trac] #1450(undetermined:closed): ffmpeg does not terminate after end of input (asyncts used) In-Reply-To: <032.dfb9d7fe342f1102b78b1bd1d4a9d3cf@avcodec.org> References: <032.dfb9d7fe342f1102b78b1bd1d4a9d3cf@avcodec.org> Message-ID: <047.f3d0e66ab956c3bf2b60aa0ca1ae79d0@avcodec.org> #1450: ffmpeg does not terminate after end of input (asyncts used) -------------------------------------+------------------------------------- Reporter: lvm | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: asyncts | Resolution: fixed Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: libfaac, asyncts => asyncts * status: new => closed * resolution: => fixed Comment: Replying to [comment:7 ey3ball]: > Command line : > > ffmpeg -v debug -i ./sample.ts -vn -af asyncts=compensate=1 -acodec pcm_s16le -sn -y out.wav The problem is fixed in current git head (and 1.0). Please note that asyncts is a deprecated filter, aresample is recommended instead. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 05:24:06 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 04:24:06 -0000 Subject: [FFmpeg-trac] #2048(avcodec:open): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.466746de75dc5881e88a26efb9a43cec@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: ubitux Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by ubitux): * owner: => ubitux Comment: Thanks for the report, working on it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 06:59:26 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 05:59:26 -0000 Subject: [FFmpeg-trac] #2048(avcodec:closed): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.7f27a580a79b70bbfc2029929056c33f@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: ubitux Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by ubitux): * status: open => closed * resolution: => fixed Comment: Should be fixed in c83002a4. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 07:03:30 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 06:03:30 -0000 Subject: [FFmpeg-trac] #2080(undetermined:new): Conversion of some .wtv files to .mpg produces unplayable file Message-ID: <037.acd173f116bb11095bbbc6760f7a4b2c@avcodec.org> #2080: Conversion of some .wtv files to .mpg produces unplayable file -------------------------------------+------------------------------------- Reporter: peterdeg | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: Using Windows 8 Pro with Media Center to record digital TV. FFmpeg is then used to convert the .wtv files to .mpg using "-vcodec copy -acodec copy" options for playback on a PS3. Some (not all) recordings from one TV station do not convert properly (have not encountered the problem with any other station. When attempting to play the file using Media Player, it freezes at the first frame. When playing on a PS3, the video plays correctly but there is no audio. The conversion produces "mpeg_decode_postinit() failure" errors. Modifying analyzeduration and probesize does not remove the error. How to reproduce: {{{ ffmpeg.exe -y -i "Pat Callinan's 4x4 Adventures_Ten Digital_2012_12_23_11_57_18.wtv" -vcodec copy -acodec copy -f dvd "Pat Callinan's 4x4 Adventures_Ten Digital_2012_12_23_11_57_18.mpg" ffmpeg version N-47062-g26c531c Copyright (c) 2000-2012 the FFmpeg developers built on Nov 25 2012 12:25:21 with gcc 4.7.2 (GCC)}}} I have a sample .wtv file cut down to 10MB. When I convert the sample to .mpg, it does play on Media Player but without sound. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 07:19:42 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 06:19:42 -0000 Subject: [FFmpeg-trac] #2079(build system:closed): Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" In-Reply-To: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> References: <034.94da5ee43c710ae100e0258af114cc9d@avcodec.org> Message-ID: <049.d769a78b8fd1ea5eca5fde4fc150cb6f@avcodec.org> #2079: Configure script processes nonexistent in/outdevs, de/muxers and de/encoders named "x" -------------------------------------+------------------------------------- Reporter: jamal | Owner: Type: defect | Status: closed Priority: important | Component: build Version: git-master | system Keywords: regression | Resolution: fixed Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by ubitux): * status: open => closed * resolution: => fixed Comment: Haha! Should be fixed in 613001d7, thanks for the report :) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 09:44:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 08:44:36 -0000 Subject: [FFmpeg-trac] #2080(undetermined:new): Conversion of some .wtv files to .mpg produces unplayable file In-Reply-To: <037.acd173f116bb11095bbbc6760f7a4b2c@avcodec.org> References: <037.acd173f116bb11095bbbc6760f7a4b2c@avcodec.org> Message-ID: <052.98e5419fda44030d27865fbc915b8b13@avcodec.org> #2080: Conversion of some .wtv files to .mpg produces unplayable file -------------------------------------+------------------------------------- Reporter: peterdeg | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by pross): Please post a sample .wtv file to reproduce the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 10:12:29 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 09:12:29 -0000 Subject: [FFmpeg-trac] #2081(avformat:new): Some MOV chapters parsing broken since 0d96ec1 Message-ID: <035.713eb1743193a02fe48d3a33746030d6@avcodec.org> #2081: Some MOV chapters parsing broken since 0d96ec1 -------------------------------------+------------------------------------- Reporter: Cigaes | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: | Keywords: mov unspecified | chapters regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 1 -------------------------------------+------------------------------------- With the attached sample: {{{ ./ffmpeg_g -i /tmp/chapters.mov }}} Expected (truncated) outout: {{{ Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/chapters.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-12-24 00:08:45 Duration: 00:21:21.96, start: 0.000000, bitrate: 3 kb/s Chapter #0.0: start 0.000000, end 0.480000 Metadata: title : Stream #0:0(eng): Video: h264 (avc1 / 0x31637661), 640x480, 1694 kb/s, 25 fps, 25 tbr, 2500 tbn, 5k tbc }}} Actual output: {{{ Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/chapters.mov': Metadata: major_brand : qt minor_version : 537199360 compatible_brands: qt creation_time : 2012-12-24 00:08:45 Duration: 00:21:21.96, start: 0.000000, bitrate: 3 kb/s Stream #0:0(eng): Video: h264 (avc1 / 0x31637661), 640x480, 1694 kb/s, 25 fps, 25 tbr, 2500 tbn, 5k tbc }}} Notice the chapter just after "duration". The change comes from the following commit: {{{0d96ec1 mov: parse tref atom.}}} Reverting it (or just replacing {{{mov_read_tref}}} with {{{mov_read_default}}} in {{{libavformat/mov.c}}}:{{{mov_default_parse_table}}} restores the correct behaviour (but certainly breaks the feature it was adding). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 10:56:28 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 09:56:28 -0000 Subject: [FFmpeg-trac] #2081(avformat:open): Some MOV chapters parsing broken since 0d96ec1 In-Reply-To: <035.713eb1743193a02fe48d3a33746030d6@avcodec.org> References: <035.713eb1743193a02fe48d3a33746030d6@avcodec.org> Message-ID: <050.442d485035a50b0668964bda65d19c51@avcodec.org> #2081: Some MOV chapters parsing broken since 0d96ec1 -------------------------------------+------------------------------------- Reporter: Cigaes | Owner: ubitux Type: defect | Status: open Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: mov | Blocked By: chapters regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 1 | -------------------------------------+------------------------------------- Changes (by ubitux): * owner: => ubitux * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 12:00:52 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 11:00:52 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.a70753c302a918a243f75748805e7797@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by doublemax): Sorry - I have installed CentOS6 32bit - I can't provide you any tests. Maybe you want to close this ticket. Thanks a lot -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 14:20:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 13:20:36 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.84a4cb71cd838c2b41a4d4d3678e1692@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:9 doublemax]: > Sorry - I have installed CentOS6 32bit - I can't provide you any tests. I am not sure I understand: You cannot run the command line I used and post the output here so we know if this is a decoding or an encoding problem? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 14:21:31 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 13:21:31 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.ec3c53835154aa33f6fa785c87262aee@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:9 doublemax]: > Sorry - I have installed CentOS6 32bit - I can't provide you any tests. Sorry, I misread your post - how do you know it fails on CentOS6 64bit if you only have a 32bit installation? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 14:56:47 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 13:56:47 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.cf96e3cece4a93b741b80851e1b5a0af@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Does the sample you uploaded - test-wtv.wtv - actually contain visible subtitles? If not, and since attachments and subtitles are different things (as shown on ffmpeg-devel today), please consider opening a second ticket for subtitles including a sample that allows to test this. I can also do it, but please point me to a sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 15:00:53 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 14:00:53 -0000 Subject: [FFmpeg-trac] #1457(avcodec:new): Add support for libshine-fxp fixed point math MP3 encoder In-Reply-To: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> References: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> Message-ID: <051.a06888ab1c0b35a18ead33b406bf8bd4@avcodec.org> #1457: Add support for libshine-fxp fixed point math MP3 encoder -------------------------------------+----------------------------------- Reporter: patters | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by patters): I discovered that in fact this mod breaks other aspects of FFmpeg - in particular the AC3 encoder. I get garbage audio with other AC3 transcodes if I use this same libshine-enabled binary with Serviio. Won't this libshine support be officially integrated into the project? It would be very useful... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 15:28:22 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 14:28:22 -0000 Subject: [FFmpeg-trac] #2033(undetermined:new): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.044492029360de80b25bcbb947cd6d95@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by doublemax): I had both - 32bit and 64bit. Because of this bug I removed the CentOS 64bit machines. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:01:21 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:01:21 -0000 Subject: [FFmpeg-trac] #1457(avcodec:new): Add support for libshine-fxp fixed point math MP3 encoder In-Reply-To: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> References: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> Message-ID: <051.98123c50224f3c23fabfca165268b3af@avcodec.org> #1457: Add support for libshine-fxp fixed point math MP3 encoder -------------------------------------+----------------------------------- Reporter: patters | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by richardpl): Replying to [comment:20 patters]: > I discovered that in fact this mod breaks other aspects of FFmpeg - in particular the AC3 encoder. I get garbage audio with other AC3 transcodes if I use this same libshine-enabled binary with Serviio. Won't this libshine support be officially integrated into the project? It would be very useful... Contact maintainer of libshine (libshine is on github) for resolving remaining issues. Latest wrapper version can be found in shine branch of my ffmpeg fork on github too. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:20:34 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:20:34 -0000 Subject: [FFmpeg-trac] #2082(undetermined:new): mjpeg: low quality + restart (and grayscale) = lower quality than libjpeg Message-ID: <038.0151cdc595402fc19d185313c849d710@avcodec.org> #2082: mjpeg: low quality + restart (and grayscale) = lower quality than libjpeg -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- {{{ cjpeg -targa -quality 15 -progressive -restart 17 -grayscale test.tga >q15r17.jpg }}} {{{ cjpeg -targa -quality 5 -progressive -restart 17 -grayscale test.tga >q5r17.jpg }}} {{{ cjpeg -targa -quality 1 -progressive -restart 17 -grayscale test.tga >q1r17.jpg }}} Please decode attached samples with ffmpeg and djpeg. The output from djpeg looks less blocky The problem is most visible with q1r17.jpg when we compare output from ffmpeg and djpeg. This is related to restart option, for example there is no problem while decoding: {{{ cjpeg -targa -quality 1 -progressive -restart 0 -grayscale test.tga >q1r0.jpg }}} with ffmpeg (ffmpeg and djpeg output matches). {{{ C:\>ffmpeg -i q1r17.jpg out.bmp ffmpeg version N-48239-g69db85c Copyright (c) 2000-2012 the FFmpeg developers built on Dec 28 2012 02:20:50 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 12.100 / 52. 12.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.102 / 54. 50.102 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.101 / 3. 30.101 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'q1r17.jpg': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: mjpeg, gray, 1024x768 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Output #0, image2, to 'out.bmp': Metadata: encoder : Lavf54.50.102 Stream #0:0: Video: bmp, gray, 1024x768 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> bmp) Press [q] to stop, [?] for help frame= 1 fps=0.0 q=0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A video:769kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.002794% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:32:23 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:32:23 -0000 Subject: [FFmpeg-trac] #228(FFserver:new): FFserver: reordering of ""s in config file makes difference In-Reply-To: <034.483826ed2380430390d2402e1c248439@avcodec.org> References: <034.483826ed2380430390d2402e1c248439@avcodec.org> Message-ID: <049.645069aaa95eeb06aae8fef85212bd85@avcodec.org> #228: FFserver: reordering of ""s in config file makes difference -----------------------------------+------------------------------------ Reporter: burek | Owner: baptiste Type: defect | Status: new Priority: important | Component: FFserver Version: git | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+------------------------------------ Comment (by burek): This ticket was created 20 months ago.. Unfortunately, I don't have the same environment as I had back then, so I can't (easily) check what you ask :( Sorry about that.. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:42:53 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:42:53 -0000 Subject: [FFmpeg-trac] #1802(undetermined:new): Segmentation fault with ffserver In-Reply-To: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> References: <034.38a56ddcd6aa0064aec41c17e17a64af@avcodec.org> Message-ID: <049.f79ff5bb9114c4ac630211a840aaacfb@avcodec.org> #1802: Segmentation fault with ffserver -------------------------------------+------------------------------------- Reporter: burek | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by burek): Same thing here :( I don't have a free machine to test this now. We'll have to wait until we get a new machine, which I can setup for testing, to be able to check this with the latest git version.. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:47:21 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:47:21 -0000 Subject: [FFmpeg-trac] #228(FFserver:new): FFserver: reordering of ""s in config file makes difference In-Reply-To: <034.483826ed2380430390d2402e1c248439@avcodec.org> References: <034.483826ed2380430390d2402e1c248439@avcodec.org> Message-ID: <049.e1c047b32a4b51d6ca27d92357c3aedb@avcodec.org> #228: FFserver: reordering of ""s in config file makes difference -----------------------------------+------------------------------------ Reporter: burek | Owner: baptiste Type: defect | Status: new Priority: important | Component: FFserver Version: git | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+------------------------------------ Comment (by cehoyos): What about this ticket is environment-specific? My problem is simply that I don't know what to do with the conf-files... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:49:34 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:49:34 -0000 Subject: [FFmpeg-trac] #2082(avcodec:open): mjpeg: low quality + restart (and grayscale) = lower quality than libjpeg In-Reply-To: <038.0151cdc595402fc19d185313c849d710@avcodec.org> References: <038.0151cdc595402fc19d185313c849d710@avcodec.org> Message-ID: <053.7cf1c945ea782caf5ef8c19c499c8e8e@avcodec.org> #2082: mjpeg: low quality + restart (and grayscale) = lower quality than libjpeg ------------------------------------+----------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: mjpeg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => mjpeg * status: new => open * version: unspecified => git-master * component: undetermined => avcodec * reproduced: 0 => 1 Comment: Reproducible with ImageMagick. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 16:50:59 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 15:50:59 -0000 Subject: [FFmpeg-trac] #2033(undetermined:closed): Regression creating images in ffmpeg 1.0 In-Reply-To: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> References: <038.2b0405e161af300eb1fec7fa90a82e1d@avcodec.org> Message-ID: <053.cafebe1eec38a485d2365ab4b2443985@avcodec.org> #2033: Regression creating images in ffmpeg 1.0 -------------------------------------+------------------------------------- Reporter: doublemax | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: h264 | Resolution: Blocking: | needs_more_info Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => h264 * status: new => closed * resolution: => needs_more_info Comment: Thank you for clarifying. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 18:54:27 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 17:54:27 -0000 Subject: [FFmpeg-trac] #2051(undetermined:closed): Video merging sinking issue In-Reply-To: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> References: <036.b34cffc4d1ebee9f03c0624c944299e1@avcodec.org> Message-ID: <051.044f9bd105cfdddc73217346c8cbab81@avcodec.org> #2051: Video merging sinking issue -------------------------------------+------------------------------------- Reporter: elbysam | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: async flv | Resolution: duplicate nellymoser | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Here is another alternative (using the concat filter) that allows to concatenate the files and keep A/V sync (thanks to Cl?ment B?sch for the example): {{{ $ ffmpeg -i TestOrginal1.flv -i TestOrginal2.flv -filter_complex '[0:0][0:1][1:0][1:1]concat=v=1:a=1[v],aresample=async=1[a]' -map [v] -map [a] -qscale 2 outfilter.avi }}} Or an equivalent shorter command line: {{{ $ ffmpeg -i TestOrginal1.flv -i TestOrginal2.flv -filter_complex 'concat=a=1[v],aresample=async=1' -map [v] -qscale 2 outfiltershort.avi }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 19:08:20 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 18:08:20 -0000 Subject: [FFmpeg-trac] #2048(avcodec:closed): reproducible crash on some subtitles in ff_ass_split_override_codes() In-Reply-To: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> References: <035.7ac846b9a2a71d51d4e8afe891a40de4@avcodec.org> Message-ID: <050.70c47849f0a30092752be0c22f582883@avcodec.org> #2048: reproducible crash on some subtitles in ff_ass_split_override_codes() -------------------------------------+------------------------------------- Reporter: julian | Owner: ubitux Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: ass crash | Blocked By: SIGSEGV | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by julian): thanks i can confirm the bug to be fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 19:40:11 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 18:40:11 -0000 Subject: [FFmpeg-trac] #2083(FFmpeg:new): 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata Message-ID: <034.bf56511c736e5d8e625644572649a906@avcodec.org> #2083: 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata -------------------------------------+------------------------------------- Reporter: rtmi1 | Type: defect Status: new | Priority: minor Component: FFmpeg | Version: Keywords: ffmpeg, | unspecified metadata, mimetype, subtitles | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: Trying to copy streams plus a TTF font file to support hardware players that need an embedded font for subtitles. * 1 video stream from MtStHel.mkv (This file only contains 1 video stream and was previously created with ffmpeg) * 3 audio streams from MtStHel-eng-1-normalized.mp2, MtStHel- ger-2-normalized.mp2 and MtStHel-eng-3-normalized.mp2 (Each file only contains * 1 audio track and was also previously created with ffmpeg) * 2 subtitle streams from MtStHel-en-subtitles.sub and MtStHel-de- subtitles.sub (Each file created with the 'mencoder -vobsubout ...' command) * 1 attachment: a TrueType font file 'tahoma.ttf', 383804 bytes, tagged as 'mimetype=application/x-truetype-font' as described in 'http://ffmpeg.org/ffmpeg.html'. ffmpeg quits with an "Attachment stream 6 has no mimetype tag" and finally an "Invalid argument" message. No output is produced. Changing the mimetype to "application/octet-stream" or "application/x -font-ttf gives the same result. Omitting the attachment gives a correct result, until it comes to the hardware player mentioned: That player lists the 2 subtitle streams, but can not display them (no text on the screen). Hardware: MSI Movie Station HD1000 How to reproduce: {{{ martin at pc003:/media/Work> ffmpeg -copyts -i MtStHel.mkv -i MtStHel- eng-1-normalized.mp2 -i MtStHel-ger-2-normalized.mp2 -i MtStHel- eng-3-normalized.mp2 -i MtStHel-en-subtitles.sub -i MtStHel-de- subtitles.sub -map 0:0 -c:v copy -map 1:0 -c:a copy -metadata:s:a:0 language=eng -map 2:0 -c:a copy -metadata:s:a:1 language=ger -map 3:0 -c:a copy -metadata:s:a:2 language=eng -map 4:0 -c:s copy -metadata:s:s:0 language=eng -map 5:0 -c:s copy -metadata:s:s:1 language=ger -attach tahoma.ttf -metadata:s:0 mimetype=application/x-truetype-font -f matroska MtStHel-ffmpeg.mkv ffmpeg version 1.0.1 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 22:10:12 with gcc 4.6 (SUSE Linux) configuration: --shlibdir=/usr/lib --prefix=/usr --mandir=/usr/share/man --libdir=/usr/lib --enable-shared --disable-static --enable-debug --disable-stripping --extra-cflags='-fomit-frame-pointer -fmessage- length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gsm' --enable-gpl --enable-x11grab --enable-version3 --enable-pthreads --enable-avfilter --enable-libpulse --enable-libvpx --enable-libopus --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libxvid --enable-libx264 --enable- libschroedinger --enable-libgsm --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-postproc --enable-libdc1394 --enable-librtmp --enable-libfreetype --enable-avresample libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 Input #0, matroska,webm, from 'MtStHel.mkv': Metadata: ENCODER : Lavf54.29.104 Duration: 01:48:34.64, start: 0.000000, bitrate: 1225 kb/s Stream #0:0: Video: h264 (High), yuv420p, 716x422 [SAR 64:45 DAR 22912:9495], SAR 209:147 DAR 74822:31017, 25 fps, 25 tbr, 1k tbn, 50 tbc (default) [mp3 @ 0x8082540] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x8082540] Estimating duration from bitrate, this may be inaccurate Input #1, mp3, from 'MtStHel-eng-1-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #1:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s [mp3 @ 0x813da40] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x813da40] Estimating duration from bitrate, this may be inaccurate Input #2, mp3, from 'MtStHel-ger-2-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #2:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s [mp3 @ 0x8078d60] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x8078d60] Estimating duration from bitrate, this may be inaccurate Input #3, mp3, from 'MtStHel-eng-3-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #3:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s Input #4, mpeg, from 'MtStHel-en-subtitles.sub': Duration: 01:42:48.00, start: 50.760000, bitrate: 8 kb/s Stream #4:0[0x20]: Subtitle: dvd_subtitle Input #5, mpeg, from 'MtStHel-de-subtitles.sub': Duration: 01:47:40.68, start: 50.760000, bitrate: 8 kb/s Stream #5:0[0x21]: Subtitle: dvd_subtitle File 'MtStHel-ffmpeg.mkv' already exists. Overwrite ? [y/N] y Attachment stream 6 has no mimetype tag and it cannot be deduced from the codec id. Output #0, matroska, to 'MtStHel-ffmpeg.mkv': Metadata: encoder : Lavf54.29.104 Stream #0:0: Video: h264, yuv420p, 716x422 [SAR 209:147 DAR 74822:31017], q=2-31, 25 fps, 1k tbn, 1k tbc (default) Metadata: mimetype : application/x-truetype-font Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:2(ger): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:3(eng): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:4(eng): Subtitle: dvd_subtitle Stream #0:5(ger): Subtitle: dvd_subtitle Stream #0:6: Attachment: none Metadata: filename : tahoma.ttf Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #1:0 -> #0:1 (copy) Stream #2:0 -> #0:2 (copy) Stream #3:0 -> #0:3 (copy) Stream #4:0 -> #0:4 (copy) Stream #5:0 -> #0:5 (copy) File tahoma.ttf -> Stream #0:6 Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument martin at pc003:/media/Work> }}} [[br]] [[br]] When I use '-metadata:s:t:0' instead of '-metadata:s:0' to specify that only the attachment is to be tagged, then ffmpeg issues a different error: {{{ martin at pc003:/media/Work> ffmpeg -copyts -i MtStHel.mkv -i MtStHel- eng-1-normalized.mp2 -i MtStHel-ger-2-normalized.mp2 -i MtStHel- eng-3-normalized.mp2 -i MtStHel-en-subtitles.sub -i MtStHel-de- subtitles.sub -map 0:0 -c:v copy -map 1:0 -c:a copy -metadata:s:a:0 language=eng -map 2:0 -c:a copy -metadata:s:a:1 language=ger -map 3:0 -c:a copy -metadata:s:a:2 language=eng -map 4:0 -c:s copy -metadata:s:s:0 language=eng -map 5:0 -c:s copy -metadata:s:s:1 language=ger -attach tahoma.ttf -metadata:s:t:0 mimetype=application/x-truetype-font -f matroska MtStHel-ffmpeg.mkv ffmpeg version 1.0.1 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 11 2012 22:10:12 with gcc 4.6 (SUSE Linux) configuration: --shlibdir=/usr/lib --prefix=/usr --mandir=/usr/share/man --libdir=/usr/lib --enable-shared --disable-static --enable-debug --disable-stripping --extra-cflags='-fomit-frame-pointer -fmessage- length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gsm' --enable-gpl --enable-x11grab --enable-version3 --enable-pthreads --enable-avfilter --enable-libpulse --enable-libvpx --enable-libopus --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libxvid --enable-libx264 --enable- libschroedinger --enable-libgsm --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-postproc --enable-libdc1394 --enable-librtmp --enable-libfreetype --enable-avresample libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 Input #0, matroska,webm, from 'MtStHel.mkv': Metadata: ENCODER : Lavf54.29.104 Duration: 01:48:34.64, start: 0.000000, bitrate: 1225 kb/s Stream #0:0: Video: h264 (High), yuv420p, 716x422 [SAR 64:45 DAR 22912:9495], SAR 209:147 DAR 74822:31017, 25 fps, 25 tbr, 1k tbn, 50 tbc (default) [mp3 @ 0x8082540] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x8082540] Estimating duration from bitrate, this may be inaccurate Input #1, mp3, from 'MtStHel-eng-1-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #1:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s [mp3 @ 0x813da40] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x813da40] Estimating duration from bitrate, this may be inaccurate Input #2, mp3, from 'MtStHel-ger-2-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #2:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s [mp3 @ 0x8078d60] max_analyze_duration 5000000 reached at 5016000 [mp3 @ 0x8078d60] Estimating duration from bitrate, this may be inaccurate Input #3, mp3, from 'MtStHel-eng-3-normalized.mp2': Duration: 01:48:34.60, start: 0.000000, bitrate: 192 kb/s Stream #3:0: Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s Input #4, mpeg, from 'MtStHel-en-subtitles.sub': Duration: 01:42:48.00, start: 50.760000, bitrate: 8 kb/s Stream #4:0[0x20]: Subtitle: dvd_subtitle Input #5, mpeg, from 'MtStHel-de-subtitles.sub': Duration: 01:47:40.68, start: 50.760000, bitrate: 8 kb/s Stream #5:0[0x21]: Subtitle: dvd_subtitle File 'MtStHel-ffmpeg.mkv' already exists. Overwrite ? [y/N] y Output #0, matroska, to 'MtStHel-ffmpeg.mkv': Metadata: encoder : Lavf54.29.104 Stream #0:0: Video: h264, yuv420p, 716x422 [SAR 209:147 DAR 74822:31017], q=2-31, 25 fps, 1k tbn, 1k tbc (default) Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:2(ger): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:3(eng): Audio: mp2, 48000 Hz, stereo, 192 kb/s Stream #0:4(eng): Subtitle: dvd_subtitle Stream #0:5(ger): Subtitle: dvd_subtitle Stream #0:6: Attachment: none Metadata: filename : tahoma.ttf mimetype : application/x-truetype-font Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #1:0 -> #0:1 (copy) Stream #2:0 -> #0:2 (copy) Stream #3:0 -> #0:3 (copy) Stream #4:0 -> #0:4 (copy) Stream #5:0 -> #0:5 (copy) File tahoma.ttf -> Stream #0:6 Press [q] to stop, [?] for help Assertion ost->source_index >= 0 failed at ffmpeg.c:2932 Aborted martin at pc003:/media/Work> }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 20:36:58 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 19:36:58 -0000 Subject: [FFmpeg-trac] #2083(undetermined:new): 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata In-Reply-To: <034.bf56511c736e5d8e625644572649a906@avcodec.org> References: <034.bf56511c736e5d8e625644572649a906@avcodec.org> Message-ID: <049.01669c98a8541a7015169e9ac46a6e08@avcodec.org> #2083: 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata -------------------------------------+------------------------------------- Reporter: rtmi1 | Owner: Type: defect | Status: new Priority: minor | Component: Version: unspecified | undetermined Keywords: mkv | Resolution: metadata | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: ffmpeg, metadata, mimetype, subtitles => mkv metadata * component: FFmpeg => undetermined Comment: Is this also reproducible with current git head? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 20:53:13 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 19:53:13 -0000 Subject: [FFmpeg-trac] #1457(avcodec:new): Add support for libshine-fxp fixed point math MP3 encoder In-Reply-To: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> References: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> Message-ID: <051.bdce93ca7d56482bf00e55b7ac9c1cda@avcodec.org> #1457: Add support for libshine-fxp fixed point math MP3 encoder -------------------------------------+----------------------------------- Reporter: patters | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by patters): Actually I could be wrong about issues - have recompiled without libshine using the exact same method and it's still a problem, however and earlier static compile of the same source is fine. Can you post a link to your fork on Github? I don't understand how I would find it. Thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 20:57:56 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 19:57:56 -0000 Subject: [FFmpeg-trac] #1457(avcodec:new): Add support for libshine-fxp fixed point math MP3 encoder In-Reply-To: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> References: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> Message-ID: <051.f630dc8b5f808c04676672492372b539@avcodec.org> #1457: Add support for libshine-fxp fixed point math MP3 encoder -------------------------------------+----------------------------------- Reporter: patters | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by richardpl): https://github.com/richardpl/ffmpeg/tree/shine It is already listed on FFmpeg download page. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 21:07:43 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 20:07:43 -0000 Subject: [FFmpeg-trac] #2084(undetermined:new): Wrong duration and negative bitrate in mpeg stream with timestamp discontinuity Message-ID: <036.6b4fbd4039eb1f699aec330c86fb8a8f@avcodec.org> #2084: Wrong duration and negative bitrate in mpeg stream with timestamp discontinuity -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: Version: git- | undetermined master | Keywords: mpegps Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- A user provided a 2.9 G DVD rip that shows a duration of "00:00:01.06" and a bitrate of "-2147483 kb/s" with ffmpeg -i. The reason is a timestamp discontinuity approximately 1 sec before the end of the stream. I cut the sample to only contain the last seconds, and the duration is also wrong, the bitrate is shown as 0kb/s. {{{ $ ffmpeg -i negative-bitrate-sample.mpg ffmpeg version N-48311-gc36302a Copyright (c) 2000-2012 the FFmpeg developers built on Dec 30 2012 19:01:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-avresample libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg @ 0x1ed7540] max_analyze_duration 5000000 reached at 5000000 Input #0, mpeg, from 'negative-bitrate-sample.mpg': Duration: 00:00:01.06, start: 0.287267, bitrate: -2147483 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:2[0x23]: Subtitle: dvd_subtitle At least one output file must be specified }}} {{{ $ ffmpeg -probesize 2147483647 -analyzeduration 2147483647 -i ../MPlayer /negative-bitrate-sample.mpg ffmpeg version N-48311-gc36302a Copyright (c) 2000-2012 the FFmpeg developers built on Dec 30 2012 19:01:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-avresample libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg @ 0x17c0720] max_analyze_duration 2147483647 reached at 2147520000 Input #0, mpeg, from '../MPlayer/negative-bitrate-sample.mpg': Duration: 00:00:01.06, start: 0.287267, bitrate: -2147483 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:2[0x23]: Subtitle: dvd_subtitle Stream #0:3[0x21]: Subtitle: dvd_subtitle Stream #0:4[0x20]: Subtitle: dvd_subtitle Stream #0:5[0x22]: Subtitle: dvd_subtitle At least one output file must be specified }}} {{{ $ ffmpeg -i negative-bitrate-sample_cut.mpg ffmpeg version N-48311-gc36302a Copyright (c) 2000-2012 the FFmpeg developers built on Dec 30 2012 19:01:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-avresample libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [mpeg2video @ 0x2b72f80] mpeg_decode_postinit() failure Last message repeated 4 times [mpeg @ 0x2b6c540] DTS discontinuity in stream 1: packet 76 with DTS 343638654, packet 77 with DTS 8589956846 [mpeg @ 0x2b6c540] DTS discontinuity in stream 0: packet 104 with DTS 343641534, packet 105 with DTS 8589960446 Input #0, mpeg, from 'negative-bitrate-sample_cut.mpg': Duration: 25:27:10.12, start: 3814.943267, bitrate: 0 kb/s Stream #0:0[0x80]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x20]: Subtitle: dvd_subtitle Stream #0:3[0x21]: Subtitle: dvd_subtitle Stream #0:4[0x22]: Subtitle: dvd_subtitle Stream #0:5[0x23]: Subtitle: dvd_subtitle At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 21:30:24 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 20:30:24 -0000 Subject: [FFmpeg-trac] #2080(undetermined:new): Conversion of some .wtv files to .mpg produces unplayable file In-Reply-To: <037.acd173f116bb11095bbbc6760f7a4b2c@avcodec.org> References: <037.acd173f116bb11095bbbc6760f7a4b2c@avcodec.org> Message-ID: <052.1a02dc40e11b2faf595653ca38d9fdaf@avcodec.org> #2080: Conversion of some .wtv files to .mpg produces unplayable file -------------------------------------+------------------------------------- Reporter: peterdeg | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by peterdeg): Hope the files are readable. wtv_file_fails_convert_to_mpg* Apologies for the size, I did truncate them to 10MB but something went wrong somewhere and I managed to start uploading the full file (twice) Hopefully, what I have uploaded is useable -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 21:40:16 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 20:40:16 -0000 Subject: [FFmpeg-trac] #2085(FFmpeg:new): MP4 remux with playback stuck at 2nd seconds Message-ID: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -----------------------------------+---------------------------------- Reporter: mikhailov | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: 1.0.1 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -----------------------------------+---------------------------------- Summary of the bug: We use FLV captured stream from webcam (using application build for Flash Player), h264 comes direct from the flash, but audio stream '''Speex''' should be encoded to '''AAC''' to make the streams compatible with mobile devices '''h264 (Baseline) + AAC'''. Video stream should not be encoded again, so we use the copy method, like the following: {{{ ffmpeg -i input.flv -c:v copy -c:a libvo_aacenc output.mp4 }}} The resulted '''MP4''' video files plays back well on Flash Player 11.4+ and iPhone/iPad with iOS 5+ (Baseline compatible video stream). but on Android devices and Flash Player 11.1/11.2 the playback freezes at 2-3 seconds. We also use qt-faststart, but it doesn't affect on stuck problem. Stdout of ffmpeg encoding script: {{{ ffmpeg version 1.0 Copyright (c) 2000-2012 the FFmpeg developers built on Nov 17 2012 23:45:34 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) configuration: --prefix=/usr/local/Cellar/ffmpeg/1.0 --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libvo-aacenc --enable-libspeex libavutil 51. 73.101 / 51. 73.101 libavcodec 54. 59.100 / 54. 59.100 libavformat 54. 29.104 / 54. 29.104 libavdevice 54. 2.101 / 54. 2.101 libavfilter 3. 17.100 / 3. 17.100 libswscale 2. 1.101 / 2. 1.101 libswresample 0. 15.100 / 0. 15.100 libpostproc 52. 0.100 / 52. 0.100 [libspeex @ 0x7fabb902ea00] Missing Speex header, assuming defaults. Guessed Channel Layout for Input Stream #0.1 : mono Input #0, flv, from '1.flv': Metadata: creationdate : Thu Nov 22 09:46:36 duration2 : 29964 Duration: 00:00:30.25, start: 0.000000, bitrate: 212 kb/s Stream #0:0: Video: h264 (Baseline), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 20 tbr, 1k tbn, 40 tbc Stream #0:1: Audio: speex, 16000 Hz, mono, s16 File '1.mp4' already exists. Overwrite ? [y/N] y Missing Speex header, assuming defaults. Output #0, mp4, to '1.mp4': Metadata: creationdate : Thu Nov 22 09:46:36 duration2 : 29964 encoder : Lavf54.29.104 Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 640x480 [SAR 1:1 DAR 4:3], q=2-31, 1k tbn, 1k tbc Stream #0:1: Audio: aac ([64][0][0][0] / 0x0040), 16000 Hz, mono, s16, 96 kb/s Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (libspeex -> libvo_aacenc) Press [q] to stop, [?] for help [mp4 @ 0x7fabb9012800] st:0 PTS: 2139 DTS: 2139 < 2140 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 2722 DTS: 2722 < 2723 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 5440 DTS: 5440 < 5441 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 8105 DTS: 8105 < 8106 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 10772 DTS: 10772 < 10773 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 13456 DTS: 13456 < 13457 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 16127 DTS: 16127 < 16128 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 18835 DTS: 18835 < 18836 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 21675 DTS: 21675 < 21676 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 24476 DTS: 24476 < 24477 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 27283 DTS: 27283 < 27284 invalid, clipping [mp4 @ 0x7fabb9012800] st:0 PTS: 30079 DTS: 30079 < 30080 invalid, clipping frame= 454 fps=0.0 q=-1.0 Lsize= 978kB time=00:00:30.31 bitrate= 264.4kbits/s video:620kB audio:346kB subtitle:0 global headers:0kB muxing overhead 1.170369% }}} I tried different versions of ffmpeg (0.10, 0.11, 1.0, 1.01) compiled with mandatory '''--with-libvo-aacenc --with-speex''', but the problem still not resolved. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 22:03:16 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 21:03:16 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.8323cf3ed8dd90177b4f0dfc71a7119c@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mov * component: FFmpeg => undetermined Comment: Are you sure you are reporting this on the right bug tracker? Please test current git head. Is this only reproducible with -acodec libvo_aacenc or also with -acodec libfaac and -strict -2 -acodec aac? What about -an? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 22:05:32 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 21:05:32 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.f37b81f38accb2da33b46786d3b6349e@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by mikhailov): I would be happy if you can advice me another right ffmpeg tracker. Yes, I tried multiple audio codecs and even delete audio stream while remuxing (-an), the result is the same. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 30 23:19:46 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 22:19:46 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.58d8a583323b9f8545d1def85a2c1240@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:2 mikhailov]: > I would be happy if you can advice me another right ffmpeg bug tracker. I meant if the video plays on an iPhone but not on Android devices, this may indicate that the problem can only be fixed on the Android devices. Please test current git head and -an (and post console output). If the resulting video is not played, I wonder if this wouldn't indicate that the bitrate (level) of the stream is too high. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 00:17:36 2012 From: trac at avcodec.org (FFmpeg) Date: Sun, 30 Dec 2012 23:17:36 -0000 Subject: [FFmpeg-trac] #1457(avcodec:new): Add support for libshine-fxp fixed point math MP3 encoder In-Reply-To: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> References: <036.cb84a3488095c0840ac9a8d60ec442b3@avcodec.org> Message-ID: <051.23a7c886c9bd6f9875aee10ffebb083a@avcodec.org> #1457: Add support for libshine-fxp fixed point math MP3 encoder -------------------------------------+----------------------------------- Reporter: patters | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by patters): Crumbs. Over 3 hours of painstaking testing before I realised that the cross toolchain Synology supply for their ARM NAS products is the problem. :( Compiled natively on a bootstrapped ARM system and it's fine. Cheers for the link - built using your latest wrapper code. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 02:06:32 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 01:06:32 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.f1d29c0ac709da4a8fc4f2faba5261c1@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): Yes it does contain subtitles in this sample test-wtv.wtv -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 02:22:37 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 01:22:37 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.285823e7a26ade74332ed0ca1cdcc2c0@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by cehoyos): Replying to [comment:5 ramitbhalla]: > Yes it does contain subtitles in this sample test-wtv.wtv How can I see them? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 02:32:35 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 01:32:35 -0000 Subject: [FFmpeg-trac] #2086(undetermined:new): Teletext subtitles Message-ID: <036.59e1c5656cfaff6e09921817a5660c2a@avcodec.org> #2086: Teletext subtitles -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: | Status: new enhancement | Component: Priority: wish | undetermined Version: git- | Keywords: teletext master | Blocking: Blocked By: | Analyzed by developer: 0 Reproduced by developer: 0 | -------------------------------------+------------------------------------- I will upload a sample with two teletext subtitle streams (on pages 777 and 778). They can be viewed with the following MPlayer command lines (use "X" and "Q" to switch to the appropriate subtitle pages): $ mplayer teletextsubtitles.ts -demuxer mpegts -sid 106 $ mplayer teletextsubtitles.ts -demuxer lavf -sid 0 FFmpeg cannot decode the subtitles. {{{ $ ffmpeg -i teletextsubtitles.ts ffmpeg version N-48311-gc36302a Copyright (c) 2000-2012 the FFmpeg developers built on Dec 30 2012 19:01:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 81.100 / 54. 81.100 libavformat 54. 50.104 / 54. 50.104 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS referenced [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] no frame! [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS referenced [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] no frame! [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS referenced [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] no frame! [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS referenced [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] no frame! [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS referenced [h264 @ 0x346e460] non-existing SPS 0 referenced in buffering period [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] non-existing PPS 0 referenced [h264 @ 0x346e460] decode_slice_header error [h264 @ 0x346e460] no frame! [mpegts @ 0x346a540] Stream #3: not enough frames to estimate rate; consider increasing probesize [NULL @ 0x34701e0] start time is not set in estimate_timings_from_pts [mpegts @ 0x346a540] PES packet size mismatch Last message repeated 1 times Input #0, mpegts, from 'teletextsubtitles.ts': Duration: 00:00:55.32, start: 0.091256, bitrate: 14610 kb/s Program 137 Stream #0:0[0x30]: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x40](ita): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:2[0x41](und): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:3[0x6a](ita): Subtitle: dvb_teletext ([6][0][0][0] / 0x0006) At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 02:33:26 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 01:33:26 -0000 Subject: [FFmpeg-trac] #2086(undetermined:new): Teletext subtitles In-Reply-To: <036.59e1c5656cfaff6e09921817a5660c2a@avcodec.org> References: <036.59e1c5656cfaff6e09921817a5660c2a@avcodec.org> Message-ID: <051.048136b8b38961297d0e41782c9759e5@avcodec.org> #2086: Teletext subtitles -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: git-master | undetermined Keywords: teletext | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Sample uploaded to http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket2086/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 03:05:51 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 02:05:51 -0000 Subject: [FFmpeg-trac] #1626(avformat:closed): Initial seek in transport stream with timestamp wrap fails In-Reply-To: <036.0baf4476bb956f89ccbfb4c1842aabe1@avcodec.org> References: <036.0baf4476bb956f89ccbfb4c1842aabe1@avcodec.org> Message-ID: <051.6f641ff9d31330b5138e847be007cd01@avcodec.org> #1626: Initial seek in transport stream with timestamp wrap fails ------------------------------------+------------------------------------ Reporter: cehoyos | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: mpegts | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => closed * resolution: => fixed * component: undetermined => avformat Comment: Seeking works fine now with -correct_ts_overflow 1 (which is the default) due to a patch by Harald Axmann. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 05:00:30 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 04:00:30 -0000 Subject: [FFmpeg-trac] #2055(avformat:open): FFMPEG unable to copy attachment metadata in WTV files In-Reply-To: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> References: <040.2ecad8bde83415e9e86ddf85c0329fda@avcodec.org> Message-ID: <055.417c281e095fd665fc297b5f01df15fb@avcodec.org> #2055: FFMPEG unable to copy attachment metadata in WTV files -------------------------------------+------------------------------------ Reporter: ramitbhalla | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: wtv | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by ramitbhalla): I see them in Windows Media Center. Open the file in Windows MEdia Center, when playing, right click and Select Captions. It will give you 3 options, Off, CC1 and CC2. Select CC1 and the subs will show up. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 10:42:16 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 09:42:16 -0000 Subject: [FFmpeg-trac] #1783(undetermined:new): libavutil contains file with the same name as a system header In-Reply-To: <037.7af1de392c636bec239229dbf8061c49@avcodec.org> References: <037.7af1de392c636bec239229dbf8061c49@avcodec.org> Message-ID: <052.10023f84da059c1cdd1f0fb5ac576541@avcodec.org> #1783: libavutil contains file with the same name as a system header -------------------------------------+------------------------------------- Reporter: obucinac | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Granjow): If someone else finds error messages like those and uses CMake for finding ffmpeg (which automatically returns an absolute path): In file included from /data/cworkspace/phenoCam/src/lib/videoTools/avi- timeextract.h:17:0, from /data/cworkspace/phenoCam/src/lib/videoTools/avi- timeextract.cpp:12: /usr/include/c++/4.7/ctime:62:11: error: ?::clock_t? has not been declared /usr/include/c++/4.7/ctime:63:11: error: ?::time_t? has not been declared /usr/include/c++/4.7/ctime:66:11: error: ?::clock? has not been declared /usr/include/c++/4.7/ctime:67:11: error: ?::difftime? has not been declared /usr/include/c++/4.7/ctime:68:11: error: ?::mktime? has not been declared /usr/include/c++/4.7/ctime:69:11: error: ?::time? has not been declared /usr/include/c++/4.7/ctime:70:11: error: ?::asctime? has not been declared /usr/include/c++/4.7/ctime:71:11: error: ?::ctime? has not been declared /usr/include/c++/4.7/ctime:72:11: error: ?::gmtime? has not been declared /usr/include/c++/4.7/ctime:73:11: error: ?::localtime? has not been declared /usr/include/c++/4.7/ctime:74:11: error: ?::strftime? has not been declared Use something like this to correct the path: string(REPLACE "/usr/include/" "" FFMPEG_INCLUDE_DIR "${FFMPEG_INCLUDE_DIR}") (Ugly hack but works) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 11:05:00 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 10:05:00 -0000 Subject: [FFmpeg-trac] #2086(avcodec:open): Teletext subtitles In-Reply-To: <036.59e1c5656cfaff6e09921817a5660c2a@avcodec.org> References: <036.59e1c5656cfaff6e09921817a5660c2a@avcodec.org> Message-ID: <051.9234d5e3291ee124e0ae4c78e6fecdbc@avcodec.org> #2086: Teletext subtitles -------------------------------------+----------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: open Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: teletext | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * status: new => open * component: undetermined => avcodec -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 12:44:08 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 11:44:08 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.bde2f3af9d3109951594bf9f4568fdb0@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by mikhailov): test file with FLV container (h264 + Speex) http://yadi.sk/d/75d7DWh01YPxf -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 12:55:02 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 11:55:02 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.f4939d0b892ab4e761bf2a8e52afa625@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Please run "ffmpeg -i 302_1991_7668.flv -vcodec copy -an out.mp4" using current git head and test the resulting file on your Android device. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 12:57:39 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 11:57:39 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.d31d2ec1413e5ff015225254eb95c085@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by mikhailov): yes, I'll fetch git HEAD, compile ffmpeg and perform the encoding with it very soon -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 13:42:54 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 12:42:54 -0000 Subject: [FFmpeg-trac] #2083(FFmpeg:open): 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata In-Reply-To: <034.bf56511c736e5d8e625644572649a906@avcodec.org> References: <034.bf56511c736e5d8e625644572649a906@avcodec.org> Message-ID: <049.5332f62493dd3e1fe6607530901bb9d2@avcodec.org> #2083: 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata -------------------------------------+------------------------------------- Reporter: rtmi1 | Owner: Type: defect | Status: open Priority: important | Component: FFmpeg Version: git-master | Resolution: Keywords: crash abort | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * component: undetermined => FFmpeg * priority: minor => important * version: unspecified => git-master * keywords: mkv metadata => crash abort regression Comment: Regression since 1cadab6 (crash in select_input_file() in ffmpeg.c) / 429c6ca (assert). {{{ $ ffmpeg -i tests/lena.pnm -attach /usr/share/fonts/truetype/DejaVuSans.ttf -metadata:s mimetype=application/x-truetype-font out.mkv ffmpeg version N-48332-gfe5a2fc Copyright (c) 2000-2012 the FFmpeg developers built on Dec 31 2012 03:12:02 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --disable-indev=jack libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 85.100 / 54. 85.100 libavformat 54. 57.100 / 54. 57.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, image2, from 'tests/lena.pnm': Duration: 00:00:00.04, start: 0.000000, bitrate: N/A Stream #0:0: Video: ppm, rgb24, 256x256, 25 tbr, 25 tbn, 25 tbc Output #0, matroska, to 'out.mkv': Metadata: encoder : Lavf54.57.100 Stream #0:0: Video: mpeg4, yuv420p, 256x256, q=2-31, 200 kb/s, 1k tbn, 25 tbc Metadata: mimetype : application/x-truetype-font Stream #0:1: Attachment: none Metadata: filename : DejaVuSans.ttf mimetype : application/x-truetype-font Stream mapping: Stream #0:0 -> #0:0 (ppm -> mpeg4) File /usr/share/fonts/truetype/DejaVuSans.ttf -> Stream #0:1 Press [q] to stop, [?] for help Assertion ost->source_index >= 0 failed at ffmpeg.c:2976 Aborted }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 14:27:32 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 13:27:32 -0000 Subject: [FFmpeg-trac] #2085(undetermined:new): MP4 remux with playback stuck at 2nd seconds In-Reply-To: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> References: <038.489214dbfac1a46bf197075d06c51f4c@avcodec.org> Message-ID: <053.5aa2b155c146248fde009abcc2991fe6@avcodec.org> #2085: MP4 remux with playback stuck at 2nd seconds -------------------------------------+------------------------------------- Reporter: mikhailov | Owner: Type: defect | Status: new Priority: normal | Component: Version: 1.0.1 | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by mikhailov): I've got the git HEAD: {{{ git clone --depth=1 git://source.ffmpeg.org/ffmpeg.git ./configure --enable-gpl --enable-libx264 --enable-libmp3lame --enable- nonfree --enable-libvo-aacenc --enable-libspeex --enable-version3 make }}} then tried to remux the container: {{{ ffmpeg -i 1.flv -vcodec copy -an out.mp4 }}} the result the same: playback fine on OS X and iPhone/iPad, but stuck on 2sec. when you try to playback on Flash (flowplayer) or Android: http://yadi.sk/d/YQux1bCq1YVJV {{{ ffmpeg -i 1.flv -vcodec copy -an out.mp4 ffmpeg version git-2012-12-31-9827528 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 31 2012 13:16:36 with llvm-gcc 4.2.1 (LLVM build 2336.11.00) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libvo-aacenc --enable-libspeex --enable-version3 libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 85.100 / 54. 85.100 libavformat 54. 58.100 / 54. 58.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, flv, from '1.flv': Metadata: creationdate : Thu Nov 22 09:46:36 duration2 : 29964 Duration: 00:00:30.25, start: 0.000000, bitrate: 212 kb/s Stream #0:0: Video: h264 (Baseline), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 20 tbr, 1k tbn, 40 tbc Stream #0:1: Audio: speex, 16000 Hz, mono, s16 Output #0, mp4, to 'out.mp4': Metadata: creationdate : Thu Nov 22 09:46:36 duration2 : 29964 encoder : Lavf54.58.100 Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv420p, 640x480 [SAR 1:1 DAR 4:3], q=2-31, 16k tbn, 1k tbc Stream mapping: Stream #0:0 -> #0:0 (copy) Press [q] to stop, [?] for help [mp4 @ 0x7f9d13837600] st:0 PTS: 34224 DTS: 34224 < 34225 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 43552 DTS: 43552 < 43553 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 87040 DTS: 87040 < 87041 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 129680 DTS: 129680 < 129681 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 172352 DTS: 172352 < 172353 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 215296 DTS: 215296 < 215297 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 258032 DTS: 258032 < 258033 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 301360 DTS: 301360 < 301361 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 346800 DTS: 346800 < 346801 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 391616 DTS: 391616 < 391617 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 436528 DTS: 436528 < 436529 invalid, clipping [mp4 @ 0x7f9d13837600] st:0 PTS: 481264 DTS: 481264 < 481265 invalid, clipping frame= 454 fps=0.0 q=-1.0 Lsize= 626kB time=00:00:30.25 bitrate= 169.6kbits/s video:620kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.985025% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 17:36:56 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 16:36:56 -0000 Subject: [FFmpeg-trac] #2087(undetermined:new): mov_text crash Message-ID: <038.f97d5da3ed3234ade525bbdd328562dc@avcodec.org> #2087: mov_text crash -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- http://www.datafilehost.com/download-3f2fadb8.html also reproducible here with git head {{{ (gdb) r -scodec mov_text -i 702121h264-TTA.mkvtest82.mkv -an -vn out.mkv Starting program: d:\mingw\msys\1.0\ffmpeg-head-da8242e\ffmpeg_g.exe -scodec mov _text -i 702121h264-TTA.mkvtest82.mkv -an -vn out.mkv [New Thread 184.0x500] ffmpeg version 1.0.git-da8242e Copyright (c) 2000-2012 the FFmpeg developers built on Nov 20 2012 13:54:35 with gcc 4.6.1 (GCC) configuration: --disable-sse --disable-ffprobe --enable-gpl libavutil 52. 8.100 / 52. 8.100 libavcodec 54. 73.100 / 54. 73.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.101 / 3. 23.101 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.100 / 0. 17.100 libpostproc 52. 2.100 / 52. 2.100 [tta @ 048b6cd8] CRC error [tta @ 048b6cd8] Seek table missing or too small [h264 @ 048b0dd8] concealing 846 DC, 846 AC, 846 MV errors in I frame Input #0, matroska,webm, from '702121h264-TTA.mkvtest82.mkv': Metadata: creation_time : 2006-12-23 15:47:16 Duration: 00:24:10.95, start: 0.000000, bitrate: 17 kb/s Stream #0:0: Video: h264 (High), yuv420p, 848x480, SAR 1:1 DAR 53:30, 23.98 fps, 23.98 tbr, 1k tbn, 59.94 tbc (default) Stream #0:1: Audio: tta, 48000 Hz, stereo, s16 (default) Stream #0:2: Subtitle: mov_text (default) Stream #0:3: Subtitle: mov_text Output #0, matroska, to 'out.mkv': Metadata: encoder : Lavf54.37.100 Stream #0:0: Subtitle: ssa (default) Stream mapping: Stream #0:2 -> #0:0 (mov_text -> ass) Press [q] to stop, [?] for help Program received signal SIGSEGV, Segmentation fault. text_to_ass (text_end=0x4b0dfea
, text=0x4b0b000
, buf=0x22f200) at libavcodec/movtextdec.c:32 32 switch (*text) { (gdb) bt #0 text_to_ass (text_end=0x4b0dfea
, text=0x4b0b000
, buf=0x22f200) at libavcodec/movtextdec.c:32 #1 mov_text_decode_frame (avctx=0x48bcdb8, data=0x22f958, got_sub_ptr=0x22f9fc, avpkt=0x22f658) at libavcodec/movtextdec.c:98 #2 0x00563f23 in avcodec_decode_subtitle2 (avctx=0x48bcdb8, sub=0x22f958, got_sub_ptr=0x22f9fc, avpkt=0x22f890) at libavcodec/utils.c:1885 #3 0x0040f83d in transcode_subtitles (got_output=, pkt=, ist=) at ffmpeg.c:1663 #4 output_packet (ist=0x48bdd78, pkt=0x22fb48) at ffmpeg.c:1784 #5 0x004116b4 in process_input (file_index=) at ffmpeg.c:2828 #6 0x00b30c8e in transcode_step () at ffmpeg.c:2924 #7 transcode () at ffmpeg.c:2976 #8 main (argc=2070000, argv=) at ffmpeg.c:3160 (gdb) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 17:40:05 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 16:40:05 -0000 Subject: [FFmpeg-trac] #2088(undetermined:new): crash with forced aac and h264 Message-ID: <038.40c550c43e03e8bc3740614568bdb4ba@avcodec.org> #2088: crash with forced aac and h264 -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- please add bt if reproducible (if not I will compile git head later) http://www.datafilehost.com/download-efe6bb11.html {{{ C:\>ffmpeg -cpuflags 0 -acodec aac -vcodec h264 -i dvdsub.vob out.mkv ffmpeg version N-48329-g1f265f5 Copyright (c) 2000-2012 the FFmpeg developers built on Dec 31 2012 02:38:46 with gcc 4.5.0 (GCC) 20100414 (Fedora MinGW 4.5. 0-1.fc14) configuration: --prefix=/var/www/users/research/ffmpeg/snapshots/build --arch= x86 --target-os=mingw32 --cross-prefix=i686-pc-mingw32- --cc='ccache i686 -pc-min gw32-gcc' --enable-w32threads --enable-memalign-hack --enable-runtime- cpudetect --enable-cross-compile --enable-static --disable-shared --extra- libs='-lws2_32 - lwinmm -lpthread' --extra-cflags='--static -I/var/www/users/research/ffmpeg/snap shots/build/include' --extra-ldflags='-static -L/var/www/users/research/ffmpeg/s napshots/build/lib' --enable-bzlib --enable-zlib --enable-gpl --enable- version3 --enable-nonfree --enable-libx264 --enable-libspeex --enable-libtheora --enable- libvorbis --enable-libfaac --enable-libxvid --enable-libopencore-amrnb --enable- libopencore-amrwb --enable-libmp3lame --enable-libvpx --disable- decoder=libvpx libavutil 52. 13.100 / 52. 13.100 libavcodec 54. 85.100 / 54. 85.100 libavformat 54. 57.100 / 54. 57.100 libavdevice 54. 3.102 / 54. 3.102 libavfilter 3. 30.102 / 3. 30.102 libswscale 2. 1.103 / 2. 1.103 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 18:42:08 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 17:42:08 -0000 Subject: [FFmpeg-trac] #123(FFplay:reopened): Fuzzed sample crashes ffplay In-Reply-To: <036.e7a5d9e613d18f0a41aed8a1d33cf2d1@avcodec.org> References: <036.e7a5d9e613d18f0a41aed8a1d33cf2d1@avcodec.org> Message-ID: <051.f4fca744b20178e5a95fb1ae5644a388@avcodec.org> #123: Fuzzed sample crashes ffplay ---------------------------------+------------------------------------ Reporter: cehoyos | Owner: michael Type: defect | Status: reopened Priority: normal | Component: FFplay Version: git | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+------------------------------------ Comment (by michael): The invalid reads look like valgrind bugs -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 18:48:25 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 17:48:25 -0000 Subject: [FFmpeg-trac] #143(swscale:closed): YUV video to RGB image export color conversion issue In-Reply-To: <036.d35290ef7096b2868d07a0b799b00f4e@avcodec.org> References: <036.d35290ef7096b2868d07a0b799b00f4e@avcodec.org> Message-ID: <051.28c617caa62d8b745c18ed5dc310078f@avcodec.org> #143: YUV video to RGB image export color conversion issue ---------------------------------------+----------------------------------- Reporter: peter_b | Owner: Type: defect | Status: closed Priority: normal | Component: swscale Version: git-master | Resolution: fixed Keywords: RGB YUV color | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ---------------------------------------+----------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed Comment: It appears this has been fixed by some change since it was reported, i cant reproduce it anymore -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 19:10:21 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 18:10:21 -0000 Subject: [FFmpeg-trac] #187(undetermined:closed): 3GP/MP4 performance regression In-Reply-To: <032.33d8f7cf226f98e2fe8df92c7e3bdc6e@avcodec.org> References: <032.33d8f7cf226f98e2fe8df92c7e3bdc6e@avcodec.org> Message-ID: <047.bd7f449d9a99db5cbbbdde59f9531d84@avcodec.org> #187: 3GP/MP4 performance regression -------------------------------------+------------------------------------- Reporter: jsd | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: mov | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => worksforme Comment: Not reproduceable anymore -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 19:21:17 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 18:21:17 -0000 Subject: [FFmpeg-trac] #1227(avcodec:closed): crash in ff_put_h264_chroma_mc8_neon In-Reply-To: <036.4b29a3e84ee653b5ba8163eea3dccea4@avcodec.org> References: <036.4b29a3e84ee653b5ba8163eea3dccea4@avcodec.org> Message-ID: <051.640b9f2deb72322b0c68819bed3fd864@avcodec.org> #1227: crash in ff_put_h264_chroma_mc8_neon -------------------------------------+------------------------------------- Reporter: elioxia | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: arm crash | Blocked By: h264 | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: reopened => closed * resolution: => fixed Comment: This should have been fixed a month ago or so, please reopen if its still crashing with latest ffmpeg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 19:44:55 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 18:44:55 -0000 Subject: [FFmpeg-trac] #2083(FFmpeg:open): 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata In-Reply-To: <034.bf56511c736e5d8e625644572649a906@avcodec.org> References: <034.bf56511c736e5d8e625644572649a906@avcodec.org> Message-ID: <049.967971c82b722e367429dfbe3b87866b@avcodec.org> #2083: 'Invalid argument' or 'Assertion ost->source_index >= 0 failed at ffmpeg.c:2932' message on subtitle metadata -------------------------------------+------------------------------------- Reporter: rtmi1 | Owner: Type: defect | Status: open Priority: important | Component: FFmpeg Version: git-master | Resolution: Keywords: crash abort | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Cigaes): Should be fixed by adding this: {{{ ost->finished = 1; }}} In the "handle attached files" loop in {{{ffmpeg_opt.c}}}, along with all {{{ost}}} init. No time to make a proper patch right now, sorry. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 20:55:44 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 19:55:44 -0000 Subject: [FFmpeg-trac] #254(avcodec:closed): mpeg2video encoded in interlaced/field mode decodes incorrectly (demuxer) In-Reply-To: <038.ab4ae639f7d00bf815496e21cc3821fa@avcodec.org> References: <038.ab4ae639f7d00bf815496e21cc3821fa@avcodec.org> Message-ID: <053.1f22f63f7bbe49aa80559ec00c09b36e@avcodec.org> #254: mpeg2video encoded in interlaced/field mode decodes incorrectly (demuxer) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: fixed Keywords: mpegts | Blocked By: mpeg2video | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 22:31:25 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 21:31:25 -0000 Subject: [FFmpeg-trac] #1541(avcodec:new): flv hangs on ff_vp3_idct_add_neon on ARM Cortex-A8 with gstreamer (was: flv hangs on ff_vp3_idct_add_neon on ARM Cortex-A8) In-Reply-To: <037.e47009af7ace9eccb6b8ef1b9843ef98@avcodec.org> References: <037.e47009af7ace9eccb6b8ef1b9843ef98@avcodec.org> Message-ID: <052.64d8b0f1f6a693226c101e006c6b608e@avcodec.org> #1541: flv hangs on ff_vp3_idct_add_neon on ARM Cortex-A8 with gstreamer -------------------------------------+------------------------------------- Reporter: kaijun61 | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: flv, arm | Blocked By: cortext- A8 | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by michael): not reproduceable with ffmpeg on a beaglebord Also theres far too much information missing about this bug Whats needed? register dump & disassembly in addition to a matching backtrace. And as this seems gstreamer specific the SAME gstreamer+ffmpeg testcase which crashes on ARM should be tested on x86 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 22:36:59 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 21:36:59 -0000 Subject: [FFmpeg-trac] #259(undetermined:open): framerate detection does not work properly. In-Reply-To: <036.8aefbddb64515a1e297c2d5f3ee6dbb8@avcodec.org> References: <036.8aefbddb64515a1e297c2d5f3ee6dbb8@avcodec.org> Message-ID: <051.758e7acc7bfe0b10374b07f2b759f3af@avcodec.org> #259: framerate detection does not work properly. -------------------------------------+------------------------------------- Reporter: mbosner | Owner: Type: defect | Status: open Priority: normal | Component: Version: unspecified | undetermined Keywords: vc1 | Resolution: pulldown | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by michael): http://x-ion.de/wrong_framerate.mkv is ERROR 404: Not Found. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 31 22:47:47 2012 From: trac at avcodec.org (FFmpeg) Date: Mon, 31 Dec 2012 21:47:47 -0000 Subject: [FFmpeg-trac] #294(undetermined:closed): deinterlacer does not clear interlaced_frame flag In-Reply-To: <034.282eb4131fda390dabb67c1c2bd631e4@avcodec.org> References: <034.282eb4131fda390dabb67c1c2bd631e4@avcodec.org> Message-ID: <049.b791de35140628d041cbe5665969aa42@avcodec.org> #294: deinterlacer does not clear interlaced_frame flag -------------------------------------+------------------------------------- Reporter: Fritz | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git | undetermined Keywords: deinterlace | Resolution: wontfix libav | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: new => closed * resolution: => wontfix Comment: Closing as -deinterlace is deprecated now and it should work with the video filters. If it doesnt work with -vf ... then please open a seperate ticket for that. That said if someone wants to implement this for the deprecated option, iam not opposed but the patch must not write into things that its not supposed to write into ... -- Ticket URL: FFmpeg FFmpeg issue tracker