
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (71)
-
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 -
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 (7397)
-
Limit number of output files in ffmpeg (rorating filenames)
22 août 2016, par VanDahlenI want to convert an MJPEG Stream to JPEG Files by using ffmpeg :
ffmpeg -i foo.mjpg -vcodec mjpeg -f image2 image%d.jpg
This works fine, but I want to have "rotating" filenames, that means setting a max. number of output files. When this limit is reached, it shall start with "image1.jpg" again : image1.jpg .. imageN.jpg .. image1.jpg etc.
I was hoping a specifiger like "%02d" would limit the numbers from 1..99, but this doesn’t seem t o work.I have found the "-vframes"-Parameter, but this is the abolsute number of frames to be output.
Is there any option to make the filenames rotate ?Thanks
VanDahlen -
Android version in Metadata
26 août 2018, par ClassAI just ran this FFMPEG command and noticed that the android version is in the metadata :
ffmpeg -i test.mp4 -f ffmetadata metadata.txt
-->
com.android.version=7.0This was very interesting because I’m currently trying to check if a video file was taken with a Android device or not.
Can someone please tell me if all Android devices add this tag to the Metadata of a video and if I will be able to use MediaMetadataRetriever to check if this tag exists ?
-
decode hevc on android
27 mars 2015, par skipperI’m trying to make a video player on android using android-ffmpeg, it works fine with avc streams, but failed to decode hevc ones. Are there any special requirements for decoding hevc on android with android-ffmpeg ?