Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (66)

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

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

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

  • avcodec/vc1dec : Don't open and close decoder during init

    30 octobre 2022, par Andreas Rheinhardt
    avcodec/vc1dec : Don't open and close decoder during init
    

    This is done since 16af29a7a6deff3f6081fca1e36ad96cf8fec77d
    (and is actually unnecessary, because the tables initialized
    in ff_msmpeg4_decode_init() are only ever used in vc1_block.c
    which is only entered after a call to ff_msmpeg4_decode_init())
    in a very ugly manner ; said manner had the byproduct of
    involving lots of unnecessary allocations and even opening
    and closing a hwaccel in case one is used.

    This commit achieves the aim of 16af29a7a6deff3f6081fca1e36ad96cf8fec77d
    by initializing the VLCs used by VC-1 in ff_vc1_init_common().

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

    • [DH] libavcodec/vc1dec.c
  • lavc/qsvenc_hevc : use open GOP by default

    7 octobre 2022, par Haihao Xiang
    lavc/qsvenc_hevc : use open GOP by default
    

    HEVC spec has CRA frame which allows random access with open GOP, hence
    it can achieve higher compression efficiency.

    Removing the entry was suggested by Andreas

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/qsvenc_hevc.c
  • How to overlay clock with real-time in screen recording using ffmpeg for Sharex open source ?

    1er septembre 2022, par calengineer

    I currently have ShareX and using the following command but the clock with real time is not being added and the video gets considerably cut. A 30 second video turns out to be a 4 second video.

    &#xA;

    -hide_banner -f dshow -thread_queue_size 1024 -rtbufsize 256M -audio_buffer_size 80 -framerate 30 -i video="screen-capture-recorder":audio="virtual-audio-capturer" -f dshow -i audio="Microphone (HyperX QuadCast S)" -filter_complex amix=inputs=2:duration=longest -vf "drawtext=fontfile=/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf: \ text=&#x27;%{localtime\:%T}&#x27;: fontcolor=white@0.8: x=7: y=700" -c:v libx264 -r 30 -preset ultrafast -tune zerolatency -crf 28 -pix_fmt yuv420p -movflags &#x2B;faststart -c:a aac -ac 2 -b:a 128k -y "output.mp4"&#xA;

    &#xA;