Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (53)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (4406)

  • how to configure ffmpeg for android on windows ?

    26 octobre 2023, par charlieChen

    I have download android-ndk-r20b,ffmpeg on win10 desktop, and msys2 environment to configure the ffmpeg, i have a script file to compile ffmpeg named "ffmpeg.sh" :

    


    #!/bin/bash
BASEDIR=$(pwd)
TOOLCHAIN_PREFIX=/d/softwareToInstall/NDK/android-ndk-r20b/toolchains/llvm/prebuilt/windows/bin
CFLAGS='-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all'
LDFLAGS='-Wl,-z,relro -Wl,-z,now -pie'

./configure \
--target-os=android \
--prefix=../installationForAndroid \
--cross-prefix=$TOOLCHAIN_PREFIX/  \
--cc=$TOOLCHAIN_PREFIX/armv7a-linux-androideabi24-clang \
--cxx=$TOOLCHAIN_PREFIX/armv7a-linux-androideabi24-clang++ \
--ld=$TOOLCHAIN_PREFIX/arm-linux-androideabi-ld \
--nm=$TOOLCHAIN_PREFIX/arm-linux-androideabi-nm \
--arch=armv7a \
--enable-runtime-cpudetect \
--sysroot=/d/softwareToInstall/NDK/android-ndk-r20b/toolchains/llvm/prebuilt/windows/sysroot  \
--enable-pic \
--enable-pthreads \
--enable-cross-compile \
--disable-debug \
--enable-version3 \
--enable-hardcoded-tables \
--disable-ffplay \
--disable-ffprobe \
--disable-pthreads \
--enable-gpl \
--disable-x86asm \
--enable-yasm \
--disable-doc \
--disable-shared \
--enable-static 


    


    the i build ffmpeg with those commands :

    


    $ cd ffmpeg-6.0
$ ./ffmpeg.sh
...
$make -j4
$ make -j4


    


    than it report errors :

    


    enter image description here

    


    how to configure it ? i want compile ffmpeg for android on window10

    


  • How to make Fringe Font by using ffmpeg using command line CLI in windows ?

    21 juin 2015, par Ehtesham Shami

    I have a code of ffmpeg of command line. First I have a input image of letter A and then I am using my sample code on that image and getting another output image with different style of letter A.

    I want to make a border on that output letter A.
    I can’t be attached the photos. I have pasted that code sample.

    Please tell me what is the modification is required in that code sample.

    Code Sample :

    ffmpeg -y -i back.jpg -filter_complex "drawtext=fontfile=/Windows/Fonts/meiryo.ttc:text=A:fontcolor=red:x=100:y=100:fontsize=200" output.jpg
  • Using FFMPEG Video Compression in Windows Batch files [closed]

    21 juillet 2020, par TrainNutter

    I am having some trouble with using FFMPEG in a Windows (10) Batch file. What I am trying to do is to get a Batch file to compress all video files in a folder bu running 1 batch file execution (Per folder) so that I could say run it over night and have 1 folder with a load of video filed compressed down from say 500MB RAW to a much smaller size compressed.

    


    The code I have put together below.

    


    for %%i in (*.mp4) do ffmpeg -i "%%i" vcodec libx265 -crf 24 -o "%%~ni.mp4"


    


    However cmd says the following error : Unable to find output

    


    I don't understand as the -o "%%~ni.mp4" bit is clearly an output. Some helo would be greatly appreciated