Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (6274)

  • Optimise ffmpeg hls stream to images

    10 mars 2017, par mrdotb

    I’m using a ffmpeg to convert a hls stream from twitch to 30 png images per seconds on stdout then I load them in python using pillow.

    My ffmpeg command is the fallowing.

    I get a hls stream from twitch using

    livestreamer --http-header Client-ID=mytwitchtoken --hls-live-edge 1 twitch.tv/stream source,1080p60 --stream-url

    Then my images using

    ffmpeg -i streamurl.m3u8 -vf fps=2 -nostats -pix_fmt rgb24 -vcodec rawvideo -f image2pipe -

    The ffmpeg command is working well however it’s resource intensive (100% of my cpu). Is there some optimization I can do on the command or another method to get my images from the hls stream.

  • 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

    


  • Decode an RTP stream, process it, and encode it again

    2 mai 2013, par pinoscotto

    i'm trying to receive an RTP stream (direct with an SDP file or from an RTSP server), decode it in something like an RGB matrix (to work on it with OPENCV), and encapsulate it again in a stream, to send it to another end point.

    I've tried live555, but it hasn't encoding/decoding, and support is mostly for keyframe formats.
    I've used ffmpeg whith success but only from the command line.

    I'm wondering if there's some smarter way of doing this.
    Thanks