Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (51)

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (7234)

  • Background blur on concat videos make everything more blurry

    7 août 2020, par AlphaDjango

    Hi I have a bunch of temp video files that I want to concat together, some are different aspect ratios and resolutions so I want the end video to be a 1920x1080p with the empty space on the sides to be a box blur.

    


    I have it working how I want but the video clips in the middle become more blurry than the original temp files.
Could someone let me know if I can change the code to keep original quality ? It will also show it's dropping frames a few thousand in a 20 minute video which isn't terrible but I would prefer it to not drop frames.

    


    "ffmpeg -i "concat :" + python script adds all file locations + "" -s 1920x1080 -filter_complex [0:v]scale=ih16/9 :-1,boxblur=luma_radius=min(h,w)/20:luma_power=2:chroma_radius=min(cw,ch)/20:chroma_power=1[bg] ;[bg][0:v]overlay=(W-w)/2 :(H-h)/2,crop=h=iw9/16 -af aselect=concatdec_select,aresample=async=1 Rendered_Videos/output.mp4"

    


  • ffplay with gdigrab doesn't render properly

    14 avril 2022, par laggingreflex

    I'm trying to do this :

    


    ffplay -f gdigrab -framerate 30 -i title="Untitled - Notepad"


    


    It's supposed to show the notepad window in the ffplay window.

    


    But it doesn't seem to render properly.. it shows scrollbars but not anything written in the notepad. Other windows ("calculator") don't show properly either.

    


    Does ffplay not work (well) with gdigrab ? Or is it just me ?

    


    screenshot

    


  • Rendering libav-decoded video stream in android sdl ? or ?

    13 avril 2013, par user1568549

    I've successfully cross-compiled a c++ video streaming library to the android ICS platform

    This library contains a sample player that uses sdl library to render the resulting decoded video streams and libav for decoding that i've also succeeded to cross compile(libav ... classes) Then, i 've made the necessary jni classes and tested it using log tags it seems that everything is fine but now i want to show the result on the screen(show the real streaming not just log messages)

    I am searching for the easiest way to render my stream (just to be sure that everything works fine)

    Am i oblige to cross compile the sdl library too ? is it possible ? if yes is there any good tutorial ?

    Is there any other solution to render directly ffmpeg decoded frames ?

    Thanks in advance.