
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (76)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 -
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 (...)
Sur d’autres sites (8659)
-
How to omit error messages in JSON output in ffprobe ?
12 juillet 2021, par puneet jainWhile fetching the stream details with ffprobe getting
Input buffer exhausted before END element found
error. ffprobe gives the requested info but the error is included in the output and creates invalid JSON.

ffprobe -loglevel error -select_streams v:0 -show_entries stream=width,height:stream_tags=rotate -of json testVideo.mp4

{
[aac @ 0x7fc06201cc00] Input buffer exhausted before END element found
 "programs": [

 ],
 "streams": [
 {
 "width": 640,
 "height": 640,
 "tags": {

 }
 }
 ]
}



How to prevent error messages in the JSON output when using ffprobe ?


Here is the video link testVideo.mp4


-
Ffmpeg Android add metadata to video
7 septembre 2016, par msjI’m working with android video recording application. I want to add some metadata in recorded video such as Title, Author, Publisher, CoptRight.
I use following command to edit metadata information.
ffmpeg -i in.mp4 -metadata title="my title"
-metadata author="author"
-metadata Publisher="Publisher"
out.mp4eBut change only the Title. other meta information cant add to a video using this command.
Is it possible to change those meta details. if yes, then how to add or change all meta data in a video.
-
How to monitor a video file and get an event when it is done and ready after some processing ?
7 avril 2015, par shivaniIn my application I have a video file which I am giving to a
ffmpeg library
for compression.
The compressed file is getting generated in sdcard in the path that I have specified.
As soon as the complete file is ready in the specified path I want to send the details of the compressed file to the server.
I am not able to get the instance of when the video file is completely written as the compression part is done by a library attached to my code.setCommandComplex(complexCommand);
setOutputFilePath(outvidpath);
setProgressDialogTitle("Compression");
setProgressDialogMessage("Depending on your video size, it can take a few minutes..Please Wait..");
setNotificationIcon(R.drawable.icon);
setNotificationMessage("Process is running...");
setNotificationTitle("Compression");
setNotificationfinishedMessageTitle("Process Completed");
// setNotificationfinishedMessageDesc("Click to play demo");
setNotificationStoppedMessage("Process Failed");
runTranscoing(); // this is the method where compression is doneHow can I monitor my video file and get an event when it is done and ready after compression ?
Please help !