Recherche avancée

Médias (91)

Autres articles (41)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (5461)

  • avutil : remove deprecated FF_API_VULKAN_CONTIGUOUS_MEMORY

    19 février, par James Almer
    avutil : remove deprecated FF_API_VULKAN_CONTIGUOUS_MEMORY
    

    Deprecated since 2023-05-28.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/hwcontext_vulkan.h
    • [DH] libavutil/version.h
  • lavc/vvc : Validate IBC block vector

    25 juin 2024, par Frank Plowman
    lavc/vvc : Validate IBC block vector
    

    From H.266 (V3) (09/2023) p. 321 :

    It is a requirement of bitstream conformance that the luma block
    vector bvL shall obey the following constraints :
    - CtbSizeY is greater than or equal to
    ((yCb + (bvL[ 1 ] >> 4)) & (CtbSizeY − 1)) + cbHeight

    This patch checks this is true, which fixes crashes on fuzzed
    bitstreams.

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/ctu.c
    • [DH] libavcodec/vvc/mvs.c
    • [DH] libavcodec/vvc/mvs.h
  • ffmpeg video processing command does not end

    24 août 2023, par Harry

    I am using ffmpeg to create a video processing lambda, I attached the log for the processing input below and the process never completes sometimes and other times it takes no more than 2 minutes. This also does not throw and error but just does not complete for certain videos.

    &#xA;

    2023-08-24T22:49:18.633Z    bebc42e9-a60a-4e12-a5a1-ad3f2950f1f3    INFO    Spawned Ffmpeg with command: ffmpeg -i /tmp/input.mp4 -i /tmp/background.mp4 -i /tmp/input_colored.ass -y -filter_complex &#xA;  [0:v]scale=-1:853.3333333333334,crop=1080:853.3333333333334:540:426.6666666666667[videoOne];&#xA;  [1:v]scale=-1:1066.6666666666667,crop=1080:1066.6666666666667:540:533.3333333333334[videoTwo];&#xA;  [videoOne][videoTwo]vstack=shortest=1[vstacked];&#xA;  [vstacked]subtitles=/tmp/input_colored.ass:fontsdir=/tmp/fonts/:force_style=&#x27;Alignment=2,Shadow=2,OutlineColour=#000000,Fontsize=18,Fontname=Burbank Big Condensed&#xA;&#x27;&#xA; -c:v libx264 -preset fast -crf 18 -aspect 9:16 -f mp4 /tmp/_1692917333426-rah10.mp4_output.mp4&#xA;&#xA;

    &#xA;

    The intention is to provide two videos with varying lengths and have them stack on top of each other vertically with subtitles and a length of the shortest video.&#xA;I am running the function in a lambda and even with a timeout of 10 minutes it does not complete for certain videos but for others it does complete, please help me to resolve this.

    &#xA;