Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (52)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8660)

  • 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 ?