
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (32)
-
Les vidéos
21 avril 2011, parComme 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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP 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 (3543)
-
Using FFMPEG Video Compression in Windows Batch files [closed]
21 juillet 2020, par TrainNutterI 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

-
How to make Fringe Font by using ffmpeg using command line CLI in windows ?
21 juin 2015, par Ehtesham ShamiI 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
-
how to configure ffmpeg for android on windows ?
26 octobre 2023, par charlieChenI 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 :




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