
Recherche avancée
Autres articles (57)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12417)
-
Execute FFmpeg commands in android
25 septembre 2013, par user2816350I have all the ffmpeg´s files compiled in my android project, but I don´t know how to call ffmpeg commands. How can I get the "executable" file of the compiled library ? What is it exactly ?
Thanks !! -
avformat_open_input returns -2 (Android)
29 septembre 2013, par IveliusI'm using this FFMPEG port for Android.
My Goal is to read RTSP stream eventually.I can open a stream from a local file (located at "/storage/emulated/0/bunny.mp4") ,
using *avformat_open_input* function.However when I try to open the same file from remote location like *"http_ ://192.168.1.183/bunny.mp4*" , it returns error -2 .
The whole cpp code is here.
Any ideas ?
-
Extracting first frame in video using ffmpeg and android ndk
12 mai 2014, par Papajohn000I’m trying to use android NDK and ffmpeg to extract the first frame of a video. I’ve seen a lot of examples on this website that use the command-line code that looks something like
ffmpeg -i video.mp4 -vframes 1 -an -f image2 -y thumbmail.png 2>&1
I’m new to android NDK and I’m not sure how this plays into the native code file within the jni. Would it be used within a native method or is there a way to accomplish the same task another way using the ffmpeg libraries ?