Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (43)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8674)

  • building ffmpeg for windows x264.h : No such file or directory

    22 août 2023, par 王伯荣

    I am building ffmpeg using MSYS2 in windows system.

    


    My compilation package is "i686-8.1.0-release-posix-dwarf" of mingw.

    


    My configure option parameters are as follows :

    


    ./configure --prefix="D:\fkit\b" --disable-static --enable-shared --enable-libx264 --enable-gpl --enable-version3 --enable-nonfree --enable-ffserver --enable-ffplay --disable-debug --disable-iconv --disable-zlib --extra-ldflags="-LD:\fkit\xb\lib -lx264" --extra-cflags="-ID:\ fkit\xb\include" --pkgconfigdir="D:\fkit\xb\lib\pkgconfig"

    


    As you can see, "D:fkit\xb" is my libx264 installation directory. I configured —extra-cflags and —extra-ldflags, and the configure script executed fine. But when I execute mingw32-make.exe, it prompts "libavcodec/libx264.c:36:10: fatal error: x264.h: No such file or directory"

    


    I don't have any ideas because everything I do seems normal.

    


  • ffmpeg ERROR : libnpp not found in windows (CUDA9)

    22 janvier 2018, par kyun

    I’m trying to compile ffmpeg according to the method of

    《USING FFMPEG WITH NVIDIA GPU HARDWARE ACCELERATION》。
    Basic situation:win10,ffmpeg3.4,cuda9。

    I configure it with the following options

    --enable-nonfree --enable-nvenc --enable-cuda --enable-cuvid --enable-libnpp --extra-cflags=-Ilocal/include --extra-cflags=-I../nv_sdk/include --extra-ldflags=-L../nv_sdk/x64

    but it aborts with the error

    ERROR : libnpp not found.

    What may cause this error ?

  • Compiling custom FFMPEG for mp3/wav to flac conversion

    3 décembre 2019, par Arttu

    I need to compile ffmpeg from source for CentOS. The goal it to convert MP3 and WAV to FLAC. I tried to compile ffmpeg with this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
    and it worked fine, but took approximately 20min and compiled a bunch unnecessary things, even thought I did not used next options as recommended in guide, but used :

    PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
    --prefix="/opt/tmg/ffmpeg_build" \
    --pkg-config-flags="--static" \
    --extra-cflags="-I/opt/tmg/ffmpeg_build/include" \
    --extra-ldflags="-L/opt/tmg/ffmpeg_build/lib" \
    --extra-libs=-lpthread \
    --extra-libs=-lm \
    --bindir="/opt/tmg/ffmpeg_build/bin" \
    --enable-gpl \
    --enable-libfreetype

    My question is what do I need for MP3 and WAV to FLAC and how do I compile just that part ?

    I found in configuration --disable-all option, but what do I have to enable ?

    Thanks in advance.