Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (84)

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9772)

  • lavf : Add an MPEG-DASH ISOFF segmenting muxer

    6 octobre 2014, par Martin Storsjö
    lavf : Add an MPEG-DASH ISOFF segmenting muxer
    

    This is mostly to serve as a reference example on how to segment
    the output from the mp4 muxer, capable of writing the segment
    list in four different ways :
    - SegmentTemplate with SegmentTimeline
    - SegmentTemplate with implicit segments
    - SegmentList with individual files
    - SegmentList with one single file per track, and byte ranges

    The muxer is able to serve live content (with optional windowing)
    or create a static segmented MPD.

    In advanced cases, users will probably want to do the segmenting
    in their own application code.

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

    • [DBH] Changelog
    • [DBH] configure
    • [DBH] libavformat/Makefile
    • [DBH] libavformat/allformats.c
    • [DBH] libavformat/dashenc.c
    • [DBH] libavformat/version.h
  • lavfi : add a new filtergraph parsing API

    16 janvier 2023, par Anton Khirnov
    lavfi : add a new filtergraph parsing API
    

    Callers currently have two ways of adding filters to a graph - they can
    either
    - create, initialize, and link them manually
    - use one of the avfilter_graph_parse*() functions, which take a
    (typically end-user-written) string, split it into individual filter
    definitions+options, then create filters, apply options, initialize
    filters, and finally link them - all based on information from this
    string.

    A major problem with the second approach is that it performs many
    actions as a single atomic unit, leaving the caller no space to
    intervene in between. Such intervention would be useful e.g. to
    - modify filter options ;
    - supply hardware device contexts ;
    both of which typically must be done before the filter is initialized.

    Callers who need such intervention are then forced to invent their own
    filtergraph parsing, which is clearly suboptimal.

    This commit aims to address this problem by adding a new modular
    filtergraph parsing API. It adds a new avfilter_graph_segment_parse()
    function to parse a string filtergraph description into an intermediate
    tree-like representation (AVFilterGraphSegment and its children).

    This intermediate form may then be applied step by step using further
    new avfilter_graph_segment*() functions, with user intervention possible
    between each step.

    • [DH] doc/APIchanges
    • [DH] libavfilter/avfilter.h
    • [DH] libavfilter/graphparser.c
    • [DH] libavfilter/version.h
  • build : Fine-grained link-time dependency settings

    22 janvier 2017, par Diego Biurrun
    build : Fine-grained link-time dependency settings
    

    Previously, all link-time dependencies were added for all libraries,
    resulting in bogus link-time dependencies since not all dependencies
    are shared across libraries. Also, in some cases like libavutil, not
    all dependencies were taken into account, resulting in some cases of
    underlinking.

    To address all this mess a machinery is added for tracking which
    dependency belongs to which library component and then leveraged
    to determine correct dependencies for all individual libraries.

    • [DBH] Makefile
    • [DBH] avbuild/common.mak
    • [DBH] avbuild/library.mak
    • [DBH] configure
    • [DBH] tests/checkasm/Makefile