Recherche avancée

Médias (91)

Autres articles (90)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

Sur d’autres sites (6508)

  • Anomalie #4005 : L’écran de sécurité bloque la connexion sur contrib.spip.net

    29 septembre 2017, par Sir Fantomas

    Effectivement aujourd’hui, je n’ai plus ce bug, mais il y a 3 jours, voici ce que j’avais (aussi bien sur la page de login que dans le pop-up ajax login) :

    Error 403<br />You are not authorized to view this page (Action reservee aux humains)

    Alors, ça me fait peur pour mon futur site ...

    Et l’urgence n’était pas pour moi, mais pour tout nouveau contributeur qui pouvait rencontrer la même difficulté !!

    Est-ce qu’il y aurait un problème (non-identifié à l’heure actuelle) avec cet écran de sécurité ?

  • Converting imges to video

    19 janvier 2014, par DanM

    I am using external camera with my application. The camera takes 9 pictures every second (9fps). The pictures are bitmaps 384x288. I need to create from this pictures a video file.

    What I have tried :

    • Using Jcodec

    The problem : jcodec is relatively slow, and for it to work properly i add the bitmaps to ArrayList and when the record stopped i convert the array to video. I takes to much time. For 30 sec video there is about 1 min rendering time.

    • Using native mediaCodec

    The problem : I could only generate AVI files (video/avc) that not readable in the original android player. I can not use what is written here : http://bigflake.com/mediacodec/ because I developing for API 16. I have tried using (video/mp4v-es) but the video is corrupted and not playable in any player.

    • Using FFmpeg

    The problem : Very complicated to implement in android, and I am not sure it will give me the result I needed after spending time to implement this. The result I need is to record video streaming as I get the bitmap without any delay.

    What can you suggest me ?

  • PHP NetSSH2 command dropped after few minutes

    1er février 2020, par Hamed

    I have an Ubuntu 18.04 server,
    I want to run a ffmpeg command via remote SSH with PHP.
    After around 5 minutes process dropped,
    but it wasn’t returned any error.
    I’ve tested it directly from ssh and there wasn’t any problem.
    Also I’ve increased SSH Connection timeout but my problem is still.

    $ssh = new Net_SSH2('IP_ADDRESS');
    $ssh->login('root', 'PASSWORD') or die("Login failed");
    $command = "sudo ffmpeg -y -i $path/$film -vf subtitles=$path/$subtitle -vcodec h264 -crf 25 $path/$subtitled";
    $ssh->exec($command);