Recherche avancée

Médias (91)

Autres articles (57)

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (7196)

  • Fastest way to create long video from 1 image with ffmpeg

    12 février 2015, par johnvantes

    What is the fastest way to create a video with long duration (1 hour), from a single image ?
    Here is what I have now :

    ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4

    But it’s taking too long in my case, around 40 minutes. The image size I am using is 800KB.

    Many many thanks in advance !

  • The bottom of video decoded by ffmpeg library is not good

    29 février 2020, par Mr. Jang

    I made a MFC program that plays a video stream.
    The video stream comes from RTP and codec is H.264.
    I used ffmpeg library.
    My problem is the bottom of my video play is not good.
    Not good means it has blur.
    The resolution of the video is 1920×1200.
    I opened H.264 codec using avcodec_find_decoder(AV_CODEC_ID_H264) and didn’t set any option.
    What should I do to solve this problem ?
    Thank you in advance !

  • run ffmpeg with multiple threads

    12 février 2012, par xhammer

    Ok i have learnt how to convert videos files using vb.net and ffmpeg. But as far as i know we cannot use multiple threads to run same exe file to convert files. Do you know how i can convert multiple videos using one external exe file (ffmpeg) ?

    I have not tried because my computer time was over. So iam just asking a general doubt whether if we attach it to one process then wouldn't the process get locked ? Then can we multi-thread this application or not ?

    Thanks in advance.