
Recherche avancée
Autres articles (81)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (8395)
-
How to add black borders to video
7 décembre 2023, par Arnaud RochezSo I'm using ffmpeg to convert a video to 19201080 px, I found two ways to do so, the first one would be to stretch the video to 19201080, but then it looks kinda stretched. I used this command for this :


./ffmpeg_darwin -i SRC -vf scale=1920:1080,setdar=16:9 DEST



The other option is the same without setdar but this just adapts the resolution to the one it started from (1728*1080).


I would like to fill the 192 pixels of the width with a black border. Is there some kind of option to do so ? Or is there maybe another command line that could achieve this ?


-
ffmpeg generate from png sequence produces black video
20 septembre 2019, par friendlygiraffeI am using ffmpeg to generate an MP4 from a png sequence using the following :
ffmpeg -framerate 25 -pattern_type glob -i "*.png" -c:v libx264 -pix_fmt yuv420p -b:v 1M out.mp4
But it outputs a black video, any advise on why ?
The folder contains 2000 pngs which are 4520 × 2160 pixels
-
ffmpeg : How to add frames or black at the end of a video ?
10 mai 2012, par Jim HoyleHow to copy an arbitrary amount of duplicates of the last frame at the end of any video ? Or alternatively, how to add black frames at the end of any video ? Can this be done by scripting and ffmpeg ? Of course any other tool is fine, as long as the action is scriptable.
The difficulty is that all video formats, or at least as wide range of video formats as possible, should be supported. The script should take in any video formats without manually changing the script per video.