Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (5621)

  • 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