Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (38)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

Sur d’autres sites (4084)

  • ffmpeg integration with Codeignitor [on hold]

    14 novembre 2016, par Nomi

    I am working on a project which have the following requirements...

    1. It should upload a video .
    2. then it should verify what type of video file it is i.e flv ,mp4
      etc.
    3. it should also configure its resolution according to our needs.
    4. and then finally save it into a database.

    I have been searching the possible solution for this and learned that ffmpeg could be a solution.But i haven’t been able to learn how to code it.
    Can Somebody please guide me on how to install ffmpeg with Codeignitor from scratch OR some other library which could serve the same purpose .

  • php_ffmpeg extension installed, want to know available classes in this extension [on hold]

    25 septembre 2013, par user2808180

    I have successfully installed the php extension "php_ffmpeg" and it is working fine. I tested the extension with class ffmpeg_movie and It shows me complete information of the file.

    But the problem is to convert any uploaded video file to flv. Is there any classes available in the extension 'php_ffmpeg', I would like you to share some sample code for that.

    I will like to stick to php code as I am not sure that I might not get access to the share server shell.

    I also tried exec, on my Windows Based local machine, but I haven't found success beyond "DIR" command.

    Please if you have some knowledge about "php_ffmpeg" extension and classes available in it, with example code or know some resource which include that please help me.

    $return = 1;
    $output = array();

    $source = $_SERVER['DOCUMENT_ROOT'] . '/sample.avi';
    $target = $_SERVER['DOCUMENT_ROOT'] . '/target.flv';


    $cmd = "ffmpeg -i {$source} {$target}";

    exec($cmd, $output, $return);


    echo &#39;<pre>&#39;; print_r($output); echo &#39;</pre>&#39;;

    echo $cmd;
  • Android simple video editor app [on hold]

    30 mars 2014, par gopgop

    I am working on a small android project..

    The goal of the app is to pull video files from the library or images and combine those into a video and save it into the library.

    I already have made the part where it pulls the images and videos, now I am stuck..

    How would you go about combining the images and videos to make one video file using java and android ?

    Can someone please guide me ?

    I have looked around and did not find any clear winner,
    I'd prefer not to use FFmpeg as its not pure java..

    Thanks.