Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (36)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

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

  • avcodec/mpeg12dec : Limit maximum A53 CC size

    21 septembre 2020, par Michael Niedermayer
    avcodec/mpeg12dec : Limit maximum A53 CC size
    

    This is more than 10 times the size of the largest i found. And also alot more
    than our encoder could handle (our encoder is limited to max 31)
    Without any limit megabyte+ sized blocks can be reallocated millions of times.
    Sadly the SCTE-20 spec does not seem to contain any hard limit directly, so this limit here
    is arbitrary

    Fixes : Timeout (25sec -> 152ms)
    Fixes : 25714/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG2VIDEO_fuzzer-5713633336885248

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg12dec.c
  • How to switch from yuyv422 to yuv420p for better framerate in ffmpeg on Windows 10

    14 mai 2019, par someone from belgium is called

    I upgraded PC from Windows 7 to Windows 10, as it is discontinued. Problem is,
    I had low latency monitoring and recording solution with FFmpeg.

    After the upgrade, Logitech camera switched from yuv420p to yuyv422 and I lost 30 fps support at 1280x720. Now it is only limited to 10 FPS.

    Tried different drivers, it still yuyv422

    Here is a code i use.

    ffmpeg -y -loglevel panic -hwaccel qsv -threads 1 -fflags nobuffer -flags low_delay -strict experimental -f dshow -video_size 1280x720 -framerate 10 -pixel_format yuyv422 -i video="C922 Pro Stream Webcam" -codec:v libx264 -preset ultrafast -crf 24 -tune zerolatency -map 0 -f segment -segment_time 600 -segment_wrap 2 -reset_timestamps 1 dvr_%%04d.avi -codec:v copy -f nut - | ffplay -fflags nobuffer -flags low_delay -vf scale=1920x1080:flags=lanczos -window_title "kamera" -noborder -left 1920 -top 150 -fast -framedrop -

    I really need low CPU, no latency monitoring at minimum 24 FPS and recording capabilities. File size doesn’t matter so much.

    Using mjpeg eats CPU like crazy.

  • fulent-ffmpeg arguments inputs are invalid | nodejs

    23 août 2020, par Dean Van Greunen

    how would I write this command

    &#xA;

    ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 2500k -minrate 1500k -maxrate 4000k -bufsize 5000k -vf scale=-1:720 output.mp4

    &#xA;

    as a node fluent-ffmpeg command ?

    &#xA;

    what I have this

    &#xA;

    function convert(input, output, callback) {&#xA;  ffmpeg(input)&#xA;    .output(output)&#xA;    .outputOptions(&#xA;      "-preset","slow","-codec:a","libfdk_aac","-b:a","128k","-codec:v","-pix_fmt","-b:v","2500k","-vf","scale","\"-1:720\""&#xA;    )&#xA;    .on("end", function () {&#xA;      console.log("conversion ended");&#xA;      callback(null);&#xA;    })&#xA;    .on("error", function (err) {&#xA;      console.log("error x: ", err);&#xA;      callback(err);&#xA;    })&#xA;    .run();&#xA;}&#xA;

    &#xA;

    I get errors saying the arguments are invalid. such as but not limited to :

    &#xA;

      &#xA;
    • Error: ffmpeg exited with code 1: "-1:720": Invalid argument
    • &#xA;

    &#xA;

    and other variations

    &#xA;