Код: Выделить всё
for comment in thread['comments']:
commentClips += fragmentConcat(comment, filePrefix)
staticClip = ffmpeg.input('assets/static.mp4')
commentClips.append(staticClip
.filter('setsar', 1, 1)
.filter('scale', 1920, 1080)
)
commentClips.append(staticClip.audio)
< /code>
Этот код генерирует следующую ошибку: < /p>
ValueError: Encountered scale(1920, 1080) with multiple outgoing edges with same upstream label None; a `split` filter is probably required
Подробнее здесь: https://stackoverflow.com/questions/667 ... ges-with-s