Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (52)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (8596)

  • Revision 6ad18db24f : Palette experiment : encode color indices based on context The basic idea is to

    19 mars 2015, par hui su

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_entropymode.h


     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_palette.c


     Modify /vp9/common/vp9_palette.h


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/encoder/vp9_rd.c


     Modify /vp9/encoder/vp9_rdopt.c



    Palette experiment : encode color indices based on context

    The basic idea is to use a pixel’s neighboring colors as
    context to predict its own color. Up to 4 neighbors are
    considered here : left, left-above, above, right-above.
    To reduce the number of contexts, the combination of any
    4 (or less) colors are mapped to a reduced number of
    patterns. For example, 1111, 2222, 3333, … , can be mapped
    to the same pattern : AAAA. SImilarly, 1122, 1133, 2233, …,
    can be mapped to the pattern AABB. In this way, the total
    number of color contexts is reduced to 16.

    This almost doubles the gain of palette coding on screen
    content videos.

    on screen_content
    — enable-palette +14.2%
    — enable-palette —enable-tx-skip +21.2%

    on derflr
    — enable-palette +0.12%
    with all other experiments +6.16%

    Change-Id : I560306dae216f2ac11a9214968c2ad2319fa1718

  • fate : Add basic tests for WebM Dash Manifest

    26 août 2014, par Vignesh Venkatasubramanian
    fate : Add basic tests for WebM Dash Manifest
    

    Add fate tests that test out the functionality of WebM DASH
    Manifest XML generation. This patch contains the vpx.mak file
    changes and the reference gold XML files.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-audio-streams
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-video-streams
  • FFMPEG : Multiple cuts/splices in the same video ? [duplicate]

    10 août 2018, par Brayden

    This question already has an answer here :

    Sorry in advance if this was a duplicate. I couldn’t find the solution on Google, since the question is weird to word.

    Anyway, can you use ffmpeg commands to splice videos ?

    For example...

    ffmpeg -i MOVIE.mp4 -ss 00:00:00.000 -to 00:06:14.000 -ss 00:07:00.000 -to 00:07:15.000

    You could have multiple -ss and -to commands to basically designate multiple cuts in the video, so that the final result would be from 0:0 to 6:14, and then after that, directly skip to 7:00 and end finally at 7:15. Does that make sense ?

    I know you can use real editors for this, but that’s a bit more time consuming than to just simply do it here with a command. However, if it doesn’t have this feature, it’s not a big deal, I was just wondering.

    Thanks !