Recherche avancée

Médias (91)

Autres articles (41)

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

  • Create muted video and black screen video with FFmpeg on OS X

    22 septembre 2017, par user2685832

    I’m trying to use FFmpeg on OS X to generate the following from a local mp4-file :

    • A copy of the original video with no audio
    • A copy of the original video with audio but without visuals (a black screen instead). This file also needs to be in mp4 format.

    After reading through the documentation I am struggling to get the terminal commands right. To remove the audio I have tried this command without any success :

       ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy

    Could anyone guide me towards how to accomplish this ?

    Thanks !

  • FFmpeg for automatic video generation from images ?

    22 janvier 2018, par Dionisis K

    I want to implement an automatic video generation from images, like facebook’s anniversary video. And I would also like to add some filters. I’ve been searching a lot and read FFmpeg’s documentation which is pretty amazing.

    In the future I want to have 10-20 "bashscripts" with different filters leading to different themes (e.g. fade-in, zoom, overlay images, left-to-right, etc..)

    So my biggest concern is having an interface which offers readable code and provides scalability. Since ffmpeg is a bashscript i searched for a wrapper

    There are wrappers in

    Are there any other wrappers worth to check ?
    Would you recommend something from the above ?
    Is there any pros and cons using a specific programming language for this particular case ?
    Is there anything else i should bear in mind before I make a decision ?

  • ffmpeg : given a video of any length, create timelapse video of 6-8 seconds long

    14 mai 2018, par CDub

    I have an application which consumes video of any length (could be a few seconds, could be several minutes) and I want to use ffmpeg to return a "timelapse" version of the input video which will always be between 6 and 8 seconds long.

    I’ve been fiddling with the following :

    ffmpeg -y -i in.mp4 -r 10 -vf setpts='0.01*PTS' -an out.mp4

    Which seems to be a good start, but still generates very dynamic results given what in.mp4 is.

    I also don’t fully understand the verbiage in the ffmpeg documentation, so I’m not even sure what arguments to use for setpts, or if setpts is the correct filter I want to use.