
Recherche avancée
Autres articles (64)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9362)
-
Making and displaying a video
4 mars 2018, par Mehdi ShojaeianI have to develop an app which shoud crop and cut video .
I decide to use ffmpeg and I tested below library :
https://github.com/WritingMinds/ffmpeg-android-javabut I get
[libx264 @ 0xf506d400] using cpu capabilities: none!
at console and running so so slowly.so I decide to build my own ffmpeg prebuilt and try my hard and test below link for make prebuild ffmpeg :
- https://github.com/WritingMinds/ffmpeg-android
- https://github.com/WritingMinds/ffmpeg-android-java
- http://writingminds.github.io/ffmpeg-android/
- http://writingminds.github.io/ffmpeg-android-java/
and so much more
But enety build has own error, such as "couldn’t find c comiler"
After too many search I found and build ffmpeg but the result is some .so file (listed below) :- libavcodec-58.so
- libavdevice-58.so
- libavformat-58.so
- libavutil-56.so
- libpostproc-55.so
- libswresample-3.so
- libswscale-5.so
my build.sh is :
NDK=/Users/mehdi/Documents/adt-bundle-mac-x86_64-20140702/ndk/android-ndk-r13b
SYSROOT=$NDK/platforms/android-24/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--enable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--target-os=linux \
--cpu=cortex-a8 \
--arch=arm \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
--enable-runtime-cpudetect \
--enable-gpl \
--enable-avfilter \
--enable-encoders \
--enable-muxers \
--enable-protocols \
--enable-parsers \
--enable-demuxers \
--enable-decoders \
--enable-bsfs \
--enable-network \
--enable-swscale \
--enable-asm
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_oneand I put .so files into cpp folder in android studio and make CMakeLists.txt.
every thing is ok up to now but where can I found ffmpeg file to execute command in java . - https://github.com/WritingMinds/ffmpeg-android
-
rtpdec_qt : Use a local variable instead of RTP_FLAG_KEY
4 mars 2015, par Martin Storsjö -
Revision f45fe16684 : configure.sh : quote local variables fixes issue #711 specifying a multiword CC
7 mars 2014, par James ZernChanged Paths :
Modify /build/make/configure.sh
configure.sh : quote local variablesfixes issue #711
specifying a multiword CC, e.g., CC='gcc -m32', would cause the failure
under dashreported in
https://bugs.gentoo.org/show_bug.cgi?id=498136patch by floppymaster at gmail dot com
Change-Id : I2ba246f765646161538622739961ec0f6c2d8c2d