
Recherche avancée
Autres articles (97)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (9213)
-
avcodec/evc_encoder : Provided support for EVC encoder
19 septembre 2023, par Dawid Kozinskiavcodec/evc_encoder : Provided support for EVC encoder
Added EVC encoder wrapper
Changes in project configuration file and libavcodec Makefile
Added documentation for xeve wrapper
Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
avcodec/evc_decoder : Provided support for EVC decoder
19 septembre 2023, par Dawid Kozinskiavcodec/evc_decoder : Provided support for EVC decoder
Added EVC decoder wrapper
Changes in project configuration file and libavcodec Makefile
Added documentation for xevd wrapper
Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
compile FFmpeg → Android { error : crtend_android.o : No such file or directory }
22 mars 2013, par Jason TsaiI'm trying to complie FFmpeg on Android 4.0 (SAMSUNG GT-3113), and I meet an error when I try to get config.h and config.mak files.
I'm using android-ndk-r8d and cygwin.The config.sh file which I created is followed :
#!/bin/bash
PREBUILT=${ndk}/toolchains/arm-linux-androideabi-4.7/prebuilt/windows
PLATFORM=android-14
ARCH=--arch=arm
./configure \
${ARCH} \
--target-os=linux --enable-cross-compile --cross-prefix=${PREBUILT}/bin/arm-linux-androideabi- \
--extra-cflags=" -fPIC -DANDROID -std=c99 " \
--enable-version3 \
--enable-gpl \
--enable-nonfree \
--disable-stripping \
--disable-ffmpeg\
--disable-ffplay\
--disable-ffserver\
--disable-ffprobe \
--disable-encoders \
--disable-muxers \
--disable-devices \
--disable-protocols \
--enable-protocol=file \
--enable-avfilter \
--disable-network \
--disable-avdevice \
--disable-asm \
--enable-neon \
--enable-armv5te \
--sysinclude=${ndk}/platforms/${PLATFORM}/arch-arm/usr/include \
--extra-ldflags="-Wl,-rpath-link=${NDK_ROOT}/platforms/${PLATFORM}/arch-arm/usr/lib
-L${ndk}/platforms/${PLATFORM}/arch-arm/usr/lib -nostdlib
${ndk}/platforms/${PLATFORM}/arch-arm/usr/lib/crtbegin_static.o
${ndk}/platforms/${PLATFORM}/arch-arm/usr/lib/crtend_android.o -lc -lm -ldl "After I run the config.sh with cygwin,it shows
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames/home/jason_tsai/android-ndk-r8d/toolchains/arm-linux-androideabi-4.7/prebuilt/windows/bin/arm-linux-androideabi-gcc is unable to create an executable file.C compiler test failed.I looked the logfile and it said
arm-linux-androideabi-gcc.exe : error : /home/jason_tsai/android-ndk-r8d/platforms/android-14/arch-arm/usr/lib/crtend_android.o : No such file or directory
C compiler test failed.I'm really very confusing.
Any help will be appreciated. Thanks !!