Recherche avancée

Médias (91)

Autres articles (62)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9140)

  • Revision 32191 : lister explicitement les url des liens dans le forum dans le mail de ...

    18 octobre 2009, par cedric@… — Log

    lister explicitement les url des liens dans le forum dans le mail de notification

  • Is there any way to port ffmpeg command to Android without root the device ?

    8 février 2014, par user1429903

    This link http://www.roman10.net/how-to-port-ffmpeg-the-program-to-androidideas-and-thoughts/ talks about port ffmpeg command to Android.

    Can anyone describe more detail ?

    My purpose is to record user's behavior on Android device and save as video file which contains user's sound.

  • executing a command from php that requires being root

    8 août 2017, par P.G

    I would like to find a solution to this problem : I have a list of images that i want to convert into a video on the server. I’ve created a virtual machine with centOS and installed ffmpeg to test that. Everything working well when I type myself this line in the terminal

    sudo ffmpeg -r 10 -i img%03d.png -c:v libx264 -preset veryslow -crf 0
    video.mp4

    What I want is to call this when I click on a button. Here is the code :

    Javascript :

    $(document).ready(function(){
       $("#ffmpeg").click(function(){
           $.get('ffmpegBooklet.php', function (data) {
               console.log(data);
          });
       });
    });

    PHP :

    echo shell_exec("/usr/local/bin/ffmpeg  -r 10 -i /img%03d.png -c:v
    libx264 -preset veryslow -crf 0 video.mp4 2>&1");

    What i get in the console of the browser is :
    the log from ffmpeg and at the end —> Permission denied

    I’ve tried with a static build (after reading on internet) but I have the same problem. Is there any solution to do this without the sudo rights ? I don’t want to do this as sudo or to some tricky command to give sudo permissions through php because I think it’s not secure.

    Any helps is welcome ! Thanks for reading it :)