Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (67)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11809)

  • avcodec/proresenc_kostya : Factor flushing PutBitContext out

    25 mars 2021, par Andreas Rheinhardt
    avcodec/proresenc_kostya : Factor flushing PutBitContext out
    

    The function to write an ordinary (luma or chroma) plane as well as
    the function for writing an alpha plane have some similarities :
    They record the initial bitposition (despite said position always being
    byte-aligned), flush the PutBitContext themselves and return the amount
    of bytes they wrote.

    This commit factors this out ; it also replaces bitpositions by
    bytepositions and it avoids recording the initial byteposition because
    said information is already available from the position at the end of
    the last plane.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/proresenc_kostya.c
  • mpegts : pass MpegTSContext ptr explicitly

    8 juillet 2014, par Alexander V. Lukyanov
    mpegts : pass MpegTSContext ptr explicitly
    

    AVFormatContext->priv_data is not always a MpegTSContext, it can be
    RTSPState when decoding a RTP stream. So it is necessary to pass
    MpegTSContext pointer explicitly.

    Within libav, the write_section_data function doesn’t actually use
    the MpegTSContext at all, so this doesn’t change anything at the
    moment (no memory was corrupted before), but it reduces the risk of
    anybody trying to touch the MpegTSContext via AVFormatContext->priv_data
    in the future.

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

    • [DBH] libavformat/mpegts.c
  • Font size messes up when I try to hardsub

    7 septembre 2020, par かかし9000

    I have used the following command for a hardsub and everything worked but the subtitle size increased :

    &#xA;

    ffmpeg -vsync 0 -i input.mkv -vf "ass=subs.ass" -c:a copy -c:v h264_nvenc -b:v 700k final.mp4&#xA;

    &#xA;

    i used a srt type file before using ass but that command made the text size take up almost half the screen and the force_style filter shows it executed properly but there was no change in text size at all

    &#xA;

    though the ass sub style gets me a proper subtitle size i'd very much like it if the size was appropriate

    &#xA;