Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (29)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • FFmpeg accurate speed for x11grab

    21 mars 2017, par Peter Shaw

    Hi I am trying to make a screencast in realtime with ffmpeg on Linux.

    This is my call :

    ffmpeg \
    -f x11grab \
    -s 1920x1080 \
    -r 24 -framerate 24 \
    -i $DISPLAY \
    -preset ultrafast \
    -tune zerolatency \
    -pix_fmt yuv420p \
    -acodec copy \
    -vcodec libx264 \
    -b:v 500k \
    -crf 0 \
    -threads 0 \
    -y /data/production/out.mkv \
    -an \
    -t $LEN

    As far as i can tell this is near accurate and has a decent quality. Maybe there is a better settling, than let me please know.

    As the screen will be captured the timing is not correct. I get a message with something like this :

    frame=  901 fps= 22 q=0.0 size=   66553kB time=00:00:37.50 bitrate=14538.3kbits/s speed=0.905x  

    The Speed will turn around from 0.600x to 1.200x and is never stable to 1x.
    I wonder if it’s possible to get a accurate timing.
    I have to do a 60sec movie that is in speed exactly 100% like the frame-buffer is. Is it possible ?

  • How to speed up video conversion

    3 février 2021, par Arheisel

    I'm currently working in a project that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.

    


    For now I've tried copying the folder to a ram disk and using avconv which takes about a minute.

    


    Here is my command :

    


    avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg


    


      

    • Could ffmpeg work faster ?
    • 


    • Is there a way to speed it up ?
    • 


    • Which video format takes less time to convert to ?
    • 


    


  • How to speed up a video in order to shorten its length and embed a timestamp to represent time as it was recorded ?

    8 janvier 2021, par Gonzalo Aspee

    I have a video recorded at 5 fps that I want to speed up to 30 fps to shorten it. That is simple enough as :

    


    ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS" output.mp4


    


    But when I try to add a timestamp to it with :

    


    ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS, drawtext=text='%{pts\:localtime\:1610043985\:%Y\-%m\-%d %H\\\\\:%M\\\\\:%S.}%{eif\:mod(n,30)\:d}'" output.mp4


    


    The timestamp does not longer represents the time as it was recorded (it should run faster now)

    


    What would be the simplest way to achieve this on a single pass ?