Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (48)

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

  • Les images

    15 mai 2013

Sur d’autres sites (5764)

  • png is invalid argument when using ffmpeg

    20 octobre 2020, par Ace_Li

    I am running into invalid argument when I try to convert +5 photos into an mp4 file.
This worked on my mac but it doesnt work on windows 10. Can someone help :) Thanks in advance

    


    here is the command i entered.

    


    ffmpeg -r 1/5 -pattern_type glob -i '*.png' -c:v libx264 output.mp4

    


    C:\Users/userz\Desktop\photos>ffmpeg -r 1/5 -pattern_type glob -i '*.png' -c:v libx264 output.mp4
ffmpeg version N-99502-g0d156eb58a Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 9.3-win32 (GCC) 20200320
  configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static --pkg-config=pkg-config --cross-prefix=x86_64-w64-mingw32- --arch=x86_64 --target-os=mingw32 --enable-gpl --enable-version3 --disable-debug --enable-iconv --enable-zlib --enable-libxml2 --enable-libfreetype --enable-libfribidi --enable-gmp --enable-lzma --enable-fontconfig --enable-libvmaf --disable-vulkan --enable-libvorbis --enable-amf --enable-libaom --enable-avisynth --enable-libdav1d --enable-ffnvcodec --enable-cuda-llvm --disable-libglslang --enable-libass --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvpx --enable-libwebp --enable-libmfx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librav1e --enable-schannel --enable-sdl2 --enable-libsoxr --enable-libsrt --enable-libsvtav1 --enable-libtwolame --enable-libvidstab --enable-libx264 --enable-libx265 --enable-libxvid --enable-libzimg --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags= --extra-ldflags=-pthread --extra-libs=-lgomp
  libavutil      56. 60.100 / 56. 60.100
  libavcodec     58.111.100 / 58.111.100
  libavformat    58. 62.100 / 58. 62.100
  libavdevice    58. 11.102 / 58. 11.102
  libavfilter     7. 87.100 /  7. 87.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
'*.png': Invalid argument


    


  • ios ffmpeg : Unable to find a suitable output format for [on hold]

    21 décembre 2017, par BanaSong

    CONFIGURE_FLAGS=" —enable-muxers —enable-demuxers —enable-cross-compile —disable-debug —disable-programs —disable-doc —enable-pic —enable-decoder=mpeg4 —enable-decoder=mjpeg —enable-decoder=h264 —enable-parser=h264 —enable-parser=aac —disable-ffserver —disable-ffmpeg —disable-ffprobe —enable-avdevice —enable-avfilter —enable-encoders —enable-parsers —enable-decoders —enable-protocols —enable-filters —disable-bsfs —disable-indevs —enable-outdevs —enable-nonfree —enable-gpl —extra-cflags=-fembed-bitcode —extra-cxxflags=-fembed-bitcode "

  • "ERROR : libopencv not found" when compiling ffmpeg

    13 avril 2023, par ArnoBen

    I am trying to install ffmpeg with the libopencv libraries and it fails with the error "ERROR : libopencv not found".

    


    I did install libopencv with sudo apt install libopencv-dev which now prints libopencv-dev is already the newest version (3.2.0+dfsg-4ubuntu0.1), and I can see the files in /usr/include/opencv2.

    


    Here is my full script to compile ffmpeg :

    


    cd ~/ffmpeg_sources && \
wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 && \
tar xjvf ffmpeg-snapshot.tar.bz2 && \
cd ffmpeg && \
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
  --prefix="$HOME/ffmpeg_build" \
  --pkg-config-flags="--static" \
  --extra-cflags="-I$HOME/ffmpeg_build/include" \
  --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
  --extra-libs="-lpthread -lm" \
  --ld="g++" \
  --bindir="$HOME/bin" \
  --enable-gpl \
  --enable-gnutls \
  --enable-libopencv \
  --enable-libtensorflow \
  --enable-libx264 \
  --enable-libfdk-aac \
  --enable-nonfree && \
PATH="$HOME/bin:$PATH" make -j4 && \
make -j4 install && \
hash -r


    


    It works fine if I remove the --enable-libopencv line.

    


    I'm running Ubuntu 18.04.6.

    


    Any help would be appreciated.