
Recherche avancée
Autres articles (97)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (7148)
-
upload fluent-ffmpeg converted videos directly to s3
6 mai 2021, par a_wolf_with_no_masterIs there any way to upload fluent-ffmpeg converted videos directly to s3 without storing them on local ?


ffmpeg('https://bucket2021.s3.amazonaws.com/aws.avi' thre)
 .format('mp4')
 .on('start', function(commandLine) {
 console.log('Spawned Ffmpeg with command: ' + commandLine);
 })
 .on('progress', function(progress) {
 console.log('Processing: ' + progress.percent + '% done');
 })
 .on('end', function(data,err){
 console.log(data)
 console.log(err)
 })
 .on('error',(err)=>{
 console.log(err)
 })
 .save('/home/john/firstapp/new2') 



-
avformat/mvdec : explicitly set duration
18 décembre 2021, par John-Paul Stewart -
Set up a TV like RTMP channel
17 mars 2015, par JohnWolfI’m looking for the best way to play a sequence of videos at specific times on a RTMP channel. Right now, I’ve setup a few things that seem viable to achieve this :
- Setup a Wowza Streaming Engine on a server
- Setup a Wowza Streaming Cloud account, that receives the stream from the server and broadcasts it with different qualities.
Now I plugged a RTMP stream into the Wowza Cloud and was able to play it in different qualities on all browsers and devices. That’s the end game.
I was able to play videos on the stream using ffmpeg and started to work on having video playlists running.
So my question is simple :
Do you think it’s a good way to do this ? How would you do it otherwise ?
Thanks
John