Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (42)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7120)

  • Anomalie #3630 : Logo d’auteur et fonction de recherche de logo

    29 décembre 2015, par Debondt Didier

    Hello,

    Ce n’est pas de cela que je parle. Visiblement, j’ai mal exprimer le problème.

    Si j’utilise la fonction ainsi ’par exemple) :

    quete_logo( 'auteur' , 'on' , $id_auteur , null , flase)

    Cela ne va pas fonctionner car il faut faire :

    quete_logo( 'id_auteur' , 'on' , $id_auteur , null , flase )

    Il suffirai d’ajouter $type = id_table_objet($type) ; avant d’utiliser chercher_logo pour corriger le soucis.

    Tu vois le "problème" ?

  • Revision 17b34a1bba : Cosmetics : test/test_libvpx.cc Itchy submit finger, incorporate review comments

    22 juin 2012, par John Koleszar

    Changed Paths : Modify /test/test_libvpx.cc Cosmetics : test/test_libvpx.cc Itchy submit finger, incorporate review comments. Change-Id : I7754ad825da32389510d1bfc967f542f0b1033ed

  • Do I really have to go through the whole Facebook App Review process for a single user App ?

    11 février 2019, par KOMsandFriends

    I want to publish a live video on a Facebook page, using the Facebook API. I have developed a small Facebook "App", which starts a live video stream on a Facebook page and connects ffmpeg to it.

    I need this for my own business. The only purpose of this is, to start and stop live video streams from an IP camera on Facebook from a headless server.

    This is how I call the API in python to start a new live video stream :

    def start(self):
         p = {
                 "status":"LIVE_NOW",
                 "title":self.Title,
                 "description":self.Description,
                 "access_token":self.__token
                 }
         r = requests.post( self.__url + self.__page_id + '/live_videos', pams=p)
         if r.status_code == 200:
             self.parseResponse(r.text)
         return int(r.status_code)

    After that I immediately run ffmpeg with the stream key returned by this API call :

    ffmpeg -i ... -f flv "rtmp://live-api-s.facebook.com:80/rtmp/$STREAMKEY"

    This code works and the video appears on Facebook, but the video is only visible for me, even though it is shown as public in the Facebook web interface.

    How can I change this ? Do I have to review an App, even though it is just for my own usage ?