Debido a los errores de compatibilidad entre el servidor Plex y los televisores Panasonic, la única forma de que funcione bien es remux todo a MKV, copia directa de todas las transmisiones (video, audio, subtítulos)
Parece bastante simple:
avconv -i "input.avi" -c copy "output.mkv"
Excepto:
avconv version 0.8.6-4:0.8.6-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
built on Apr 2 2013 17:00:59 with gcc 4.6.3
[mpeg4 @ 0x8422140] Invalid and inefficient vfw-avi packed B frames detected
Input #0, avi, from 'input.avi':
Metadata:
encoder : VirtualDubMod 1.5.4.1 (build 2117/release)
Duration: 00:27:38.52, start: 0.000000, bitrate: 1173 kb/s
Stream #0.0: Video: mpeg4 (Advanced Simple Profile), yuv420p, 640x352 [PAR 1:1 DAR 20:11], 25 tbr, 25 tbn, 25 tbc
Stream #0.1: Audio: mp3, 48000 Hz, stereo, s16, 132 kb/s
File 'output.mkv' already exists. Overwrite ? [y/N] y
Output #0, matroska, to 'output.mkv':
Metadata:
encoder : Lavf53.21.1
Stream #0.0: Video: mpeg4, yuv420p, 640x352 [PAR 1:1 DAR 20:11], q=2-31, 1k tbn, 25 tbc
Stream #0.1: Audio: libmp3lame, 48000 Hz, stereo, 132 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Press ctrl-c to stop encoding
[matroska @ 0x8422cc0] Can't write packet with unknown timestamp
av_interleaved_write_frame(): Invalid argument
Con las líneas gotcha relevantes siendo:
[mpeg4 @ 0x8422140] Invalid and inefficient vfw-avi packed B frames detected#
<snip>
[matroska @ 0x8422cc0] Can't write packet with unknown timestamp
av_interleaved_write_frame(): Invalid argument
No puedo ver una opción para desempaquetar los marcos B (¿o construir un mapa de tiempo VBR? ¿Los necesitamos en avconv?)
¿Hay alguna manera de hacer esto, como en avidemux?
avconv -i xxx | buf | avconv -i stdin xxx
mkfifo
. Básicamente, utiliza un archivo como almacenamiento temporal para stout.A partir de este ticket # 1979 en ffmpeg bugtracker, la solución más simple es corregir este error o agregarlo manualmente
-fflags +genpts
a la línea de comando.Es decir, cambio
a
fuente
avconv
versión 0.8.16, hasta que muestra un extrañoCan't write packet with unknown timestamp
al final del archivo. Extraño.-fflags
se utiliza como una opción de entrada: tiene que ir antes que su-i input
. Pero probablemente no habría funcionado en absoluto si no lo hubiera puesto+genpts
en el lugar correcto.avconv
9.18-6: 9.18-0ubuntu0.14.04.1 tambiénGracias a Andreas Cadhalpun
ffmpeg
ahora tiene un nuevo filtro:mpeg4_unpack_bframes
(ver ref .). Esto permitirá a deshacerse del mensaje:Invalid and inefficient vfw-avi packed B frames detected
.El uso es tan simple como:
fuente