Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (42)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • 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);
    });
    });
  • 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
  • Copy multiple sections of an .mp3 file to a new .mp3 file with ffmpeg [duplicate]

    28 août 2021, par Nemo XXX

    I'd like to copy multiple sections of an .mp3 file to a new .mp3 file using a single ffmpeg command.&#xA;For example, I only want to keep the following sections of a 60 minute .mp3 file :

    &#xA;

    00:00:55 00:05:34 00:04:39 || 55.7173 334.888 279.17069999999995&#xA;00:16:31 00:38:29 00:21:57 || 991.912 2309.11 1317.198&#xA;00:41:29 00:45:04 00:03:34 || 2489.84 2704.37 214.52999999999975&#xA;

    &#xA;

    (The values are start, end, duration.)

    &#xA;

    How can I achieve this with a single ffmpeg command on a Windows machine ?&#xA;(I already know how to create 3 separate .mp3 files and to concatenate them.)

    &#xA;