
Recherche avancée
Autres articles (32)
-
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 (6233)
-
FFMPEG blur specific time ranges in a video too slow
11 juillet 2022, par user3529381We are trying to blur specific sections of a video, below command works fine. Only concern is the rate of processing is too slow and takes too much of time. Any clue how to make it fast or any other alternative solution in python to do it fast. Please don't provide solution using cv2 as that doesn't support h264 codec and required output is in h264 codec.


ffmpeg -i input.mp4 -vf "boxblur=30:enable='between(t,25,30)',boxblur=30:enable='between(t,35,40)'" -codec:a copy output_blur.mp4


-
Anomalie #4430 : image_reduire gère mal les arrondis
5 février 2020, par jluc -Je précise qu’avec round() ça marche dans le cas sus-cité, et globalement c’est certainement moins perturbant que ceil ou floor puisque le décalage est de maximum 0.5 alors qu’avec ceil ou floor ça va jusqu’à 1.
Sinon, en gardant ceil, une autre alternative pour mon squelette, plutôt que appeler 2 fois de suite |reduire(200,200)|reduire(200,200) , c’est de viser une hauteur "juste en dessous" : |image_proportions(1, 0.99999) puisque le ceil rattrapera.
Et pour info, avec floor au lieu de ceil, _image_ration renvoie... 199 ! Même pas 200... on est vraiment là dans les bas-fond de la gestion des floats par php.
-
FFmpeg process killed when press poweroff button
11 avril 2018, par dastanI am using the WritingMinds/ffmpeg-android-java library for ffmpeg. When I press the Power button of Asus T00J (4.4), the ffmpeg process is canceled. How can I prevent process to being killed ?
process = shellCommand.run(cmd);
The only solution I have in my mind is to recompile ffmpeg with all supported libraries in the shared library format (.so) instead of the executable binary and write JNI to access the ffmpeg main method. But it will take so much time. So, I am looking for alternative solutions.