Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (13049)

  • ffmpeg compare 2 images Mac

    13 janvier, par Mary

    I am trying to compare two png/jpg images using ffmpeg commands in a Mac terminal from ffmpeg-image-diff location , but I have lots of errors .
I have tried
variant1 :

    


     ffmpeg -i image1.jpg -I image2.jpg -filter_complex "[0:v]format=yuv420p[main];[1:v]format=yuv420p[ref]; [main][ref]psnr=stats_file=psnrs.txt:shortest=1" -f null -


    


    variant2 :

    


    ffmpeg -i image1.png -i image2.png -filter_complex [1:v]negate[inv],[0:v][inv]mix=inputs=2 outdiff.png


    


    , but I'm getting every time

    


    Error opening input file image1.jpg.
Error opening input files: No such file or directory


    


    variant3 :

    


    ffmpeg -i image1jpg -i image2.jpg -filter_complex "[0:v]pad=iw*2:ih[bg]; [bg][1:v:0]overlay=w" output.jpg,


    


    but I have received with no output image created ...

    


    Input #0, png_pipe, from 'image1.jpg':
  Duration: N/A, bitrate: N/A
  Stream #0:0: Video: png, rgba(pc, gbr/bt709/iec61966-2-1), 888x640 [SAR 3779:3779 DAR 111:80], 25 fps, 25 tbr, 25 tbn


    


    I just want to have the differences between the 2 images in the output image.

    


    I have added the 2 images inside the ffmpeg-image-diff folder enter image description here
Can someone please help me ? Is there any other ffmpeg commands for images comparison ?
do I need to install any other libraries from ffmpeg ?, I saw that I have also have this in the terminal

    


    configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/7.1_4 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags='-Wl,-ld_classic' --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libaribb24 --enable-libbluray --enable-libdav1d --enable-libharfbuzz --enable-libjxl --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librist --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-videotoolbox --enable-audiotoolbox --enable-neon
  libavutil      59. 39.100 / 59. 39.100
  libavcodec     61. 19.100 / 61. 19.100
  libavformat    61.  7.100 / 61.  7.100
  libavdevice    61.  3.100 / 61.  3.100
  libavfilter    10.  4.100 / 10.  4.100
  libswscale      8.  3.100 /  8.  3.100
  libswresample   5.  3.100 /  5.  3.100
  libpostproc    58.  3.100 / 58.  3.100


    


    Thanks in advance,
Mary

    


  • how to compare 2 images using ffmpeg ? [closed]

    14 janvier, par Mary

    I am trying to compare two png/jpg images using ffmpeg commands in a Mac terminal from ffmpeg-image-diff location , but I have lots of errors .
I have tried
variant1 :

    


     ffmpeg -i image1.jpg -I image2.jpg -filter_complex "[0:v]format=yuv420p[main];[1:v]format=yuv420p[ref]; [main][ref]psnr=stats_file=psnrs.txt:shortest=1" -f null -


    


    variant2 :

    


    ffmpeg -i image1.png -i image2.png -filter_complex [1:v]negate[inv],[0:v][inv]mix=inputs=2 outdiff.png


    


    , but I'm getting every time

    


    Error opening input file image1.jpg.
Error opening input files: No such file or directory


    


    variant3 :

    


    ffmpeg -i image1jpg -i image2.jpg -filter_complex "[0:v]pad=iw*2:ih[bg]; [bg][1:v:0]overlay=w" output.jpg,


    


    but I have received with no output image created ...

    


    Input #0, png_pipe, from 'image1.jpg':
  Duration: N/A, bitrate: N/A
  Stream #0:0: Video: png, rgba(pc, gbr/bt709/iec61966-2-1), 888x640 [SAR 3779:3779 DAR 111:80], 25 fps, 25 tbr, 25 tbn


    


    I just want to have the differences between the 2 images in the output image.

    


    I have added the 2 images inside the ffmpeg-image-diff folder enter image description here
Can someone please help me ? Is there any other ffmpeg commands for images comparison ?
do I need to install any other libraries from ffmpeg ?, I saw that I have also have this in the terminal

    


    configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/7.1_4 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags='-Wl,-ld_classic' --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libaribb24 --enable-libbluray --enable-libdav1d --enable-libharfbuzz --enable-libjxl --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librist --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-videotoolbox --enable-audiotoolbox --enable-neon
  libavutil      59. 39.100 / 59. 39.100
  libavcodec     61. 19.100 / 61. 19.100
  libavformat    61.  7.100 / 61.  7.100
  libavdevice    61.  3.100 / 61.  3.100
  libavfilter    10.  4.100 / 10.  4.100
  libswscale      8.  3.100 /  8.  3.100
  libswresample   5.  3.100 /  5.  3.100
  libpostproc    58.  3.100 / 58.  3.100


    


    Thanks in advance,
Mary

    


  • add tools/compare-cvelists.sh

    23 février, par Michael Niedermayer
    add tools/compare-cvelists.sh
    

    This compares the MITRE CVE list with our webpage security list and
    produces a diff, so people can investigate, fix, backport and correct
    differences

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/compare-cvelists.sh