Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13664)

  • New "Bar UI" player demo (single/playlist with flexible inline controls, etc.)

    2 septembre 2014, par scottschiller
    New "Bar UI" player demo (single/playlist with flexible inline controls, etc.)
  • Raspberry / Nginx RTMP video streaming player

    28 mai 2016, par Emmanuel Brunet

    I’ve set up a Nginx RTMP server that receives a flv stream from a raspberry cam using raspivid and avconv (ffmpeg)

    on the pi side I run

    /opt/vc/bin/raspivid -n -fl -mm matrix -w 800 -h 600 -fps 25 -g 80 -t 0 -b 6000000 -o - | avconv -re -i - -nostats -c copy -f flv rtmp://mercure/cam/live

    note : the target host is called mercure

    the Nginx rtmp module on mercure is set like bellow

    rtmp {
       server {
           listen 1935;
           # chunk_size 8192; # This might positively affect CPU load
           chunk_size 4096;

           application cam {

                   # max_connections 100;
                   live on;
                   # meta copy;
                   allow play all;

                   record all;
                   record_path /var/CCTV;
                   record_interval 1800s;
                   record_suffix -%Y-%m-%d-%T.flv;

                   hls on;
                   # hls_nested on;
                   hls_path /tmp/HLS;
           }
    }

    in the http section I’ve defined a hls location

       location /hls {

               root /tmp/HLS;
               types {
                       video/MP2T ts;
                       application/vnd.apple.mpegurl m3u8;
               }
       }

    when I run

    ffplay rtmp://mercure/cam/live

    it works like a charm but I can’t get it working with Vlc using the same url.

    Any idea ?

    otherwise I’m also trying to install a javascript rtmp / hls video player does anybody succeed or experienced using an open source component like flowplayer ? I’ve read a lot of doc about that but each time installs fail or some components are missing.

    please help me getting this stream available thru a web broser. thanks in advance

  • How to display live web camera video into video player using ffmpeg

    30 octobre 2013, par Akash Langhani

    I want to use live camera video and play same time in a video player, means record and play parallel, can ffmpeg perform this, if yes then how.