
Recherche avancée
Autres articles (112)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (7914)
-
avfilter/drawtext : make command processing error-resilient
10 mai 2019, par Gyan Doshi -
Changing ffpmeg options while processing a stream ?
22 mai 2019, par ThatOneGamer999I’m making a discord bot for my discord server, and one feature request I keep getting is the ability to toggle audio effects in the middle of a song. The code I have right now is saved along with the track in the queue, and is processed by the music player process when that song comes along. What I need is to be able to change these options after the song has started. Is this possible ?
-
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 !