Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (53)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

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

Sur d’autres sites (7278)

  • Proxy a rtmp stream

    22 février 2015, par lsborg

    How could I proxy a rtmp stream ?

    I have two raspberry pi streaming live video from raspicams on my LAN. Each raspberry pi sends the video to ffmpeg which wraps in flv and sends to crtmpserver.

    A third server using nginx, has a static html page with two instances of jwplayer, each pointing to one raspberry pi.

    The setup is just like this one.

    The web server uses authentication and I’d like streams not to be public too.

    I’m thinking of trying nginx-rtmp-module, but I am not sure if it would help me. Also, it seems dormant and has many open issues.

    I’m open to suggestions, thanks in advance !

  • Ffmpeg hd video editing

    31 août 2012, par Batuhan Topbaş

    I have vps server and i setup ffmpeg succesfully. I downloaded 720p hd video. I need only add text on video. And i added succesfuly but video quality is very low after adding. I use this command

    ffmpeg -i a.mp4 -vf "drawtext=fontsize=30:box=1:fontfile=/usr/share/fonts/a.ttf:text='Stack Overflow':x=(w-text_w)/2:y=(h-text_h-line_h)/2" -strict -2 c.mp4

    I dont know -strict -2 command. i try and ffmpeg error say add -strict -2 then i add. Now i need only add text, not change video quality.

  • Nginx - How and when are "exec" commands executed

    14 juillet 2015, par user1767754

    I have a config file

    rtmp{
       server{
           listen 1935;
           application publish {
           live on;

           exec touch /Users/chaleon/Desktop/myfile.txt;
           }
       }
    }

    1) Is the exec command activated when i call rtmp ://192.168.1.3:1935/publish ?

    Thats what i am expecting, but calling the addresse over vlc, will not cause the exec to run. However i’ve already managed to setup streaming from ffmpeg to a nginx application, which was accessible.