Recherche avancée

Médias (6)

Mot : - Tags -/opensource

Autres articles (16)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (2156)

  • How to use ffmpeg without root access

    6 octobre 2016, par Charlie227

    I’ve successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7).
    ffmpeg works fine - but now I need to use it without root access.

    When i try to use ffmpeg without root access, I get the following error :

    ffmpeg: error while loading shared libraries: libx264.so.148:
           cannot open shared object file: No such file or directory

    The final goal is to be able to use ffmpeg inside my PHP scripts which do not root access.

    Any help is appreciated.

  • how to parse Access Unit in h.264

    24 septembre 2014, par user2406774

    I am working in a project that needs to cut some Access units in H.264 raw elementary stream,for example remove 4 access units and play the remaining video .

    For this I took Access unit Delimiter (NAL Unit Type:9) as boundary for Access Unit and cut the video but the video ended with packet loss. But if I took Sequence parameter set (NAL Unit type :7) as boundary, resultant video playing without any packet loss.
    Some one please help me how to solve this issue : where shall I cut the video ?

  • Nginx allow only my domain to access a video url

    4 septembre 2019, par Bruno F

    i’m setting up a web server that contains live video streaming embed into the html5 video tag. My workflow is to grab the rtsp video from an ip camera, decode it to a HLS format using ffmpeg and send the video to my server.
    Nginx allows access to the video through a url, which I put in my video tag as a source.

    Everything works perfectly, the only problem is that anyone can access the URL of the video and put that URL on their website without my permission.

    Is there any way to only allow my domain to access, and block for example www.domain2.com to put it into their video tag or other framework thath they use ? i’m think Nginx can do the job maybe.

    Here are the codes of Nginx and my html in case is needed.

    HTML :

    <video class="video-js vjs-default-skin vjs-big-play-centered vjs-fluid" controls="controls" preload="none">
    <source src="//mydomain.com/live/stream.m3u8" type="application/x-mpegURL"></source>
    </video>

    Nginx :

    location /live {
               types {
                       application/vnd.apple.mpegurl m3u8;
               }
               limit_conn addr 5;
               alias /home/stream;
               add_header Cache-Control no-cache;
               add_header 'Access-Control-Allow-Origin' '*';
       }

    Many thanks guys !