Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (98)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (12674)

  • How to enable site on ngnix to restream

    19 mars 2020, par Nk nk nk

    i use rtmp+nginx to restream the channels with ffmpeg.

    The streaming is enabled for subdomain for example [hls.tvoti.com][1] but not for the main domain [tvoti.com][1]

    In Nginx site-enabled path i have mentioned that the main domain must be enabled but it doesn’t stream. Here is the config :

    server {
       listen   80;

       #root /var/www/html/;
       #index index.php index.html index.htm;

       server_name tvoti.com;

       location / {
       proxy_redirect off;
           proxy_set_header X-Real-IP  $remote_addr;
           proxy_set_header X-Forwarded-For $remote_addr;
       proxy_set_header X-Forwarded-Proto $scheme;
           proxy_set_header Host $host;
           proxy_pass http://127.0.0.1:8080;
       }

       location ~ /\.ht {
           deny all;
       }
    }

    server {
       listen       80;
       server_name  hls.tvoti.com;

       location / {
           add_header Cache-Control no-cache;

           # Simple requests
           if ($request_method ~* "(GET|POST)") {
               add_header "Access-Control-Allow-Origin"  "http://tvoti.com";
           }

           # Preflighted requests
           if ($request_method = OPTIONS ) {
               add_header "Access-Control-Allow-Origin"  "http://tvoti.com";
               add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS, HEAD";
               add_header "Access-Control-Allow-Headers" "Authorization, Origin, X-Requested-With, Content-Type, Accept";
               return 200;
           }
           root   /etc/nginx/hls;
       }

       location /supervisor {
           proxy_pass http://127.0.0.1:9999/;
       }

       #error_page  404              /404.html;

       # redirect server error pages to the static page /50x.html
       #
       error_page   500 502 503 504  /50x.html;
       location = /50x.html {
           root   html;
       }

    }
  • FFmpeg & Installation on phpmyadmin [migrated]

    18 septembre 2011, par Vivek

    I am attempting to have an interface in which people can upload music files and listen to them through the site. The biggest problem obviously is that someone who uploads an audio track in mp3 format into Mozilla wouldn't be able to play it back (since MF doesn't support mp3 playback since I'm using jPlayer).

    I did some research and found out that I could use command line php using FFmpeg to convert the mp3 to ogg or some other supportable format. I believe I understand (a little bit) how command line php works but I was wondering how I could install it onto phpmyadmin on my hosting service ? Could anyone link me to a tutorial or care to explain ? I tried googling it but I just couldn't find it.

  • Samples Archive Mirror

    27 février 2011, par Multimedia Mike — General

    I’m pleased to announce the first (to my knowledge) public mirror of the world-famous MPlayerHQ multimedia samples archive, hosted right here at multimedia.cx (can you think of a better place ?) :

    http://samples.multimedia.cx/

    Here’s hoping the load doesn’t crush my simple hosting plan (which actually claims quite a bit of bandwidth per month, but we’ll see).