Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (97)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9876)

  • 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

  • Generate m3u8 file with Extended M3U directives by ffmpeg

    5 septembre 2014, par Sagar Joshi

    I am generating m3u8 files by using ffmpeg.

    Command is like below :

    ffmpeg -i sourcefile.mp4 -vcodec libx264 -acodec libvo_aacenc -b:v 128k -flags -global_header -map 0:0 -map 0:1 -f segment -segment_time 4 -segment_list_size 0 -segment_list testlist.m3u8 -segment_format mpegts stream%05d.ts

    This is creating m3u8 files successfully, but it does not add extended m3u8 directives.

    So , how to add those directives ?

    Thanking in Advance,

    Sagar Joshi