
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (69)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (10246)
-
generate transparent video overlay or another way ?
5 février 2016, par user2995705my src files are lots of pngs, and b.mp4
What i want :
overlay pngs (as anim) on b.mp4the way i have tried :
the size of 200 pngs are almost 40M,could not put into the android phone..
so I generate pngs to transparent video use this command :
"ffmpeg -i %04d.png -vcodec png a.mov
"then use
"ffmpeg -i b.mp4 -i a.mov -vf overlay=0:0:0 out.mp4
",
it worked.
but the problem I got is that the size of a.mov is too big (200 pngs,each file is 100k, a.mov is about 100M ),and i tried -vcodec copy,rawvideo,qtle,also got a very big file. are there any idea to resolve this problem ?then I tried to find another way:I generate pngs to mp4,use
ffmpeg -i %04d.png -vcodec libx264 a.mp4
and I know libx264 with yuv420p(libx264 not support yuva420p) could not keep the alpha channel ? but I still want to have a try.then I overlay a.mp4 on b.mov ;
obviously,a black background under a.mp4 ....because it lost it’s alpha channel ?
then I tried blend filter, I findblend=all_mode=lighten
looks a bit same as what i want ?but it’s still not as same as the effect (overlay)any one who can help me ,thanks
-
How to create a blank mp3 using ffmpeg ?
11 mai 2017, par Vrushank UpadhyayI have built ffmpeg for android by using android NDK. I am using cocos game-engine to compile and run the project. I want to create a blank mp3 of lets say 20 seconds when a button is pressed. I have tried almost everything. The following command generates an output file but it is of 0 bytes.
ffmpeg -f lavfi -i anullsrc=r=48000 -t 20 -codec copy /sdcard/output.mp3
My ffmpeg configuration is :
> ./configure \
> --prefix=$PREFIX \
> --disable-network \
> --disable-doc \
> --disable-ffplay \
> --disable-ffprobe \
> --disable-ffserver \
> --disable-symver \
> --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
> --target-os=linux \
> --arch=arm \
> --enable-cross-compile \
> --sysroot=$SYSROOT \
> --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
> --extra-ldflags="$ADDI_LDFLAGS" \Any help would be appreciated. I am testing this on an android phone. I have built static libraries for ffmpeg and they are linked to the project.
-
lavc/hevcdec : fix the HEVC decoder crash when memory over-read
13 mars 2020, par qorolianglavc/hevcdec : fix the HEVC decoder crash when memory over-read
Fix an occasional crash for hevc decoder in ARM 32 platform, the
root cause is the memory over read(read cross the memory boundary)
in SAO NENO functions ff_hevc_sao_band_filter_neon_8 and
ff_hevc_sao_edge_filter_neon_8.After this fix, the crash disapper in the massive Android phone
test.Signed-off-by : qoroliang <qoroliang@tencent.com>