Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (68)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (5873)

  • h264_cabac : constify all uses of H264Context

    27 janvier 2015, par Anton Khirnov
    h264_cabac : constify all uses of H264Context
    

    All the variables modified by this code are either per-MB arrays or have
    been moved to the per-slice context

    • [DBH] libavcodec/h264.h
    • [DBH] libavcodec/h264_cabac.c
  • fftools/ffmpeg_opt : move opening input files to ffmpeg_demux.c

    17 octobre 2022, par Anton Khirnov
    fftools/ffmpeg_opt : move opening input files to ffmpeg_demux.c
    

    This is similar to what was done before for output files and will allow
    introducing demuxer-private state in future commits

    Unlike for muxing, the code is moved to existing ffmpeg_demux.c rather
    than to a new file. The reason is just file size - the demuxing code is
    much smaller than muxing.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_demux.c
    • [DH] fftools/ffmpeg_opt.c
  • fftools/ffmpeg_dec : move decoding to a separate thread

    2 juin 2023, par Anton Khirnov
    fftools/ffmpeg_dec : move decoding to a separate thread
    

    This is only a preparatory step to a fully threaded architecture and
    does not yet make decoding truly parallel - the main thread will
    currently submit a packet and wait until it has been fully processed by
    the decoding thread before moving on. Decoder behavior as observed by
    the rest of the program should remain unchanged. That will change in
    future commits after encoders and filters are moved to threads and a
    thread-aware scheduler is added.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_dec.c
    • [DH] fftools/ffmpeg_mux.c