Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (80)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8556)

  • How I can create iptv server ?

    5 avril 2020, par Randy Firfield

    I need create iptv TS server
    
ex :) http://ukiptv.ddns.net:8000/live/content/23HjeuPQrf/1355.ts

    



    I have sample TS file. and the TS file is not long.
    
I want to create http server with the file(TS) repeately.
    
I can make new PCR.

    



    I tried with nodejs. also it seems working.
    
But, the RAM usage is increase over the time.

    



    Below code is my code with node js.

    



    app.get('/test.ts', async (req, res) => {
    var data = fs.readFileSync('./testDownload_1306_small_more_small.ts');
    // var first_pcr = found(data);
    var PACKET = data.length / 188;
    while (1)
        for (var i = 0; i < PACKET; i++) {
            var buf = data.slice(i * 188, (i + 1) * 188)

            var old_pcr = _foundStartPCR(buf);
            if (old_pcr) {
                // update pcr to repeate 
                ///...
            }

            res.write(buf);
            await sleep(1);
        }
});


    



    Main problem :
    
Ram usage increase.

    



    How I can create iptv server ?

    


  • What's the simplest way of installing ffmpeg on my server (on a Mac) ?

    13 octobre 2011, par Nick

    I am looking to install ffmpeg on my server to enable audio files uploaded to a website to be converted to MP3. I understand that I need to install ffmpeg and ffmpeg-php, but I am not sure how to do this. I am wondering what the simplest way of doing this would be on my Mac. Would I need to use Terminal and learn command line methods, or is there a simpler way ? I have checked with my host that I have SSH access.

  • Android Screen mirroring via rtsp server

    7 juillet 2017, par Anıl Mert Ar

    I was trying to mirror my android phone’s screen to my PC. I actually did that thanks to ffplay and adb. But my question is how I can send it to an rtsp server. Do I need any additional stuff besides them ?

    What I can do :

    adb exec-out screenrecord --output-format=h264 - | ffplay -

    I completely didn’t understand how to send this output to an rtsp server and I don’t know if there is additional thing rather than rtsp I will be so appreciated if you help me. Thanks.