Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (66)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (6790)

  • avformat/file : dup file descriptor for pipe

    14 décembre 2022, par Zhao Zhili
    avformat/file : dup file descriptor for pipe
    

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/file.c
  • Piping multiple chunked *.ts file streams from m3u8 to one .ts file using Node.js

    7 janvier 2017, par user2631534

    I im creating on-the-fly *.ts files (and updating m3u8 file with last 6 created *.ts files) and would like to stream this file to vlc player using new filename as single file.

    For example...i have on-the-fly 1_.m3u8 file :

     #EXTM3U
     #EXT-X-VERSION:3
     #EXT-X-TARGETDURATION:14
     #EXT-X-MEDIA-SEQUENCE:1
     #EXTINF:13.720000,1_1.ts
     #EXTINF:4.560000,1_2.ts
     #EXTINF:12.760000, 1_3.ts
     #EXTINF:9.520000,1_4.ts
     #EXTINF:8.560000,1_5.ts
     #EXTINF:4.280000,1_6.ts
     #EXT-X-ENDLIST

    And would like when i call http://myserverip:port/1.ts in chrome i get to download one file 1.ts that is reading files 1_1.ts and when reading is at end of this file then go to next file 1_2.ts, and 1_3.ts, and 1_4.ts, and 1_5.ts and 1_6.ts and then reading from beginning 1_1.ts, and 1_2ts and so on.

    I need this so that i can stream one h.264 video without interrupting and without stopping when reading next ts file from my server. I use ffmpeg to generate ts chunk small files and overwrite when max 6ts are generated so that i always get from 1_1.ts to 1_6.ts so that my hdd is not full in short time.

    I try using this node js code that run event when m3u8 file is changed and get last ts file name so that i pipe it to response...but problem is when 1_1.ts read file is end it stops stream...

    stream.get('/stream', function(req, res) {
    /* STREAM - header */
    res.writeHead(200, {
     'Content-Type': 'video/H264'
    });
    var fs = require('fs');

    var Watcher = require('hls-watcher');
    var w1 = new Watcher('/tmp/streams/1_.m3u8');
    w1.listenFile();

    w1.on("change", function(data){
       //do things with ts files stored on data.

       fs.createReadStream('/tmp/streams/'+data[0]).pipe(res);
       console.log(data);
    });
    });
  • Combine an image into audio file and make a video file in android programmatically

    6 mai 2020, par jagdish

    I gone through the tutorial of ffmpeg library to combine the image into audio file.

    &#xA;&#xA;

    This is looking very complex and getting error with environment value is null.

    &#xA;&#xA;

    I researched a lot but didn't find any solution.

    &#xA;&#xA;

    Is there any way in Android to merge an image and an audio file to make a video ?

    &#xA;