
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (24)
-
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4023)
-
ffmpeg resize down larger video to fit desired size and add padding
5 février 2017, par misterjinxI’m trying to resize a larger video to fit an area that I have. In order to achieve this I calculate first the dimensions of the resized video so That it fits my area, and then I try to add padding to this video so that the final result will have the desired dimension, keeping the aspect ratio as well.
So let’s say that I have the original video dimensions of 1280x720 and to fit my area of 405x320 I need first to resize the video to 405x227. I do that. Everything is fine at this point. I do some math and I find out that I have to add 46 pixels of padding at the top and the bottom.
So the padding parameter of the command for that would be
-vf "pad=405:320:0:46:black"
. But each time I run the command I get an error likeInput area 0:46:405:273 not within the padded area 0:0:404:226
.The only docs for padding that I found is this http://ffmpeg.org/libavfilter.html#pad.
I don’t know what I’m doing wrong. Anyone had this problem before ? Do you have any suggestions ?
-
How can I use the blackframe filter in ffmpeg to only encode images above a certain threshold ?
8 août 2012, par andyrooI am using ffmpeg to make timelapse movies from still images.
I see that I can use the blackframe filter to get a list of dark frames in a video, but I would like to skip encoding those frames all together.
Is there a way that I can use the blackframe filter to avoid encoding frames below the blackframe threshold ? Ideally I would be able to do this on a Win7 machine using batch/powershell/python.
Using another open source program to remove/delete black frames first would be acceptable too.
-
iOS how to convert video mp4 other codecs in libavcodec [closed]
17 décembre 2011, par BaiI am developing the ios app that captures the video in iPad and uploads the video captured(.mp4) to the server.
I must convert the video to other codecs for reducing the size of the video. So I am going to use libavcodec.
But I am beginner in video/audio codecs. I didn't find the method for using libavcodec apis.
How can I convert the .mp4 video to other codecs using libavcodec ?