Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (111)

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

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (10673)

  • Number ffmpeg process running

    29 octobre 2022, par GoAmGo

    I'm making a application to create hls channels, my problem is what no can running more than six ffmpeg process at time and i dont know becouse it.

    


    You can see in this video https://www.youtube.com/watch?v=G24KuYMLjsM

    


    The server is apache with php-fpm fcgid and the cuestion is what i can runnig more process whitout problem but i don`t know becouse it limited ffmpeg to six process.

    


    I'm probe all but i think can be a limit in the ffmpeg compitated version ?

    


    When I exec the seven ffmpeg process, ffmpeg say : Conversion Falied !

    


    But I can run others process more with not be ffmpeg , is not a server limit.

    


  • ffmpeg video slideshow script with vertical stack transition ?

    11 mai 2019, par Trần Công Trường

    I have cmd : ffmpeg -y -r 1/5 -i "C :\test\a\%0d.jpg" -r 24 "C :\test\out.mp4"
    I want slideshow script with vertical stack transition. Similar to the video below : https://www.youtube.com/watch?v=3G47V5EDJZw . Thanks

  • ffmpeg encoding with VP8 producing bad looking video

    25 décembre 2017, par Radu

    I am working at a time lapse program that invokes ffmpeg via system() to encode a video from a sequence of JPGs. The user can chose a few options, including the compression codec.
    I am getting very good results when using libx264 and the mjpeg encoder. I am getting so and so results with VP9, and I am getting some horrible results with VP8.

    I am invoking ffmpeg like so : ffmpeg.exe -framerate 12 -i "./output/img_%05d.jpg" -dst_range 1 -color_range 2 -c:v libvpx -b:v 0 -threads 8 -speed 2 -crf 8 "./output/video.webm"

    I uploaded a sample to youtube : https://www.youtube.com/watch?v=eG2jxzR3Uxs (you can see the really bad frames after the 9 seconds mark.

    Any idea what I am doing wrong ?