Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (78)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

  • ffmpeg save mp3 file from available wss stream

    11 juillet 2021, par phoenixAZ

    In a hello world node.js app I am succeeding in getting a feed from twilio conference and sending to the google speech to text. Concurrently I want to control recording to mp3 of the available audio stream (programmatically call start and stop). The was is subscribed to audio stream but I don't know how to attach ffmpeg to the local stream. I have tried :

    


                // ffmpeg('rtsp://host:port/path/to/stream')
            //experimenting telling it to use the local stream
            //
            //ffmpeg(wss.addListener)  //invlaid input error
            //ffmpeg(wss.stream) //thsi hits the console error below
            ffmpeg(wss.stream)
            .noVideo()
            .audioChannels(1)
            .audioBitrate(128)
            .duration('1:00')
            .on('end', function () { console.log('saved mp3'); })
            .on('error', function (err) { console.log('error mp3'); })
            .save('/path/to/output.mp3');


    


    Any suggestions are welcomed. I am in a node.js project

    


  • Multiprocessing | Multithreading ffmpeg in python

    13 octobre 2016, par lordcantide

    I am developing a python WSGI script to interface with an HDHomeRun Prime. In a perfect world it will pass URI values as commands to FFMPEG and display the resulting stream in a browser. I have the "show stuff in browser" and the "pass instructions to FFMPEG" parts working fine, but I do not have them working simultaneously.

    1) Given that this middleware is being used to transcode MPEG-2 to h.264, does it make more sense to use multiprocessing or multithread to start and stop the respective processes ?

    2) If the WSGI script is brokering the initiation of FFMPEG feeds (if the input feed isn’t already brokered) and connecting clients to the associated FFServer streams, does mean I’ll need to use some sort of pool to keep track of the middleware’s activities ?

  • Add text to a movie at a specified time and for a specified time [duplicate]

    5 octobre 2019, par urbciech

    This question already has an answer here :

    How can I add text to a movie.MP4 in a certain time to display for X seconds ?

    E.g :
    00:00:20 the text "hello world" appears and disappears after 10 seconds