Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (99)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

Sur d’autres sites (17961)

  • Add filters and effects by FFMPEG on a live program

    2 mars 2014, par M.Yazdian

    Add filters and effects by FFMPEG on a live program.
    I need to add some effects such as writing at the bottom of a live program and impose the Images of other live cameras on the main camera image through FFMPEG but when I want to add these effects and filters I have to stop FFMPEG, edit command and run FFMPEG again which is not professional.

    All other broadcasting software such as wirecast , vidblaster and others work very well while the main event is going on LIVE, you can add filters and effects without any stop start, just apply the effect and the viewer can see every think live without any interruption

    can you advice me how can I use FFMPEG and add filters and effects without any stop start, I need to just apply the effects and the viewer should see every think live without any interruption.

    Thanks

  • How to implement RTMP/RTSP protocol for sending video to server ios(live streaming) ?

    7 janvier 2016, par abhi1992

    Anybody know how to use FFMpeg for live streaming in ios ?Where do I download the FFMpeg library from ?Can somebody give some hint about where to start ?I don’t have any code in this question because I have no idea what to ask.

    Any link where I can start with will be a great help.Please don’t downvote this question.All the answers for similar questions are outdated.There are no proper tutorials also.

  • How to generate the first few HLS playlist files for a live broadasting event ?

    1er mars 2014, par user3367166

    Knowing that HLS is based on a playlist of N segment files, how to properly generate the first (N-1) playlist files for a live broadcasting event (sliding window method) ?
    - should we wait for the first N segments to be recorded, and send a complete first playlist file ? This of course works but means that there is a delay of N x segment_duration before streaming starts.
    - or is there an official way of sending "partial" playlist files such that streaming starts after 1 x segment_duration ?

    I have experimented with partial playlist files : ffmpeg 2.1.3 appends new segments into the playlist as they are recorded (below). I find this a reasonable way but my ipod5 usually stops playback after the first playlist or sometimes manages to playback the first few playlists but with much choppiness, so I believe it is not a supported way. Is there any official solution ?

    1. 1st playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
    2. 2nd playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
      #EXTINF:1,
      segment1.ts
    3. 3rd playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
      #EXTINF:1,
      segment1.ts
      #EXTINF:8,
      segment2.ts