
Recherche avancée
Autres articles (47)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (7692)
-
FFmpeg to Azure Media Services Smooth Streaming Input
22 juillet 2020, par Adityo SetyonugrohoI would like to ask about ffmpeg config or command to to mp4 fragment to Azure Media Service live event using smooth streaming / isml protocol. The AMS is not getting any input yet from ffmpeg.
This is my current running command :


ffmpeg -f dshow -i video="Webcam" -movflags isml+frag_keyframe -f isml -r 10 http://endpoint/ingest.isml/streaming1



When I am using RTMP with Wirecast is running well.


Any suggestion on ffmpeg command with isml protocol ?


Thank you


-
Build ffmpeg on a build machine
18 juillet 2019, par RDIBuild ffmpeg on build PC using libx264 and shared libraries (not static).
I am building on a Red Hat 6.6 Server and final target machine is CentOS 6.6.
I am trying, as said, to build ffmpeg with encoding enabled (with libx264) and shared libraries ; of course I do not want to install the libraries on the build PC, they should be only extracted and then delivered together with the final RPM.
After the "./configure" I get all RPMs (related to ffmpeg) but when trying to installing ffmpeg-libs on the build pc it fails because the libx264.so.157 is not found, even if as test I installed it (configure/make/make install) and present at /usr/local/lib.Where am I wrong ?
Thanks
This is my SPEC file at the moment :
ldconfig /usr/local/lib
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
# configure
./configure \
--enable-gpl --disable-static --enable-shared --extra-cflags="-I/usr/local/include" --extra-ldflags="-L/usr/local/lib" --extra-libs=-ldl --disable-autodetect --disable-doc --disable-postproc --disable-ffplay --disable-everything --enable-encoder=aac --enable-encoder=png --enable-encoder=mjpeg --enable-encoder=libx264 --enable-decoder=aac --enable-decoder=h264 --enable-decoder=mpeg4 --enable-decoder=rawvideo --enable-decoder=png --enable-muxer=mp4 --enable-muxer=stream_segment --enable-muxer=image2 --enable-demuxer=aac --enable-demuxer=h264 --enable-demuxer=mov --enable-demuxer=rtp --enable-parser=aac --enable-parser=h264 --enable-parser=mpeg4video --enable-bsf=aac_adtstoasc --enable-protocol=file --enable-protocol=http --enable-protocol=tcp --enable-protocol=rtp --enable-protocol=udp --enable-indev=xcbgrab --disable-alsa --enable-libxcb --enable-libxcb-xfixes --enable-libxcb-shape --enable-zlib --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir}/%{name} --shlibdir=%{_libdir} --enable-alsa --enable-avfilter --enable-avresample --enable-libx264 --enable-filter=scale \ -
http/https for ffmpeg in android
1er mars 2015, par trololoCan somebody explain how to build ffmpeg with http?
I’m using flags--enabled-protocols --enabled-protocol=http --enabled-protocol=https --list-protocols
while compiling i see http as protocol but the resultant ffmpeg03-01 22:12:35.221: D/APlay(3657): Supported file protocols:
03-01 22:12:35.221: D/APlay(3657): Input:
03-01 22:12:35.221: D/APlay(3657): cache
03-01 22:12:35.221: D/APlay(3657): concat
03-01 22:12:35.221: D/APlay(3657): crypto
03-01 22:12:35.221: D/APlay(3657): data
03-01 22:12:35.221: D/APlay(3657): file
03-01 22:12:35.221: D/APlay(3657): hls
03-01 22:12:35.221: D/APlay(3657): pipe
03-01 22:12:35.221: D/APlay(3657): subfile
03-01 22:12:35.221: D/APlay(3657): rtmp
03-01 22:12:35.221: D/APlay(3657): rtmpe
03-01 22:12:35.221: D/APlay(3657): rtmps
03-01 22:12:35.221: D/APlay(3657): rtmpt
03-01 22:12:35.221: D/APlay(3657): rtmpte
03-01 22:12:35.221: D/APlay(3657): Output:
03-01 22:12:35.221: D/APlay(3657): file
03-01 22:12:35.221: D/APlay(3657): md5
03-01 22:12:35.221: D/APlay(3657): pipe
03-01 22:12:35.221: D/APlay(3657): rtmp
03-01 22:12:35.221: D/APlay(3657): rtmpe
03-01 22:12:35.221: D/APlay(3657): rtmps
03-01 22:12:35.221: D/APlay(3657): rtmpt
03-01 22:12:35.221: D/APlay(3657): rtmpteWhat I’m doing wrong ???