Recherche avancée

Médias (91)

Autres articles (108)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11519)

  • editly - Where can I get the return value after a video is created ?

    21 février 2021, par rom

    Quick question...

    


    Following along the README of editly, I managed to create videos after calling editly like this :

    


        // create video
    editly(editSpec)
        .catch(console.error);


    


    Unfortunately, I am using ExpressJS to do this and I need to send back a response when video creation completes.

    


    However, when I tried to extract any value using .then, it returns undefined :

    


        // create video
    editly(editSpec)
    .then(r => {
        console.log(`Is this undefined? Probably yes! r: `, r)
        res.json(r)
    })
        .catch(console.error);


    


    How can I accomplish this ?

    


  • wavdec : refactor wav_read_header()

    19 décembre 2014, par Thomas Volkert
    wavdec : refactor wav_read_header()
    

    Make it more readable and display an error message in case an invalid
    header is detected (the current version just returns
    AVERROR_INVALIDDATA)

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/wavdec.c
  • Convert long video to 16:9 by blurring sides ?

    13 mai 2019, par JackChap77

    I am taking screenshots in python using selenium and want to convert them to a video. At the moment I have a black border around the top and bottom but I want it to be a blured image of the video in the background (the video is just a still image and audio)

    Used the filter from https://stackoverflow.com/a/30832903/8502422 but it returns ’invalid too big or non positive size’

    ffmpeg -loop 1 -i image.png -i audio.mp3 -c:v libx264 -preset veryslow -crf 0 -c:a copy -lavfi "[0:v]scale=iw:2*trunc(iw*16/18),boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1" -shortest post.mp4