Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (36)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Installing Apple HTTP Live Streaming

    14 avril 2016, par user2871193

    I need to know how to install the Apple’s HTTP Live Streaming tools on my webserver. Since the tools provided by Apple is in dmg format. I have tested the tools on my local MAC machine. Also I encoded the live streams and VOD’s using FFMpeg Library on MAC.

    Since streaming videos require webserver for distributing content, how we install both these tools on webserver both FFMpeg and Live Streaming Tools by Apple ?

    I guess it might be very silly question, but couldn’t get a workaround on this. Any help will be appreciated.

    Thanks.

  • subprocess.Popen crashes when run in background

    17 mars 2016, par user2810298

    In a program I’m working with right now, I try to check for the version of FFMPEG that is installed on the users machine. This works perfectly fine by using subprocess.Popen when run in the foreground OR when run in a detached screen.

    However, when you run it in the background without screen (e.g. COMMAND &> /dev/null &) this process crashes the program. (see below) I’ve seen some people having similar issues on the web, but I still can’t seem to fix this...

    I’ve Any ideas ?

    version_ffmpeg = subprocess.Popen(["ffmpeg","-version"],stdout=subprocess.PIPE,stderr=None)

    f_out = version_ffmpeg.communicate()
    (then...)
    if f_out --> 3rd word contains --> etc.
  • Streaming a video stream using a custom integrated decoder

    12 février 2014, par sam

    I have integrated a custom video decoder into ffmpeg multimedia framework. However, the integration is such that my decoder involves taking an input file pointer which points to the input file that needs to be played. When used on the local machine everything works fine.

    So, now the issue is that, if I'm trying to stream a video using udp, then i will not be having an input file pointer (because it is not a local file), therefore leading to a segmentation fault. So in order to handle this, what can be done ? Please provide your suggestions.