Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (51)

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

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

  • why node-media-server not creating sub folders in server while implementing Live video with RTMP ?

    10 mars 2020, par Kadam Saikumar
    I tried this configuration in local it got works and it creates **./media/live/STREAM KEY** folder and storing video data (MP4 file).
       If i push the same code in server it doesnot create sub folders **live/STREAMKEY** and i am using node version 8 and linux server and ffmpeg 4.


    const nodeMediaServerConfig = {
         // logType: 3,
         rtmp: {
           port: 1935,
           chunk_size: 60000,
           gop_cache: true,
           ping: 60,
           ping_timeout: 30
         },
         http: {
           port: 8000,
           mediaroot: './media',
           allow_origin: '*'
         },
         trans: {
           ffmpeg: '/usr/bin/ffmpeg',
           tasks: [
             {
               app: 'live',
               ac: 'aac',
               mp4: true,
               mp4Flags: '[movflags=faststart]'
             }
           ]
         }
       };

       var nms = new NodeMediaServer(nodeMediaServerConfig);
       nms.run();

    ===============================================================================================
    If i create manually folders will it be useful in server ?

  • Live streaming from iphone To wowza server

    4 décembre 2013, par user2959377

    I need to develop an iphone app that streams live video to wowza server. For encoding the captured video in H.264 and to compress it i need to use FFmpeg. I am unable to proceed because of limited content on internet explaining compilation of FFmpeg.
    I used https://github.com/lajos/iFrameExtractor to start with compiling of FFmpeg, but i dont understand how to use the generated files in my application. I am using AVFoundation and can successfully generate the video but dont know how to compile the captured video through FFmpeg. Any link that could help in starting with compiling and using ffmpeg in iphone would be of great help.

  • HTML5 live streaming with alpha channel

    5 mars 2021, par air5

    We are trying to live stream a video file with alpha channel. Adaptive streaming would be great, but it's not a must. Streaming is pretty new territory for us.

    


    We found out that WebM (VP9) seems to be the only format in the web that supports alpha channel. We tried using the nginx-rtmp-module as streaming server (MPEG-DASH) and broadcast the file with ffmpeg. But the alpha channel was lost. Probably because RTMP required us to broadcast the video as a FLV which doesn't support alpha.

    


    Is anyone having experience in streaming rgba videos on the web ? Getting to know compatible commercial solutions would be interesting tee. My next approaches would be trying to use Icecast. There is not much information online but this article where streaming a webm directly seems to be possible.