Recherche avancée

Médias (91)

Autres articles (76)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (4940)

  • Revision 5d2f6baac3 : thumb : Adjust the conversion of the position independent switch This is require

    15 mai 2013, par Martin Storsjo

    Changed Paths :
     Modify /build/make/thumb.pm



    thumb : Adjust the conversion of the position independent switch

    This is required since the microsoft assembler claims that
    add.w r12, pc, #10
    generated unpredictable behaviour.

    Change-Id : Ia8e1830def965c88ca4e2f48a24107bac6a4cb9d

  • Merge commit '4141a5a240fba44b4b4a1c488c279d7dd8a11ec7'

    4 octobre 2017, par James Almer
    Merge commit '4141a5a240fba44b4b4a1c488c279d7dd8a11ec7'
    

    * commit '4141a5a240fba44b4b4a1c488c279d7dd8a11ec7' :
    Use modern avconv syntax for codec selection in documentation and tests

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] doc/encoders.texi
    • [DH] doc/faq.texi
    • [DH] doc/filters.texi
    • [DH] doc/indevs.texi
    • [DH] doc/outdevs.texi
    • [DH] tests/fate/demux.mak
    • [DH] tests/fate/ffmpeg.mak
    • [DH] tests/fate/filter-audio.mak
    • [DH] tests/fate/h264.mak
    • [DH] tests/fate/hevc.mak
    • [DH] tests/fate/libswresample.mak
    • [DH] tests/fate/microsoft.mak
    • [DH] tests/fate/mp3.mak
    • [DH] tests/fate/mpc.mak
    • [DH] tests/fate/mxf.mak
    • [DH] tests/fate/prores.mak
    • [DH] tests/fate/utvideo.mak
    • [DH] tests/fate/vcodec.mak
    • [DH] tests/fate/video.mak
    • [DH] tests/fate/vpx.mak
    • [DH] tests/fate/vqf.mak
  • Why Safari does not play mp4 though Chrome plays it ?

    30 octobre 2022, par János

    This mp4 is generated from a gif : https://t44-post-cover.s3.eu-central-1.amazonaws.com/gp2w.mp4

    &#xA;

    It is playable on Chrom, not on Safari. Why ? What is the problem ?

    &#xA;

    This is the conversion command :

    &#xA;

            await new Promise<void>((resolve, reject) => {&#xA;            ffmpeg&#xA;                .input(`/tmp/input_${imgId}.gif`)&#xA;                .outputOptions([&#xA;                    &#x27;-c:v libx264&#x27;,&#xA;                    &#x27;-movflags &#x2B;faststart&#x27;,&#xA;                    &#x27;-movflags frag_keyframe&#x2B;empty_moov&#x27;,&#xA;                ])&#xA;                .noAudio()&#xA;                .output(`/tmp/output_${imgId}.mp4`)&#xA;                .on(&#x27;end&#x27;, () => {&#xA;                    console.log(&#x27;MP4 video generated&#x27;)&#xA;                    resolve()&#xA;                })&#xA;                .on(&#x27;error&#x27;, (e) => {&#xA;                    console.log(e)&#xA;                    reject()&#xA;                })&#xA;                .run()&#xA;        })&#xA;</void>

    &#xA;

    Using ffmpeg-static :

    &#xA;

    const pathToFfmpeg = require(&#x27;ffmpeg-static&#x27;)&#xA;const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;)().setFfmpegPath(pathToFfmpeg)&#xA;

    &#xA;