Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6647)

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

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