Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (59)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9691)

  • ffmpeg inject image from python ?

    21 avril 2020, par VirtualHue

    I looking for some way to create frames inside python and then inject them to running ffmpeg process. For now I achieve this by saving image at hard drive and then ffmpeg input as :

    



    -f image2 -stream_loop -1 -re -i image.png


    



    But this way is too slow for me.
I also tried drawtext, but if I update file too frequently i get bus error from ffmpeg.

    


  • How to compare images to find the least blurry image ?

    31 octobre 2022, par Frezzley

    How to compare images to find the least blurry image ?

    



    I want to automaticallz generate an image/thumbnail from a video.

    



    I use ffmpg for that.

    



    However once in a while the image is totally blurred and I want to get rid of the blurry images.

    



    My idea was to create multiple images per video and than compare the images to eachother.

    



    Now the question :

    



    Is there a way to compare the blurryness of images ?

    


  • FFmpeg : Pure white image becomes gray after overlaying

    17 décembre 2019, par hanswim

    I am using FFmpeg to overlay a sticker image to another image. The problem is, the pure white sticker image becomes gray after overlaying. Here is my command :

    -i, input.jpg, -i, white.png, -filter_complex, [1]scale=162:63[v1];[0][v1]overlay=125:337[v2], -map, [v2], -map, 0:a?, output.jpg

    The input.jpg and the white.png are both pure white image. I create the pure white image by taking a screen shot of an empty website, and I confirm it’s pure white by Color Meter(RGB=255,255,255).

    After running the command, the output image :

    ffmpeg output image

    I have searched Google and tried many ways like -color_range 2, format=rgb24, -pix_fmt rgb24, but none work for me. (Maybe I haven’t use it in the right way.)

    Anyone can help me ? Thanks a lot !