Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (46)

  • 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

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

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

  • PHP extension writing

    19 octobre 2013, par Mikko Koppanen — Imagick

    I’ve written quite a few PHP extensions over the past years and thought that I could share some of the experience with larger community. PHP internals can be a bit scary at times and in the past I’ve scoured through a lot of extensions to find practical examples of things such as how to return objects from internal functions/methods, how to handle different types of parameters, class properties etc.

    To document some of the experiences I started a project called extsample, in which I plan to add practical examples related to extension writing. There won’t be extensive written documentation outside the code, but hopefully the code itself contains enough nuggets of information to be useful. As the README says, if you need a specific example or clarification on something just open an issue in Github.

    The project is still very fresh but hopefully soon it will contain more examples. Pull requests are also welcome if you have code that you want to share with others.

  • A few questions about running a video gallery site

    30 septembre 2013, par Kevin Kevinz

    my site is going to be hosting a lot of videos. I'm using FFMPEG for all video functions. My current video upload plan is as follows :

    -get input video
    - make video thumbnail
    - if its mp4/flv, convert it to ogv (for opera support)
    - if its not mp4/flv, convert it to mp4 and also convert the original to ogv

    (the file conversions are running in the background)

    I'm using jwPlayer 6 for all videos currently. What can I do to maximize cross-browser and cross-platform support ? iOS won't run flv because it can't run flash, so is it worth it to just convert every file to MP4 ? And what about HTML5 video ? Should I consider HTML5 as my primary player and jwPlayer my fallback ?

    Thanks everyone.

  • How to split video or audio by silent parts

    18 mars 2016, par TermiT

    I need to automatically split video of a speech by words, so every word is a separate video file. Do you know any ways to do this ?

    My plan was to detect silent parts and use them as words separators. But i didn’t find any tool to do this and looks like ffmpeg is not the right tool for that.