Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (51)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

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

  • "Uncurve" Cinerama-like videos

    2 août 2021, par silent

    I'm pretty new to ffmpeg and I recently found interesting videos that are trying to simulate the Cinerama technology back from 1950x by curving the final video.

    


    Here is the screenshot how it looks like during the playback : https://imgur.com/undefined

    


    I was wondering if it's possible to make this kind of picture back to "normal" rectangular shape ?
Here's a small (30 seconds, 48MB) example of how it looks like : https://ufile.io/8b0139j0

    


    Thanks !

    


  • HLS "bufferStalledError" / "bufferNudgeOnStall"

    20 avril 2022, par Yago

    I'm trying to stream videos with HLS.js, and it works perfectly fine, but when I separate the audio from the video to support multiple audio tracks, it returns these two errors at random times in the video ("bufferStalledError" and "bufferNudgeOnStall").

    


    I've tried using pure ffmpeg, I've tried using shaka packager, and I'm currently using bento4, but this error always occurs

    


    (my bento4 code)

    


    mp4hls --hls-version 4 -o "${outputFolder}" -f
[type=audio,+language=Japanese]"${inputFolder}${epFolder}/1080p.mp4"
[type=video]"${inputFolder}${epFolder}/1080p.mp4"
[type=video]"${inputFolder}${epFolder}/720p.mp4"
[type=video]"${inputFolder}${epFolder}/480p.mp4"
[type=video]"${inputFolder}${epFolder}/360p.mp4"
[type=video]"${inputFolder}${epFolder}/240p.mp4"


    


  • How do I access / stream an IP Camera (RTSP, ONVIF) from iOS using Swift

    24 avril 2015, par European

    I am a beginning Swift programmer with no Objective-C experience. I would like to create a UIView subclass which displays a video stream from an IP camera (RTSP, ONVIF).

    It looks like I will need to use the ffmpeg library http://sourceforge.net/projects/ffmpeg-ios/

    I did find one ffmpeg tutorial in Japanese ;-) http://qiita.com/tottokotkd/items/d9d376d5993961627aec

    Does anyone know of a tutorial on streaming an IP camera using Swift ?