Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (65)

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

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

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

  • Keep including the full version.h when headers are included externally

    18 mars 2022, par Martin Storsjö
    Keep including the full version.h when headers are included externally
    

    This avoids unnecessary churn and build breakage for users, by
    making sure the whole version.h is included like it has been so far,
    while keeping the benefit of not needing to rebuild most files in
    the ffmpeg tree on minor/micro bumps.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavdevice/avdevice.h
    • [DH] libavfilter/avfilter.h
    • [DH] libavformat/avformat.h
    • [DH] libpostproc/postprocess.h
    • [DH] libswresample/swresample.h
    • [DH] libswscale/swscale.h
  • configure : generate full msvc debug symbols when linking in debug mode

    19 juillet 2013, par Hendrik Leppkes
    configure : generate full msvc debug symbols when linking in debug mode
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • Is possible to make watermark film with libav without decoding full video ?

    2 août 2018, par hawk.hsieh

    Ther is a small png image and a video film.
    I want to overlay this png image into video film and I did it by libavcodec.
    The CPU loading of this overlay process is extermely high.
    To reduce the performance impact, I have the png overlaid in 10 seconds and then copy stream from old file to new ones after 10 seconds.
    The problem is, the video is ok before 10 seconds with png overlaid video.
    After 10 seconds, the video is stalled and begin to show abnormal green block at top of the screen.
    I figure out the spspps maybe different between the original stream and the transcoded stream. Is this a root to cause the video stalled after 10 seconds ?

    Thank you.