
Recherche avancée
Autres articles (103)
-
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 ;
-
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 ) (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (7648)
-
Anomalie #4360 (Nouveau) : Message d’erreur au début de l’installation d’un site web SPIP par spip...
13 juillet 2019, par Vincent ROBERTSur Xampp avec Apache 2.4.39 (Win64) & PHP 7.2.19
En initiant une nouvelle installation avec spiploader, j’ai le message d’erreur suivant :"Warning : Use of undefined constant _DIR_TMP - assumed ’_DIR_TMP’ (this will throw an Error in a future version of PHP) in C :\xampp\htdocs\news-test\pclzip.php on line 28"
Ce message apparaît juste avant le début de l’installation, sur la page "Téléchargement de SPIP - !Le programme va télécharger les fichiers de SPIP à l’intérieur de ce répertoire."
-
Anomalie #2910 : Erreur 404 après redirection après message forum ds un site avec URLs arbo.
8 janvier 2013, par Joachim SENEintéressant : avec URLs Propres+.html le forum fonctionne mais les URLs sont parfois correctes -Titre-article.html parfois non ?page=article&id_article=17 ce qui fait que malgré ça, dans les 2 cas la redirection après validation du message de forum est ok … mais ce n’est pas satisfaisant du pt de (...)
-
How to add overlay image on Video in Android and remove it after certain time interval ?
19 août 2018, par Alok GuptaI have been working on an Android app where I need to display an image (which is basically a Summary of the video) on the video. So, when we play video an Image will be displayed for 5 seconds and then video will start playing.
I am using FFMPEG for this (I am a very beginner to it). I have identified how to add overlay image on video and below is the code that I am using, but somehow it is not giving me correct results. Please refer to the code that I have currently :
String[] cmd = new String[]{"-i", finalVideoPath, "-stream_loop", "1", "-t", "15", "-i", summaryImagePath,
"-filter_complex", "[1:v]format=rgba,fade=in:st=1:d=1:alpha=1,fade=out:st=6:d=1:alpha=1 [ovr]; [0][ovr] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2",
"-preset", "ultrafast", "-acodec", "copy", "-map", "0:a?", finalOutputVideo};I am expecting that the command that I wrote above will :
1. Open the video and will pick up the image and apply on it for sometime.
2. The image will fade out after sometime (given in st and d parameters.
3. Image will come centered on the screen.The output is exact opposite :
What happens is - The video is overlaid on the image, the video gets hidden after a few seconds (whereas it should be opposite). I tried replacing the values of image and video in the command but started getting error.Can someone guide me here. I would really be Thankful.