Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (85)

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

  • avcodec/prores_aw : add support for prores 444 with alpha

    8 novembre 2018, par Martin Vignali
    avcodec/prores_aw : add support for prores 444 with alpha
    

    only 16b alpha is supported (not 8 bits)

    following official encoder, alpha data doesn't impact
    yuv plane quality.

    So the alpha data encoding is done after the yuv part.
    It's also avoid to loose quality in yuv part when
    alpha is not uniform.

    the alpha encoding funcs is mainly take from prores_ks
    encoder, except for the alpha data reorganization

    • [DH] libavcodec/proresenc_anatoliy.c
  • How to build ffmpeg as a Position independent executable (PIE) or PIC on Android ?

    22 avril 2016, par Parth Doshi

    I have checked out the latest source of ffmpeg from the official website. I now want to compile and build ffmpeg as a position independent executable.

    Here is what my configure command looks like

    ./configure --prefix=/usr/local --enable-gpl --enable-pic --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265

    I have added the option --enable-pic to make it a PIE. However when the build process completes successfully and when I do a hardening check as follows then I get below output

    hardening-check ffmpeg

    ffmpeg:
    Position Independent Executable: no, normal executable!
    Stack protected: yes
    Fortify Source functions: yes (some protected functions found)
    Read-only relocations: yes
    Immediate binding: no, not found!

    This tells me that ffmpeg is still not a PIE. Can anyone tell me what am I missing here ? Is there any other changes that need to be done for adding PIE support.

  • How to fix this FFMPEG command to record audio as well ?

    19 mai 2018, par James Kowalski

    I am trying to fix this FFMPEG command to record audio.

    I have tried using the parts recommended on the official stackoverflow site but they didn’t work

    Orignal Command

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f flv "%s"' % (xvfb.new_display, info['destination'])

    Command with attempted audio

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f alsa -ac 2 -i hw:0 -f flv "%s"' % (xvfb.new_display, info['destination'])