Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (48)

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

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5157)

  • I want to insert an audio at a certain time on the video using moviepy.editor

    28 novembre 2022, par Khong Phai Hex

    I want to insert an audio at a certain time on the video using moviepy.editor, how do I do it ?, or do you have another way ? please show me.

    


    Examples like this :enter image description here

    


    I was expecting someone to answer me, because I searched for a long time but couldn't.

    


  • Start ffmpeg recording at a specified date/time ?

    4 janvier 2016, par Andy B

    Is it possible to execute ffmpeg and start screen capturing at a specific date/time ?

    I have an issue with the start-up latency and I can’t synchronize ffmpeg with another application well.

    Or, is there some other way to control the time when ffmpeg starts capturing ?

  • Identifying the I frames before and after a given time

    2 novembre 2017, par dne202

    I’m trying to find a method for finding the I Frame before and after an inputted time. So far my method for finding the I frame preceding a time is

    ffprobe -select_streams v -show_frames -show_entries frame=pkt_pts_time,pict_type -v quiet input.mp4 | awk -F= '/pict_type=/ { if (index($2, "I")) { i=1; } else { i=0; } } /pkt_pts_time/ { if (i && ($2 <= 1)) print $2; }' | head -n 1

    Yet this seems to identify the frame after the preceding I frame, not the I frame itself. How do I get it to output the pkt_pts_time of the actual I frame ?