Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • GStreamer vs FFmpeg

    29 septembre 2020, par user1129474

    I try to record a Video with the OpenCV Framework an would like to save that into an Matroska(mkv) Container together with some additional data streams.

    



    First I thought using FFmpeg is the way that.
But while looking into the OpenCV Sourcecode and searching in the web I found GStreamer.

    



    Because the documentation in GStreamer is much better than the FFmpeg documentation I would prefer using this Framework.

    



    In my understanding GStreamer is primarily used for Streaming, but could also rncode and mux video data.

    



    Is there any disadvantage when using GStreamer instead of FFmpeg ?

    



    Thanks in advance
Horst

    


  • GStreamer vs FFmpeg

    4 janvier 2012, par user1129474

    I try to record a Video with the OpenCV Framework an would like to save that into an Matroska(mkv) Container together with some additional data streams.

    First I thought using FFmpeg is the way that.
    But while looking into the OpenCV Sourcecode and searching in the web I found GStreamer.

    Because the documentation in GStreamer is much better than the FFmpeg documentation I would prefer using this Framework.

    In my understanding GStreamer is primarily used for Streaming, but could also rncode and mux video data.

    Is there any disadvantage when using GStreamer instead of FFmpeg ?

    Thanks in advance
    Horst

  • Mp3 volume up and down within specific parts Android

    23 mai 2017, par Vivek Bhatt

    I want to alter the volume of an audio file(mp3) within specific parts.

    Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
    I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer duration

    ffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3

    Is there any other way around which is bit quick.

    Thanks in advance