Recherche avancée

Médias (91)

Autres articles (72)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (11612)

  • How to remove ffmpeg artifacts in the output timelapse video ?

    14 avril 2020, par Anthony Kong

    I used a number of jpeg files to create a timelapse video with ffmpeg. Individually they are visually ok.

    



    These source images are captured by a mirrorless DSL camera in JPEG format.

    



    If I upload the timelapsevideo to youtube, the video is clear and without any artifact : https://www.youtube.com/watch?v=Qs-1ahCrb0Y

    



    However if I play the video file locally on MacOS in Photo or Quicktime apps or in iOS, there are artifacts in the video. Here are some of the examples :

    



    1.

    



    enter image description here

    



    2.

    



    enter image description here

    



    This is the ffmpeg command I used to generate the video :

    



    ffmpeg -framerate 30 -pattern_type glob  -i  "DSCF*.JPG" -pix_fmt yuv420p -profile baseline  output.mp4


    



    What additional parameter I can use to remove those artifacts ?

    



    Edit :

    



      

    1. File info
    2. 


    



    enter image description here

    



      

    1. The video plays without issue in VLC.
    2. 


    


  • gphoto2 pipe: : Invalid data found when processing input

    13 avril 2020, par Taegan Obermeyer

    So I have been following this tutorial https://medium.com/nerdery/dslr-webcam-setup-for-linux-9b6d1b79ae22 and when I got to the point to actually take a photo with the camera I have no issues but when I get to try to capture with it I get 
pipe:: Invalid data found when processing input

    



    The entire command is listed as follows :

    



    $ gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video0
Capturing preview frames as movie to 'stdout'. Press Ctrl-C to abort.
ffmpeg version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)
  configuration: --prefix=/usr --extra-version=0ubuntu0.18.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
  libavutil      55. 78.100 / 55. 78.100
  libavcodec     57.107.100 / 57.107.100
  libavformat    57. 83.100 / 57. 83.100
  libavdevice    57. 10.100 / 57. 10.100
  libavfilter     6.107.100 /  6.107.100
  libavresample   3.  7.  0 /  3.  7.  0
  libswscale      4.  8.100 /  4.  8.100
  libswresample   2.  9.100 /  2.  9.100
  libpostproc    54.  7.100 / 54.  7.100
ERROR: Movie capture error... Exiting.
Movie capture finished (0 frames)
pipe:: Invalid data found when processing input


    


  • FFMPEG : Stream in Stream aka Picture in Picture

    29 janvier 2020, par F O X

    Any chance that i could make picture in picture with ffmpeg (ubuntu) ?

    My single stream is working with this command very well :

    ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://.......... -b:v 800k -maxrate 900k -bufsize 600k -vcodec copy -crf 35 -preset veryfast -pix_fmt + -c:a aac -f flv rtmp://a.rtmp.youtube.com/live2/........

    Tried several ideas but all of them are using libx264 instead of just -vcodec copy and i don’t know why but with libx264 my bitrate stream and fps are terrible low. So is there any way to just copy both streams and scale one of them to lowerleft corner ?

    photo here

    Of course i would be using two different streams.