Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (87)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7133)

  • Add unique color watermark per frame with FFMpeg

    26 octobre 2018, par Dustin Kerstein

    I’ve been able to add a random color watermark with this code :

    ffmpeg -y -r 100 -i "N%3d.tif" -c:v libx264 -vf "drawbox=y=0:color=random@1:width=8:height=ih:t=fill,scale=1920:1080" -crf 30 -g 10 -profile:v high -level 4.1 -pix_fmt yuv420p test.mp4

    And I know that it’s doable with a script and processing each input frame individually, but I would really like to find a way with FFMpeg to add the watermark during the actual video encoding. It needs to be a unique color per frame. Any ideas on how to accomplish this ?

    Thanks !

  • FFMPEG Waveform with specific color

    17 octobre 2016, par Jeremy

    looking to get a waveform from an input that is this specific gold color #ad9557 (173/255, 149/255, 87/255) and have a transparent background / or black if not possible.

    I’m currently using this script to generate it :

    command = new String[]{
                   "-i", mRapFile.getAbsolutePath(),
                   "-filter_complex",
                   "showwavespic",
                   "-frames:v",
                   "1",
                   mWaveFormFile.getAbsolutePath()};

    The waveform is there but is a weird orange color now. How can I change this ?

    Thank you !

  • OpenCV3.1 compilation error 'ffmpeg/avformat.h' file not found

    15 décembre 2016, par aquagremlin

    On MacOS 10.9.5 Mavericks. I used homebrew to install Python, cmake, ffmpeg.
    Entering ffmpeg in terminal shows it is installed.
    I downloaded Opencv3 and opencv_contrib

    Then cmake with this :

    cmake -D CMAKE_BUILD_TYPE=RELEASE \
       -D WITH_CUDA=OFF -D CMAKE_INSTALL_PREFIX=/Users/stefan/Downloads/opencv-3.1.0dl/build \
       -D PYTHON2_LIBRARIES=/usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/bin \
       -D PYTHON2_PACKAGES_PATH=~/.virtualenvs/cv/lib/python2.7/site-packages \
       -D PYTHON2_NUMPY_INCLUDE_DIRS=~/.virtualenvs/cv/lib/python2.7/site-packages/numpy/core/include \
       -D PYTHON2_INCLUDE_DIR=/usr/local/Frameworks/Python.framework/Headers \
       -D INSTALL_PYTHON_EXAMPLES=ON -D WITH_TBB=ON  -D INSTALL_C_EXAMPLES=ON \
       -D FFMPEG_INCLUDE_DIR=/usr/local/Cellar/ffmpeg/3.0.2/include \
       -D FFMPEG_LIB_DIR=/usr/local/Cellar/ffmpeg/3.0.2/lib \
       -D BUILD_EXAMPLES=ON \
       -D OPENCV_EXTRA_MODULES_PATH=~/Downloads/opencv_contrib-3.0.0/modules ..

    Terminal output included this :

    --   Video I/O:
    --     DC1394 1.x:                  NO
    --     DC1394 2.x:                  NO
    --     FFMPEG:                      YES
    --       codec:                     YES (ver 57.24.102)
    --       format:                    YES (ver 57.25.100)
    --       util:                      YES (ver 55.17.103)
    --       swscale:                   YES (ver 4.0.100)
    --       resample:                  YES (ver 3.0.0)
    --       gentoo-style:              YES

    But CMakeError.log had this as its only error :

    ffmpeg/avformat.h file not found

    The file does exist at

    /usr/local/Cellar/ffmpeg/3.0.2/include/libavformat/avformat.h

    I do not understand why I am getting this error if I properly specified the FFMPEG include directories in the cmake command. Also the variables FMPEG_INCLUDE_DIR and FFMPEG_LIB_DIR do not exist in the file, CMakeLists.txt.
    Does that make my use of those variables in the cake command useless ?