Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

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)

  • ERROR : dav1d >= 0.2.1 not found using pkg-config

    24 avril 2020, par Dmitry Maksakov

    I am trying to build ffmpeg with dav1d. I've successfully built davit using the following commands :

    



    git clone --depth=1 https://code.videolan.org/videolan/dav1d.git && \
cd dav1d && \
mkdir build && cd build && \
meson .. && \
ninja


    



    After that, I am running a config command for the FFmpeg and get the error :

    



    PKG_CONFIG_PATH="/app/ffmpeg_build/lib/pkgconfig" ./configure \
    --prefix="/app/ffmpeg_build" \
    --pkg-config-flags="--static" \
    --extra-cflags="-I/app/ffmpeg_build/include" \
    --extra-ldflags="-L/app/ffmpeg_build/lib" \
    --extra-libs="-lpthread -lm" \
    --bindir="/usr/local/bin" \
    --enable-gpl \
    --enable-libass \
    --enable-libmp3lame \
    --enable-libfreetype \
    --enable-libopus \
    --enable-libvorbis \
    --enable-libx264 \
    --enable-libdav1d \
    --enable-nonfree


    



    (All other libs are installed and FFmpeg configures and builds correctly with them if I omit --enable-libdav1d, but in case of the above command I get) :

    



    ERROR: dav1d >= 0.2.1 not found using pkg-config


    



    I think the reason could be that meson puts bin files in the wrong directory. Could anyone please help ?

    



    P.S. I am using Ubuntu 18.04.

    



    Example of build commands for the other libs :

    



    git -C x264 pull 2> /dev/null || git clone --depth 1 https://code.videolan.org/videolan/x264.git && \
cd x264 && \
PKG_CONFIG_PATH="/app/ffmpeg_build/lib/pkgconfig" ./configure --prefix="/app/ffmpeg_build" --bindir="/usr/local/bin" --enable-static --enable-pic && \
make && \
make install


    


  • https support for ffmpeg centos ?

    15 novembre 2016, par Abhishek saini

    I have installed ffmpeg on centos.But when I feed url with https like

    ffmpeg -i https://s3-us-west-2.amazonaws.com/bucket/check.mp4 video.mp4

    Error come

    https protocol not found, recompile FFmpeg with openssl, gnutls, or securetransport enabled.

    I know i have to enable this --enable-openssl,but when i am doing like this

    PKG_CONFIG_PATH="/ffmpeg_build/lib/pkgconfig"
    ./configure --prefix="$HOME/ffmpeg_build" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib -ldl" --bindir="$HOME/bin" --pkg-config-flags="--static" --enable-gpl --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-openssl

    It give me error like :

    ERROR: opus not found

    What should I do to enable https? Please help

  • FFMPEG won't configure for iPhone

    5 août 2016, par iSkythe

    I have downloaded FFMPEG via svn, and put the gas-preprocessor into usr/local/bin. But, when I try to post the following code into terminal, it says : -bash: ./configure: No such file or directory

    This is the code :

    ./configure
    —cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc —as=’gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc’
    —sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk —enable-cross-compile —target-os=darwin —arch=arm —cpu=arm1176jzf-s —disable-pic —enable-gpl —enable-postproc —disable-debug —disable-stripping —enable-avfilter —enable-avfilter-lavf —extra-cflags=’-arch armv6’ —extra-ldflags=’-arch armv6’

    I am using Snow Leopard 10.6.1. What am I doing wrong ?