Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (52)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (3297)

  • Understanding ffmpeg -benchmark results

    6 septembre 2022, par Ivy Growing

    Adding -benchmark flag to ffmpeg command resutls with addition of following 2 lines in the shell output :

    


    bench: utime=10.125s stime=4.234s rtime=5.606s
bench: maxrss=110080kB


    


    The maxrss serves to indicate the maximum RAM used during the ffmpeg execution. The utime, stime, rtime indicate accordingly :

    


      

    • user time ;
    • 


    • system time ;
    • 


    • real time.
    • 


    


    I tried to understand the meaning of these times from the source code and failed. Please, help.

    


      

    1. Which of these times indicate how much time was human waiting while the ffpmeg was processing the video ?
    2. 


    3. Can this time be seen directly or it's a combination/calculation of these 3 parameters ?
    4. 


    5. How it can be for certain videos utime > rtime and for others utime < rtime ?
    6. 


    


  • ffmpeg wav output length not correct or consistant

    3 avril 2013, par user2241026

    Trying to run a very simple command via php a exec() command. All my other commands are working fine except for a simple audio trim that I am trying to run.

    The user posts a file, and a start time (in mm:ss.xxx format). and ffmpeg is supposed to trim the file to 5 seconds after the start time. The problem is, some times it works, but other times the audio file is 6 or even 7 seconds long. I can't figure out the problem.

    Oh, I'm aware of the lack of sanitizing in the code right now.

    here is the PHP code

    //user entered number for example "01:30"
    //$newFilePath1 is the location of the file, no issue there
    $starttime = $_POST["starttime"];

    $makeWav1 = "ffmpeg -y -ss 00:".$starttime." -i \"$newFilePath1\" -acodec pcm_s16le -sample_rate 48000 -t 00:00:05.000 temp/audiocut1.wav";

    exec($makeWav1);

    Thank you for the help !!

  • checkasm/sw_range_convert : test all supported bit depths

    18 septembre 2024, par Ramiro Polla
    checkasm/sw_range_convert : test all supported bit depths
    

    This commit also reduces the number of times ff_sws_init_scale() gets
    called (only once per bit depth), and the number of times randomize_buffers()
    gets called (only if the function must be checked).

    Benchmarks are only performed on bit depths 8 and 16 (since they are
    different functions, and not only different constants).

    • [DH] tests/checkasm/sw_range_convert.c