Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6154)

  • CMake minimum required lowered to 3.1

    25 avril 2019, par Vitaly Kirsanov
    CMake minimum required lowered to 3.1
    
    • [DH] CMakeLists.txt
    • [DH] cmake/UseSystemExtensions.cmake
    • [DH] config.cmake.h.in
    • [DH] doc/CMakeLists.txt
    • [DH] microbench/CMakeLists.txt
    • [DH] src/CMakeLists.txt
    • [DH] src/flac/CMakeLists.txt
    • [DH] src/libFLAC++/CMakeLists.txt
    • [DH] src/libFLAC/CMakeLists.txt
    • [DH] src/share/getopt/CMakeLists.txt
  • ffmpeg path while installing pyffmpeg on ubuntu

    4 février 2014, par flapjacks

    I am having some trouble installing PyFFmpeg. I installed FFmpeg using sudo apt-get install ffmpeg, and then got the PyFFmpeg code from GitHub.

    The instructions on that page say to "edit setup.py to adapt ffmpegpath to your configuration", so I ran which ffmpeg, which spit out /usr/bin/ffmpeg. I put this into the ffmpegpath variable in setup.py, ran sudo python setup.py install got the error /usr/bin/ffmpeg/include: Not a directory.

    I then ran dpkg -L ffmpeg, which spit out /usr/share/doc/ffmpeg, but when I put that into the ffmpegpath variable in setup.py, I get the same big error that I get if I don't edit pyffmpeg at all :

    error: Command "gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/share/doc/ffmpeg/ include -I/usr/include -I./include -I/usr/lib/python2.7/dist-packages/numpy/core/include -I/usr/include/python2.7 -c pyffmpeg.c -o build/temp.linux-x86_64-2.7/pyffmpeg.o" failed with exit status 1

    What should I set pyffmpeg path to ? Am I missing something else here ?

  • Add an image as watermark to a video file with ffmpeg [migrated]

    19 novembre 2013, par Alex Flo

    I would like to add a text to a video file with FFMPEG. While I was able to do this with plain text

    $FFMPEG -y -i $SOURCE \
    -vf drawtext="fontfile=/usr/share/fonts/Lato-Reg-webfont.ttf:fontsize=40:box=1:boxcolor=black:fontcolor=white:text='$WATERMARK':x=(main_w-text_w)-10:y=(main_h-text_h)-4" \
    -threads $THREADS -f mp4 -vcodec mpeg4 -b $MOBILE_BITRATE -r $MOBILE_FRAME_RATE -strict -2 \
    -s $RESOLUTION_SD -acodec libfaac -ar $MOBILE_AUDIO_RATE -ac $MOBILE_AUDIO_CHANNELS -ab $MOBILE_AUDIO_BITRATE \
    $VIDEONAME_MOBILE-android.mp4

    this won't look good enough. So I tried with adding a transparent PNG file as a watermark. Looking for examples I tried like this :

    $FFMPEG -y -i $SOURCE \
    -vf "movie=$WATERMARK_SMALL_PATH [watermark] ; [in][watermark] overlay=10:main_h/2-overlay_h/2 [out]" \
    -threads $THREADS -f mp4 -vcodec mpeg4 -b $MOBILE_BITRATE -r $MOBILE_FRAME_RATE -strict -2 \
    -s $RESOLUTION_SD -acodec libfaac -ar $MOBILE_AUDIO_RATE -ac $MOBILE_AUDIO_CHANNELS -ab $MOBILE_AUDIO_BITRATE \
    $VIDEONAME_MOBILE-android.mp4

    it won't work. I can share the exact error output if that could be useful to anyone.