Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (31)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (7731)

  • Not able to play mp4 video on Chrome Browser

    29 octobre 2018, par Bhupinder Rajput

    I have download a sample 5Mb mp4 video from http://www.sample-videos.com/ . I am not able to play video on chrome browser. I am using simple html5 video tag

    But When I upload same video on facebook it is playing fine on chrome browser

    What I’ve tried to do is :

    <video width="560" height="340" controls="controls"> <source src="../Videos/5 Taara_HD.mp4" type="video/mp4"></source></video>
  • Instagram Live API using Graph API

    16 août 2020, par Deepak Sharma

    I see Facebook has new graph API for live video. But I am not sure if it can used to go live on Instagram as well. I see third party softwares such as Yellow Duck being able to go live on Instagram. Not only that, a lot of softwares support streaming to any destination by just using an RTMP link. So does that mean any service that can generate an RTMP stream can broadcast to Instagram (with/without login to Instagram) ? How does Instagram live work if one can generate an RTMP stream ? Finally, if I can generate an RTMP/RTMPS stream locally on my desktop or phone using ffmpeg libraries, can I stream to Instagram ?

    &#xA;

  • FFMPEG : How to stream to multiple outputs with the same encoding independently

    8 février 2017, par Lucas Schoch

    How my stream is working right now :

    Input :
    Switcher program that captures the camera and screen shots and make a different layouts. One of the windows from the software is the one used as Input in the ffmpeg command line.

    Output :
    - Facebook (example)
    - Youtube (example)

    At the beginning, i thought that maybe could be better create two different ffmpeg processes to stream independently to each output. The problem was it uses too much CPU.
    The answer for it, was to encode one time and copy it to different outputs. Ok, great, it solves the problem, but what if one of the output fails ? Both fail.

    I’m trying to make one encoding to two outputs and if one of these outputs is not available, the other keep going well.

    Anybody have any idea to solve it ?

    Thanks !