
Recherche avancée
Autres articles (51)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (8547)
-
FFmpeg Batch extracting frames from multiple videos on Windows
23 décembre 2022, par ujjallyI want to extract frames/images per video that will import from a directory and then save those frames into a new folder and the folder name as import video filename.


I tried the below code on Linux and it works perfectly but i can't convert the code to Windows


for i in *.mp4; do mkdir -p "${i%.*}" && ffmpeg -i "$i" -vf fps=1/1 "${i%.*}/%d.jpg"; done



I tried the Linux bash shell on windows and it's worked.

Does have any other options/formats to properly write or convert the code for Windows OS ?

-
MediaElement ffmpeg windows 8.1 [on hold]
30 mai 2014, par user3084145how can in read an ffmpeg stream in windows 8.1 app
i’ve tryed with MediaElement but didn’t work -
Build ffmpeg for Windows CE/Mobile
12 juin 2012, par HarishAfter having many unsuccessful attempts to build ffmpeg for Android on Windows (through cygwin and MiNGW) I finally installed Ubuntu and tried the same, and it built successfully straight away.
Now I want to build ffmpeg for Windows CE/Mobile, whats my best choice ? Should I proceed on Ubuntu or through MiNGW since the targwt is WindowsCE. Just a note that I could build ffmpeg for Windows desktop on Windows through MinGW.
I tried with mingw32ce cross compiler on Ubuntu but I dont get any of the output lib/dll files. I used the below Makefile for Android and it works.
NDK=/media/windows/android-ndk-r8
PLATFORM=$NDK/platforms/android-8/arch-arm/
PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86
$PREBUILT/bin/arm-linux-androideabi-ar d libavcodec/libavcodec.a inverse.o
$PREBUILT/bin/arm-linux-androideabi-ld -rpath-link=$PLATFORM/usr/lib -L$PLATFORM/usr/lib -soname libffmpeg.so -shared -nostdlib -z,noexecstack -Bsymbolic --whole-archive --no-undefined -o $PREFIX/libffmpeg.so libavcodec/libavcodec.a libavformat/libavformat.a libavutil/libavutil.a libswscale/libswscale.a -lc -lm -lz -ldl -llog --warn-once --dynamic-linker=/system/bin/linker $PREBUILT/lib/gcc/arm-linux-androideabi/4.4.3/libgcc.aCan anyone please let me know how I can specify the same for Windows CE ?
PLATFORM=/opt/mingw32ce/arm-mingw32ce
PREBUILT=/opt/mingw32ce
???