Recherche avancée

Médias (91)

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (4165)

  • Is it possibel extract thumbnails and save them on website using youtube video. (by front-end users)

    24 octobre 2013, par Jaewook Koh

    I read blog about print youtube video on "http://www.labnol.org/internet/print-youtube-video/28217/".

    I have a self-hosted video site.

    But video hosting makes too many traffic.

    So I decideed another plan for site.

    It's to generate thumbnails of external video. Is it possible ?

    I found making thumbnails using ffmpeg, but there are a lot of videos in external platform(Like Youtube, Vimeo, etc)

    After I saw Amit Agarwal's blog("print youtube video"), I was very impressed.

    Anyway if it is impossible, I should find another way.

    Thanks-

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