
Recherche avancée
Autres articles (81)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (10078)
-
H.264 HD video flicker
19 août 2015, par shuimengyaoI use C# develop the .Net program to achieve video previewing and recording, with the ffmpeg command line, the video input device is 1920*1080p 60 frame / sec HD equipment, By collecting card,but the flash screen when preview and recording video, I don’t know why this is the case.
-
how can I play ffmpeg codecs not supported by MedicaPlayer ? [closed]
1er septembre 2011, par JunCurrently, I'm using MediaPlayer to play mp4, 3gp videos and it works as it should do but now I need to play ffmpeg codecs too.
In this case, do I have to develop my video player or is there any players from 3rd parties ?
Thanks in advance.
-
Android FFmpeg build : cannot find -lavutil
4 novembre 2016, par Jon GI am trying to build FFmpeg for Android JNI using the guide here (forked from appunite’s build). One difference between my build and theirs is that I am trying to use the FFmpeg master branch instead of commit 82db8ee, maybe that is relevant. I am coming across a build issue when I try to build for multiple architectures in a row.
The code that is running is :
${LD} -rpath-link=$PLATFORM/usr/lib -L$PLATFORM/usr/lib -L$PREFIX/lib -soname $SONAME -shared -nostdlib -Bsymbolic --whole-archive --no-undefined -o $OUT_LIBRARY -lavformat -lavcodec -lx264 -lavfilter -lavutil -lswscale -lswresample -lavresample -lfribidi -lvo-aacenc -lvo-amrwbenc -lpostproc -lc -lm -lz -ldl -llog --dynamic-linker=/system/bin/linker -zmuldefs $PREBUILT/lib/gcc/$EABIARCH/$COMPILATOR_VERSION.x/libgcc.a
The logs that are outputted in the MIPS case are :
...
FINISHED ffmpeg for mips
+ build_one
+ echo 'Starting build one for mips'
Starting build one for mips
+ cd ffmpeg
+ /home/jon/Development/android-ndk-r10e/toolchains/mipsel-linux-android-4.9/prebuilt/linux-x86_64/bin/mipsel-linux-android-ld -rpath-link=/home/jon/Development/android-ndk-r10e/platforms/android-9/arch-mips//usr/lib -L/home/jon/Development/android-ndk-r10e/platforms/android-9/arch-mips//usr/lib -L/home/jon/workspace/kyawkyaw-AndroidFFmpeg/library-jni/jni/ffmpeg-build/mips/lib -soname libffmpeg.so -shared -nostdlib -Bsymbolic --whole-archive --no-undefined -o /home/jon/workspace/kyawkyaw-AndroidFFmpeg/library-jni/jni/ffmpeg-build/mips/libffmpeg.so -lavcodec -lavformat -lavresample -lavutil -lfdk-aac -lswresample -lx264 -lswscale -lc -lm -lz -ldl -llog --dynamic-linker=/system/bin/linker -zmuldefs /home/jon/Development/android-ndk-r10e/toolchains/mipsel-linux-android-4.9/prebuilt/linux-x86_64/lib/gcc/mipsel-linux-android/4.9/libgcc.a
/home/jon/Development/android-ndk-r10e/toolchains/mipsel-linux-android-4.9/prebuilt/linux-x86_64/bin/mipsel-linux-android-ld: skipping incompatible /home/jon/workspace/kyawkyaw-AndroidFFmpeg/library-jni/jni/ffmpeg-build/mips/lib/libavutil.a when searching for -lavutil
/home/jon/Development/android-ndk-r10e/toolchains/mipsel-linux-android-4.9/prebuilt/linux-x86_64/bin/mipsel-linux-android-ld: cannot find -lavutilEverything seems successful until that point. Why would libavutil.a be incompatible ?
I find that if I revert FFmpeg to commit 82db8ee, build for MIPS (successful), change back to master, then build for MIPS again, it does not raise the error. Perhaps something is not being cleaned up properly ?