
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 (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (9317)
-
Android - concatenate two videos
4 décembre 2016, par Marc Plano-LesayI’m trying to concatenate two videos on Android. I’m already using ffmpeg for other needs, but I’m using halfninja’s one, which is only 0.9. The 0.9 one doesn’t allow the following ways to do it :
// filter_complex isn't recognized
vk.run(new String[] {
"ffmpeg",
"-i",
inputFile1,
"-i",
inputFile2,
"-filter_complex",
"'[0:1] [0:0] [1:1] [1:0] concat=n=2:v=1:a=1 [v] [a]'",
"-map",
"'[v]'",
"-map",
"'[a]'",
outputFile
});
// Or, after converting the two videos to ts, trying to merge them: concat:file1.ts|file2.ts: No such file or directory
vk.run(new String[] {
"ffmpeg",
"-i",
"'concat:" + ts1 + "|" + ts2 + "'",
"-vcodec",
"copy",
"-acodec",
"copy",
"-absf",
"aac_adtstoasc",
output
});The third thing I tried is to use the concat demuxer explained here, which isn’t recognized with ffmpeg 0.9 either.
Is there any way to concatenate two videos on Android with ffmpeg 0.9 (or another library) ?
-
Ffmpeg android build
16 avril 2016, par msjI’m trying to build ffmpeg library for android, using roman10 tutorial
I am able to run build_android.sh script.. but its not creating that ‘android’ folder in my source/ffmpeg folder !!
In my case i try ffmpeg 3.0.1 in Ubuntu 14.04 ; 64bit.
In the command line
./build_android.sh : line 17 : —prefix=/home/Admin/Documents/android-ndk-r9b/sources/ffmpeg-3.0.1/android/arm : No such file or directory
./build_android.sh : line 19 : —enable-shared : command not found
./build_android.sh : line 21 : —disable-static : command not found
./build_android.sh : line 23 : —disable-doc : command not found
./build_android.sh : line 25 : —disable-ffmpeg : command not found
./build_android.sh : line 27 : —disable-ffplay : command not found
./build_android.sh : line 29 : —disable-ffprobe : command not found
./build_android.sh : line 31 : —disable-ffserver : command not found
./build_android.sh : line 33 : —disable-avdevice : command not found
./build_android.sh : line 35 : —disable-doc : command not found
./build_android.sh : line 37 : —disable-symver : command not found
./build_android.sh : line 39 : —cross-prefix=/home/Admin/Documents/android-ndk-r9b/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86/bin/arm-linux-androideabi- : No such file or directory
./build_android.sh : line 41 : —target-os=linux : command not found
./build_android.sh : line 43 : —arch=arm : command not found
./build_android.sh : line 45 : —enable-cross-compile : command not found
./build_android.sh : line 47 : —sysroot=/home/Admin/Documents/android-ndk-r9b/platforms/android-9/arch-arm/ : No such file or directory
./build_android.sh : line 49 : —extra-cflags=-Os -fpic -marm : command not found
./build_android.sh : line 51 : —extra-ldflags= : command not found
why android folder doesn’t create,
please someone can guide me to do this.
Thanks for ur time.
-
android nkd no include path in which to search for limits.h #include_next
3 octobre 2018, par YungaWhen i build the x264 ndk library , i face a problem .
I’ve compiled both in window and liunx environment.i got the same mistakes...like this :
In file included
from c:\users\xxx\appdata\local\android\sdk\ndk-bundle\toolchains\
aarch64-linux-android-4.9\prebuilt\windows-x86_64\lib\gcc\aarch64-linux-android\4.9.x\include-fixed\syslimits.h:7:0,
from c:\users\xxx\appdata\local\android\sdk\ndk-bundle\toolchains\
aarch64-linux-android-4.9\prebuilt\windows-x86_64\lib\gcc\aarch64-linux-android\4.9.x\include-fixed\limits.h:34,
from ./common/common.h:123,
from ./x264cli.h:30,
from ./input/input.h:31,
from ./filters/video/video.h:29,
from ./filters/video/depth.c:26:
c:\users\xxx\appdata\local\android\sdk\ndk-bundle\toolchains\aarch64-linux-android-4.9\
prebuilt\windows-x86_64\lib\gcc\aarch64-linux-android\4.9.x\include-fixed\limits.h:168:61:
error: no include path in which to search for limits.h
#include_next /* recurse down to the real one */
make: *** [.depend] Error 1Here is my script :
SYSROOT=$NDK/platforms/android-21/arch-arm64
TOOLCHAIN=$NDK/toolchains/aarch64-linux-android-4.9/prebuilt/windows-x86_64
CC=$TOOLCHAIN/bin/aarch64-linux-android-gcc-4.9.x
#CXX=$TOOLCHAIN/bin/aarch64-linux-android-g++
CROSS_PREFIX=$TOOLCHAIN/bin/aarch64-linux-android-
EXTRA_CFLAGS="-march=armv8-a -D__ANDROID__"
EXTRA_LDFLAGS="-nostdlib"
./configure --prefix=$PREFIX \
--host=arm-linux \
--sysroot=$SYSROOT \
--cross-prefix=$CROSS_PREFIX \
--extra-cflags="$EXTRA_CFLAGS" \
--extra-ldflags="$EXTRA_LDFLAGS" \
--enable-pic \
--enable-static \
--enable-strip \
--disable-cli \
--disable-win32thread \
--disable-avs \
--disable-swscale \
--disable-lavf \
--disable-ffms \
--disable-gpac \
--disable-lsmash \
--disable-asm \
--disable-opencldoes anyone know how to solve it ? thanks every much.