
Recherche avancée
Autres articles (24)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (5453)
-
FFMPEG Python : Encountered scale(1920, 1080) with multiple outgoing edges with same upstream label None ; a `split` filter is probably required
2 janvier, par Lysander CoxHere is the code in question :


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)



This code generates the following error :


ValueError: Encountered scale(1920, 1080) <6adb028f8ef5> with multiple outgoing edges with same upstream label None; a `split` filter is probably required



I have tried using only the video part of the input for the first call (e.g.
staticClip['v'].filter...
), and I have tried using thesplit
call as suggested (e.g.ffmpeg.input(...).split()
. Nothing has worked. What is the issue, and how can I rememdy it ? Thanks.

-
split multiple original videos into multiple videos of length 10s with ffmpeg in windows 10
16 septembre 2021, par Game Replayi can split 1 video into small 10s videos. but how to automatically batch split videos in 1 folder
this is my code :


ffmpeg -i input.mp4 -vcodec copy -acodec copy -map 0 -segment_time 00:00:10 -f segment output%03d.mp4



HELP ME !!!


-
hevc : split out setting AVCodecContext parameters
29 mars 2015, par Anton Khirnov