Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (13159)

  • avformat/framecrcenc : print basic side data information again

    11 mai 2021, par James Almer
    avformat/framecrcenc : print basic side data information again
    

    This partially reverts c6ae560a18d67b9ddaa25a0338b7fb55e3312e57.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/framecrcenc.c
    • [DH] tests/ref/fate/copy-trac3074
    • [DH] tests/ref/fate/cover-art-mp3-id3v2-remux
    • [DH] tests/ref/fate/gapless-mp3
    • [DH] tests/ref/fate/id3v2-priv-remux
    • [DH] tests/ref/fate/matroska-mastering-display-metadata
    • [DH] tests/ref/fate/matroska-spherical-mono-remux
    • [DH] tests/ref/fate/matroska-vp8-alpha-remux
    • [DH] tests/ref/fate/mov-cover-image
    • [DH] tests/ref/fate/mxf-d10-user-comments
    • [DH] tests/ref/fate/segment-mp4-to-ts
    • [DH] tests/ref/fate/webm-webvtt-remux
  • avprobe : do not call avio_close() on a custom context

    19 février 2016, par Anton Khirnov
    avprobe : do not call avio_close() on a custom context
    

    avio_close() can only be called on AVIOContexts created by avio_open(2).

    • [DBH] avprobe.c
  • How to select compile parameter with custom need?

    19 février 2019, par Shucheng

    I need to compile a static FFmpeg on macOS and add this build to a Xcode project. If I download a full version from official website that is work. But this version size is huge, and I just need a few format to convert. So I need to compile by myself.

    I’ve tired to compile and it’s worked. But I am not sure how to select compile parameter.

    For instance, I need to convert : ogg,flac,opus,webm files to mp3 file with the minimum size. And my compile parameter :

     ./configure --enable-ffmpeg --enable-small  --enable-static --enable-protocol=file,http,https --enable-libvorbis \
     --enable-libopus --disable-ffplay --disable-ffprobe --enable-demuxer=mp3,mp4,webm_dash_manifest,opus,flac,ogg \
     --enable-decoder=mp3*,vp*,mpeg4*,opus,flac --enable-libmp3lame  --disable-autodetect --disable-network --enable-pthreads

    But it seems not to work, I can’t convert files. Error reason is dyld: Library not loaded: /usr/local/opt/lame/lib/libmp3lame.0.dylib.But I used parameter --enable-static.

    So what should I do ? If I need to support a format to convert, I need to care about which respect ? Thanks