
Recherche avancée
Autres articles (112)
-
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 (...) -
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 (...) -
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 (...)
Sur d’autres sites (12026)
-
How to use ffmpeg commands assuming having prebuilt .so files in android
23 mars 2018, par Hossein YazdanfarI found some github projects that pushed ffmpeg latest version .so files.
unfortunately many projects are so old...
I read a lot but i got errors to reach my goal.
I want to use those .so file in android project(android studio,and with java) and doing thing by passing commands.
any one can tell me procedure or code ?
the sample project that having .so file :
ffmpeg 4 android -
Nginx RTMP start ffmpeg on user click play
24 août 2021, par Bahis Kritiki install nginx rtmp at ubuntu server. exec_static working on start ubuntu or nginx.


i want to use exec when user click to play from website. this have at flussonic on-demand


how i can make with nginx rtmp ffmpeg ?


here my code


exec_static ffmpeg -i http://myiptv.com/user/pass/ch111 -vcodec libx264 -preset ultrafast -x264opts keyint=30:min-keyint=10:no-scenecut -b:v 1024k -maxrate 1200k -bufsize 1600k -s 854x480 -sws_flags spline -r 30 -c:a aac -ar 48000 -b:a 128k -f flv rtmp://localhost:1935/live/watchlive;



this working when nginx start.


-
How to configure ffmpeg just to play RTSP videos
28 février 2018, par Anuran BarmanI have successfully compiled ffmpeg for android and everything is working fine.
I have made specific build for each architecture and even with that it’s 9.7-9.9MB in
debug version
.My sole target is just to play
RTSP video
withauthentication
.What should be the command line options for this while configuring ?
my current script looks like this
./configure \
--prefix=$prefix \
--pkg-config=/usr/bin/pkg-config \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-avdevice \
--disable-symver \
--cross-prefix=$toolchain/bin/$crossPrefix \
--target-os=android \
--arch=arm \
--enable-cross-compile \
--sysroot=$sysroot \
--enable-network \
--extra-cflags="$mArchFlag" \
--extra-ldflags="$extraLDFlags"