baixa qualidade de vídeo ao usar o timehifting de vídeo com complex_filter

0

Estou usando um filtro complexo que funciona, mas quando mudo um pouco, obtenho uma má qualidade de resultado. Esta versão parece funcionar bem:

[0:v]scale=640:480 [temp0];
[0:v] setpts=PTS-STARTPTS-1/TB, scale=128x96 [firsthistory];
[0:v] setpts=PTS-STARTPTS-1/TB, scale=128x96 [secondhistory];
[temp0][firsthistory] overlay=shortest=1:x=480:y=28  [temp1];
[temp1][secondhistory] overlay=shortest=1:x=480:y=139

Isso é fazer um vídeo e, em seguida, colocar duas sobreposições de subtelas à direita, o que mostra que o vídeo mudou para frente no tempo. Para definir o tempo para a frente para as legendas, eu uso setpts = PTS-STARTPTS-n / TB, onde n é o número de segundos para mudar o tempo. Isso funciona, mas honestamente eu não entendo isso.

De qualquer forma, isso funciona quando n = 1. Se eu mudar os vídeos ainda mais para frente, a qualidade de vídeo resultante será ruim. A saída de vídeo é irregular, por exemplo, usando o abaixo n = 2,4:

[0:v]scale=640:480 [temp0];
[0:v] setpts=PTS-STARTPTS-2/TB, scale=128x96 [firsthistory];
[0:v] setpts=PTS-STARTPTS-4/TB, scale=128x96 [secondhistory];
[temp0][firsthistory] overlay=shortest=1:x=480:y=28  [temp1];
[temp1][secondhistory] overlay=shortest=1:x=480:y=139

Os parâmetros completos do ffmpeg são

'-i',
'b77b24e5-27a6-459b-aa11-8f79e0162659.mpeg',
'-filter_complex',
'[0:v]scale=640:480 [temp0];[0:v] setpts=PTS-STARTPTS-2/TB, scale=128x96 [firsthistory];[0:v] setpts=PTS-STARTPTS-4/TB, scale=128x96 [secondhistory];[temp0][firsthistory] overlay=shortest=1:x=480:y=28  [temp1];[temp1][secondhistory] overlay=shortest=1:x=480:y=139',
'-c:v',
'libvpx',
'-b:v',
'1M',
'-c:a',
'libvorbis',
'-vf',
'scale=960:-1',
'50649689680c6e5976d1d7fb3fd603259c2ab6e0.webm'
    
por Frank Schwieterman 28.01.2014 / 01:37

1 resposta

0

Acabei não usando os setpts para atrasar os vídeos de sobreposição. Em vez disso, estou tomando várias entradas do mesmo arquivo, algumas com desvio de tempo. Parâmetros:

'-i',
'2c15d5be-2b61-4c0d-b394-7f3d45f6ca7f.mpeg',
'-itsoffset',
-6,
'-i',
'2c15d5be-2b61-4c0d-b394-7f3d45f6ca7f.mpeg',
'-itsoffset',
-3,
'-i',
'2c15d5be-2b61-4c0d-b394-7f3d45f6ca7f.mpeg',
'-filter_complex',
'[0:v] scale=640:480 [temp0];[1:v] scale=128x96 [firsthistory];[2:v] scale=128x96 [secondhistory];[temp0][firsthistory] overlay=x=480:y=28  [temp1];[temp1][secondhistory] overlay=x=480:y=144',
'-c:v',
'libvpx',
'-b:v',
'1M',
'-c:a',
'libvorbis',
'-vf',
'scale=960:-1',
'50649689680c6e5976d1d7fb3fd603259c2ab6e0.webm'
    
por 28.01.2014 / 10:31

Tags