Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (87)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • How to do FFMPEG live transcoding to HTML5 video from file(.MP4, .MKV) in PHP ?

    12 octobre 2014, par user3534650

    I’m using windows, tried to follow this tutorial and downloaded the code : blog page is http://sixserv.org/2010/11/30/live-transcoding-for-video-and-audio-streaming/ and the github https://github.com/4poc/php-live-transcode. It doesn’t work, I’m getting some errors in mplayer saying "MPlayer has not identified the file you provided".

    I just need a simple working live media transcoder that can work on most browsers even in mobile devices (HTML5) using FFMPEG in PHP. I’ve been searching this the entire time, I found nothing.

  • FFMpeg Copy Live Stream (Limit to 60s file)

    17 février 2021, par Garret Harp

    I currently have a working way to get a live stream and start downloading it locally while it is still live.

    



    ffmpeg -i source_hls.m3u8 -c copy output.mkv -y

    



    The problem is I do not actually want to save the entire thing, I just periodically run another command on the output.mkv command to create a clip of part of the live stream.

    



    I was wondering if it was possible to limit the output.mkv file to be only 60s long so once the stream goes over 1 minute it will just cut off the old video and be replaced by the new rolling video.

    



    Is this possible or no ?

    


  • Need to record and stream live video in ffmpeg

    16 août 2020, par ankurgoel

    Need to record live webcamera and live stream it also record at the same time on the server.

    


    I was trying to implement this using FFMpeg in vue but not sure if this is the best way to implement this.

    


    Please guide if this can be done more efficiently than this.