Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (52)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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