Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (15748)

  • lavf : move AVStream.{request_probe,skip_to_keyframe} to AVStreamInternal

    9 octobre 2020, par Anton Khirnov
    lavf : move AVStream.request_probe,skip_to_keyframe to AVStreamInternal
    

    Those are private fields, no reason to have them exposed in a public
    header.

    • [DH] libavformat/asfdec_f.c
    • [DH] libavformat/avformat.h
    • [DH] libavformat/avidec.c
    • [DH] libavformat/internal.h
    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/mpeg.c
    • [DH] libavformat/mpegts.c
    • [DH] libavformat/utils.c
    • [DH] libavformat/wavdec.c
  • ffmpeg : add a data size threshold for muxing queue size

    15 octobre 2020, par Jan Ekström
    ffmpeg : add a data size threshold for muxing queue size
    

    This way the old max queue size limit based behavior for streams
    where each individual packet is large is kept, while for smaller
    streams more packets can be buffered (current default is at 50
    megabytes per stream).

    For some explanation, by default ffmpeg copies packets from before
    the appointed seek point/start time and puts them into the local
    muxing queue. Before, it getting utilized was much less likely
    since as soon as the filter chain was initialized, the encoder
    (and thus output stream) was also initialized.

    Now, since we will be pushing the encoder initialization to when the
    first AVFrame is decoded and filtered - which only happens after
    the exact seek point is hit as packets are ignored until then -
    this queue will be seeing much more usage.

    In more layman's terms, this attempts to fix cases such as where :
    - seek point ends up being 5 seconds before requested time.
    - audio is set to copy, and thus immediately begins filling the
    muxing queue.
    - video is being encoded, and thus all received packets are skipped
    until the requested time is hit.

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_opt.c
  • fftools, libavcodec, libavfilter : Add const to some AVCodec *

    10 septembre 2020, par Andreas Rheinhardt
    fftools, libavcodec, libavfilter : Add const to some AVCodec *
    

    The user has no business modifying the underlying AVCodec.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] libavcodec/avrndec.c
    • [DH] libavcodec/utils.c
    • [DH] libavfilter/lavfutils.c
    • [DH] libavfilter/src_movie.c
    • [DH] libavfilter/vf_mcdeint.c
    • [DH] libavfilter/vf_subtitles.c
    • [DH] libavfilter/vf_uspp.c