Recherche avancée

Médias (91)

Autres articles (41)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La 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 (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (7620)

  • Extracting frames with nvidia gpu

    14 novembre 2020, par toweraway

    I have over 500 videos and i need to extract frames every X seconds,
I wanted to use google colab to make use of the gpus to do the job as fast as possible, the frame must be in a lossless format, i thought about .png but ffmpeg kept failing with png format so im open to suggestion.
    
The video codecs is "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10" and this is the command i tried to use :
    
ffmpeg -hwaccel cuvid -i "video231.mp4" -vf fps=1/2 -q:v 1 ./tests/%04d.png

    


    This one works, but colab keeps telling me I'm not using the gpus, i have tried others settings before but I get a format error.

    


  • How to sequentially extract video segments from mp4/mkv video files ?

    30 juillet 2018, par Keith Bennett

    Is there a way to programmatically walk through a file and extract (for example) consecutive 10-second fragments from it into separate files ?

    A colleague is currently using ffmpeg for this, but I’m thinking that invoking this command once per segment will result in a lot of file seeking that may not be necessary.

    Or am I wrong, is there some kind of time index in these files that makes the seeks very fast ?

    The language currently used for calling ffmpeg is Ruby, so a compiled C library might work, and a Java library would definitely work (with JRuby).

  • FFMpeg - Ideal hardware build out [on hold]

    9 février 2015, par Shawn

    FFMpeg noob question here - I’m building out a system who’s primary job is to take different video files (mp4, flv, avi, etc), and spit them out to thumbnail jpeg images (1 frame/sec). I’m using the below FFMpeg command line to do this :

    ffmpeg -i sourcevideo.mp4 -y -vf scale=100 :-1 -r 1 frame_%6d.jpg

    This system will be handling thousands of video files per day - so my question is, what would be the dream hardware build out to support this ? As many procs as possible ? SSD ? Fast drive controllers ? Graphic cards for hardware acceleration ?

    Any thoughts on this would be appreciated.