
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (85)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11108)
-
FFMPEG issues for android lollipop. error : only position independent executables (PIE) are supported
18 mars 2015, par Arslan AhmadI was using the FFmpeg library in my application from the last 2 years and it still working fine on old version. It wont even work on android lollipop.
I was using these library before.
String[] libraryAssets = { "ffmpeg", "libavcodec-55.so", "libavcodec.so",
"libavfilter-4.so", "libavfilter.so", "libavformat-55.so",
"libavformat.so", "libavutil-52.so", "libavutil.so",
"libswresample-0.so", "libswresample.so", "libswscale-2.so",
"libswscale.so"
};And I have got the answer from other link that if we use these 3 libraries it will work on lollipop aswell
"liblicense-jni.so,","libloader-jni.so","libvideokit.so"
But still It didnot resolve yet.
Please check this log.***Starting FFMPEG***
***error: only position independent executables (PIE) are supported.***
***Ending FFMPEG***Any help or any update in library ??
-
FFMPEG issues for android lollipop
18 février 2015, par Arslan AhmadI was using the FFmpeg library in my application from the last 2 years and it still working fine on old version. It wont even work on android lollipop.
I was using these library before.
String[] libraryAssets = { "ffmpeg", "libavcodec-55.so", "libavcodec.so",
"libavfilter-4.so", "libavfilter.so", "libavformat-55.so",
"libavformat.so", "libavutil-52.so", "libavutil.so",
"libswresample-0.so", "libswresample.so", "libswscale-2.so",
"libswscale.so"
};And I have got the answer from other link that if we use these 3 libraries it will work on lollipop aswell
"liblicense-jni.so,","libloader-jni.so","libvideokit.so"
But still It didnot resolve yet.
Please check this log.***Starting FFMPEG***
***error: only position independent executables (PIE) are supported.***
***Ending FFMPEG***Any help or any update in library ??
-
FFMPEG SilenceDetect
16 février 2015, par Sreenivas ShenoyI am trying to understand the output obtained from FFMPEG. A part of the output, I obtained is as shown below.
[null @ 000000000449e740] Encoder did not produce proper pts, making some up
[silencedetect @ 00000000048263a0] silence_start: -0.00356009
[silencedetect @ 00000000048263a0] silence_end: 11.4242 | silence_duration:11.4278
[silencedetect @ 00000000048263a0] silence_start: 11.7457
[silencedetect @ 00000000048263a0] silence_end: 11.8422 | silence_duration: 0.0964399
[silencedetect @ 00000000048263a0] silence_start: 12.1173
.....
[silencedetect @ 00000000048263a0] silence_end: 113.708 | silence_duration: 0.14288
[silencedetect @ 00000000048263a0] silence_start: 113.751
frame= 3254 fps=297 q=0.0 Lsize=N/A time=00:02:10.17 bitrate=N/A
video:305kB audio:22424kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknownI understand that, silence_start gives the timestamp at which silence in the audio file is detected and silence_end gives the ending timestamp. I have two questions here
1) How come the timestamp for the first silence_start has a negative value ?(-0.00356009)
2)In the last line of the output I could see the silence_start is at 113.751, but unable to see the silence_end. Why is it so ?