Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (89)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (7868)

  • Video cutter like whats app before sending to server [on hold]

    11 mars 2016, par Yampalla Bhaskar Reddy

    I am new to Android development,am working on Video cutter.
    I want to pic video from gallery and show start position and end postion like whatsapp and provide cut option for video if the video is bigger than 16mb before sending to server.
    I have searched for this lot, i have found ffmpeg and mp4parser library are there for trim video but didnt find correct solution.
    if we can do with anyone one of the library(ffmpeg or mp4parser) how ?
    Is there a way to do the same thing ??
    Thank you in advance for your help !

  • How install ffmpeg on wamp server (windows 7 - x64)

    15 avril 2015, par MoonLight

    Please take a look at all these depricated links :
    http://stackoverflow.com/search?q=Install+ffmpeg+in+windows

    i installed wamp server on my windows 7 (x64) machine and want to install ffmpeg on it.

    here is my wamp server version :
    wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-64b

    wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-64b

    here is the official web site of ffmpeg :
    http://ffmpeg-php.sourceforge.net/

    i am really confused where can i download ffmpeg extension for php5.5.12 and how install it ?
    in their official web site there is only one link for download :
    http://sourceforge.net/projects/ffmpeg-php/

    and those downloaded files need perl to run and there is no dll files inside them.
    would be really appreciate to help me step by step to install ffmpeg in my wamp server.

  • Publish many webcams video on RTMP Server Through FFMPEG

    12 août 2014, par M.Yazdian

    I have 4 webcam on my server and I like publish those video on the FMS.

    My operation system on the server is Centos 6.5 final and I install FFMPEG and php5.3.3 on the server.

    Now when I try to publish webcams video to the FMS through FFMPEG just one webcam published. In the Centos performance just run one ffmpeg.

    For this case I use this codes :

    if(!empty($_GET["cam"])){
    if ($_GET["cam"] == '1'){
       exec('ffmpeg -f v4l2 -i /dev/video0 -f flv rtmp://12.11.1.6/live/sample1  > /dev/null &');
    }else if ($_GET["cam"] == '2'){
       exec('ffmpeg -f v4l2 -i /dev/video1 -f flv rtmp://12.11.1.6/live/sample2  > /dev/null &');
    }else if ($_GET["cam"] == '3'){
       exec('ffmpeg -f v4l2 -i /dev/video2 -f flv rtmp://12.11.1.6/live/sample3  > /dev/null &');
    }else if ($_GET["cam"] == '4'){
       exec('ffmpeg -f v4l2 -i /dev/video3 -f flv rtmp://12.11.1.6/live/sample4  > /dev/null &');
    }

    }

    I have four link for start stream each webcam.
    when I click on the link 1 webcam 1 should be stream and link2 webcam 2 start stream , link 3 webcam 3 and link 4 webcam 4 should be start stream

    Please advise me to fix this issue

    any help will be appreciated