
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (58)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7167)
-
Time interval between frames ffmpeg while creating thumnail
9 février 2017, par rohit phogatI am creating a thumbnail sheet from videos inside a folder with 7 rows and 3 columns. I am using following command
ffmpeg -i "video.mp4" "ss.jpg" -frames 1 -q:v 1 -vf "select=not(mod(n\,40)),scale=466:-1,tile=3x7"
I am not getting desired output. It just create thumnail starting from 00:00:00 and finishes at like 00:01:00
How can i get time interval of 60 seconds between each frame ?
-
ffmpeg real-time encoding. Encode while file uploading by chunks
29 avril 2020, par skatehypeNow the process is :
1) File upload
2) Encode file with ffmpeg when file has been uploaded



Can be done at the same time ?, obviusly yes, but I don't know how.



The file upload process is by 8MB chunks stored in server, then, temporary I have videofile.ext.tmp that is growing up to final uploaded file.



I read about ffmpeg -stream_loop or -loop parameters, but I don't know if the upload process is good for real-time encoding or how to manage it.



Any help will be appreciated.


-
mov : fix decode of fragments that overlap in time
12 octobre 2017, par John Stebbinsmov : fix decode of fragments that overlap in time
When keyframe intervals of dash segments are not perfectly aligned,
fragments in the stream can overlap in time. The previous sorting by
timestamp causes packets to be read out of decode order and results
in decode errors.Insert new "trun" index entries into index_entries in the order that
the trun are referenced by the sidx.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>