
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (112)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (12031)
-
Révision 103307 : - Les plugins-dist de spip 3.2 ne sont pas supposé avoir de support pour qu’il f...
17 mars 2017, par spip.franck@lien-d-amis.net- La version de mini de compatibilité est maintenant 3.2.0-dev, comme, ça, quand l’alpha sortira, cela devrait être bon (quand la version 3.2.0 stable sortira, je mettrais 3.2.0 comme version mini)
- Il y avait aussi un ou deux mots avec des accents comme par exemple è j’ai fait le changement pour y mettre à la place è ou autres -
Révision 22127 : Report de r22126 : Report minimal de r22116 r22118 r22119 : #3418 : Octave utilis...
10 mai 2015, par cedric - -
ffmpeg main() function in android studio
21 avril 2016, par SpartanHere I am trying to use ffmpeg with gradle experimental plugin.
This is how I included all my shared libraries and their headers in repositories
repositories {
libs(PrebuiltLibraries) {
libavdevice {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libavdevice-57.so")
}
}
libavcodec {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libavcodec-57.so")
}
}
libavutil {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libavutil-55.so")
}
}
libavformat {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libavformat-57.so")
}
}
libswscale {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libswscale-4.so")
}
}
libswresample {
headers.srcDir "/home/spartan/AndroidStudioProjects/Hello/app/src/main/jni/include"
binaries.withType(SharedLibraryBinary) {
sharedLibraryFile = file("/home/spartan/AndroidStudioProjects/Hello/app/src/main/jniLibs/${targetPlatform.getName()}/libswresample-2.so")
}
}
}
}
android.ndk {
moduleName = "video_trim"
ldLibs.addAll(["log", "android","jnigraphics"])
}
android.sources {
main {
jni {
dependencies {
library "libavdevice" linkage "shared"
library "libavcodec" linkage "shared"
library "libavutil" linkage "shared"
library "libavformat" linkage "shared"
library "libswscale" linkage "shared"
library "libswresample" linkage "shared"
}
}
}
}I tested one ffmpeg function(without using main function) which is running successfully. So this configuration seems ok.
No I want to use ffmpeg.c’s
main()
function to usecmd
for that I manually copy pasted ffmpeg.c,cmdutils.c, cmdutils.h, ffmpeg_filter.c, ffmpeg_opt.c,ffmpeg.h in my jni folder along with video_trim.c.( I took refrence from halfninja ).Here I am not using Andoid.mk so instead of LOCAL_C_INCLUDES, tried like this(updated android.ndk) to include ffmpeg folder(cppFlags was not working so I used CFlags also) :
android.ndk {
moduleName = "video_trim"
cppFlags.add("-I/home/spartan/ndk/android-ndk-r11c/sources/ffmpeg-3.0.1")
CFlags.add("-I/home/spartan/ndk/android-ndk-r11c/sources/ffmpeg-3.0.1")
ldLibs.addAll(["log", "android","jnigraphics"])
}But I am getting lot of undefined reference to error.
Ex :/home/spartan/AndroidStudioProjects/Hello/app/src/main/none/cmdutils.c
Error:(1086) undefined reference to 'avfilter_version'
Error:(1086) undefined reference to 'avfilter_configuration'
Error:(1621) undefined reference to 'avfilter_pad_get_type'
Error:(1618) undefined reference to 'avfilter_pad_get_name'
Error:(1610) undefined reference to 'avfilter_next'
Error:(1815) undefined reference to 'avfilter_get_by_name'
Error:(1834) undefined reference to 'avfilter_pad_count'