
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (13)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (3571)
-
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 ?


-
Create muted video and black screen video with FFmpeg
2 mars 2021, par user2685832I'm trying to use FFmpeg to generate the following from a local mp4 file :



- 

- A copy of the original video with no audio
- A copy of the original video with audio but without visuals (a black screen instead). This file also needs to be in mp4 format.







After reading through the documentation I am struggling to get the terminal commands right. To remove the audio I have tried this command without any success :



ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy




Could anyone guide me towards how to accomplish this ?


-
avcodec/pngdec : do not blend on transparent black
28 novembre 2014, par Benoit Fouetavcodec/pngdec : do not blend on transparent black
There is no need to memset the zlib output buffer, as there is no
blending happening there. Instead, do not blend when the dispose
operation is set to ’background’ (tranparent black).Signed-off-by : Michael Niedermayer <michaelni@gmx.at>