
Recherche avancée
Autres articles (51)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4345)
-
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
-
How to record (and process ?) a video that is streamable from Android
13 mai 2016, par afollestadMy company’s app relies heavily on video recording and playback of web-based videos. I use the
MediaRecorder
API to record videos, through this library designed by me : https://github.com/afollestad/material-camera.For playback, I use this library which is basically a wrapper around Google’s ExoPlayer library : https://github.com/brianwernick/ExoMedia.
It works fine for the most part with small videos, especially if I decrease bit rates for audio and video. However, larger and higher quality videos have many issues. Sometimes they seem to buffer forever, sometimes playback doesn’t even start successfully, etc. Again, these videos are being streamed over HTTP from Amazon S3.
I’ve read a little bit about FFMPEG, and how it can process MP4’s for "faststart", splitting the files into chunks for DASH, etc. However, FFMPEG solutions for Android seem a bit complex, so...
Is there anyway to record MP4’s from Android, with
MediaRecorder
,MediaCodec
, or some other API which results in a video file that is fast to stream ? It amazes me how well Snapchat has figured this out. -
Using audio File in FFmpegFrameRecorder instead of AudioRecorder
15 mars 2016, par Haroon AhmedIam following https://github.com/sourab-sharma/TouchToRecord tutorial. Iam trying to merger sound from audio File instead of microphone. For that purpose i need to read audio data frame by frame. How can i do that ?
Thanks