Recherche avancée

Médias (91)

Autres articles (62)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11730)

  • Cocoa FFmpeg seamlessly loop video

    18 septembre 2013, par Marius

    I've seen many people having issues with getting videos to loop seamlessly on iOS. If it's a video that you provide with your app (in other words, if you have control over the file itself), there's a way of getting around the problem - by providing the video as self-contained, looped MOV file. And it works like a charm. The way you do it is :

    • open an MP4 video in QT (QT7 works fine)
    • re-save it as self-contained movie
    • command + a, command + c and then command + v a bunch of times
    • save

    This will create a slightly bigger file than the original.

    So now I've just gotten curious : could the same thing be done in FFmpeg ? If so, how would one take an MP4 video, save it as self-contained MOV and loop it for around 60 minutes, without actually cloning video data and only increasing the file size slightly ?

  • matroskadec : Improve TTA duration calculation

    17 août 2013, par James Almer
    matroskadec : Improve TTA duration calculation
    

    Calculate the duration as accurately as possible to improve decoding of samples
    where the last frame is smaller than the rest.

    Example :
    Take lossless-audio/luckynight-partial.tak from the FATE suit and convert it
    to TTA muxed into matroska :

    ffmpeg -i $(SAMPLES)/lossless-audio/luckynight-partial.tak -c:a tta lucky.mka

    The framemd5 output for lucky.mka without this patch :

    0, 0, 0, 46080, 184320, 7c3751ddd571d2903c3cf0ab4b3e3d0a
    0, 46080, 46080, 46080, 184320, 6b70c782ba1da3f933fde2daa4f96b73
    0, 92160, 92160, 46080, 184320, dcf70d89c54b9a4f0b302d4ec4fb302d
    0, 138240, 138240, 46080, 184320, 48713ca38b388d2ea4abf5b86ed1226f
    0, 184320, 184320, 46080, 184320, 12188a23648e7ebfb07cd6fe9197b2ea
    0, 230400, 230400, 46080, 184320, 49653ab8186a5d4a044ed284671a26e0
    0, 276480, 276480, 46080, 184320, 5e82c6a7fe58c7ea612c03a0a2927dd4
    0, 322560, 322560, 46080, 184320, 83dc449dbd9eab5f2e8ad2b4403d6a21
    0, 368640, 368640, 46080, 184320, bdd6b92c23d30978d4e802d305b0fc49

    With this patch :

    0, 0, 0, 46080, 184320, 7c3751ddd571d2903c3cf0ab4b3e3d0a
    0, 46080, 46080, 46080, 184320, 6b70c782ba1da3f933fde2daa4f96b73
    0, 92160, 92160, 46080, 184320, dcf70d89c54b9a4f0b302d4ec4fb302d
    0, 138240, 138240, 46080, 184320, 48713ca38b388d2ea4abf5b86ed1226f
    0, 184320, 184320, 46080, 184320, 12188a23648e7ebfb07cd6fe9197b2ea
    0, 230400, 230400, 46080, 184320, 49653ab8186a5d4a044ed284671a26e0
    0, 276480, 276480, 46080, 184320, 5e82c6a7fe58c7ea612c03a0a2927dd4
    0, 322560, 322560, 46080, 184320, 83dc449dbd9eab5f2e8ad2b4403d6a21
    0, 368640, 368640, 46080, 184320, bdd6b92c23d30978d4e802d305b0fc49
    0, 414720, 414720, 4230, 16920, b50b440c5bbcecb8e9fbece643447593

    The duration without this patch was calculated as 418950000000, which is bigger
    than uint32_t and as such stored as 2338172288.
    With this patch the duration is correctly calculated as 418950.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Approved-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
  • ffmpeg sync parts of video or exclude intersection frames

    25 octobre 2014, par NadY

    I have two video files that make part of a bigger one, but both parts contain a portion that repeats itself.
    Eg. v1 : 00m-16m ; v2 : 10m-20m ; the part that repeats in both videos it’s 10m-16m

    Is there a way I could recreate the big video by automatically detect the intersection and exclude it from one of the videos ? Or can I find the time interval of the intersection ?

    Thanks !