
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (62)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (10345)
-
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


-
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
-
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