Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (12)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (4621)

  • Python - live straming from GoPro and convert in mp4

    13 août 2017, par chri13

    I need to develop an Android App that display live stream from GoPro Hero4...

    I have used a Python Script (through ffmpeg) to display on my pc, live stream...

    This is the main python command :

    subprocess.Popen("ffmpeg -i 'udp://:8554' -fflags nobuffer -f:v mpegts -probesize 8192 " + TS_PARAMS + SAVELOCATION, shell=True)

    What is a Python command (or a terminal linux command) to do this :

    • take live stream from GoPro Hero4
    • open new stream
    • convert in mp4 format the input frames from GoPro
    • send the input frames in the new stream
    • and then, take this new mp4 stream from my Android App

     ??

    Can you help me, please ?

    Thank you very much !

    Best Regards !

  • broadcast live video from android with ffmpeg source code

    8 novembre 2012, par keven

    Any suggestion for live stream for android.

    In my app i need to broadcast live video from android on a web,some app like Qik, Justin.tv, Ustream.tv and Bambuser.
    it is developed under ffmpeg,
    anyone would help if there is any open source project like this,or anyone had already done it
    please tell me the project name or send me a copy of the code.

    Email:liangyingshuang@gmail.com

    Thanks.

  • playing live streaming with video.js

    12 juin 2015, par randomuser1

    I want to stream on a webpage a video live that I receive from a server (with ffserver). So far when I write a very simple code :

       <code class="echappe-js">&lt;script src=&quot;http://www.andy-howard.com/js/libs/jquery-1.8.2.min.js&quot;&gt;&lt;/script&gt;

    &lt;script src=&quot;http://vjs.zencdn.net/4.12.6/video.js&quot;&gt;&lt;/script&gt;

    then it doesn’t work. But when I replace the line :

    <source src="http://10.172.180.235:8090/live.flv" type="video/x-flv">
    </source>

    with this one :

    <source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
    </source>

    then I can see the stream, but it comes from a file... Is there a way to display on my webpage live stream coming from ffserver ? Thanks.