
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (99)
-
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 (...) -
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 ) (...)
Sur d’autres sites (8429)
-
avformat/dashenc : Skip writing trailer for MP4 output when in streaming mode
22 janvier 2019, par Karthick J -
RTMP video streaming client without showing the video just need extensive log
6 août 2016, par AmirI set up an RTMP video streaming server in a cloud environment for research purposes. On another VM in the cloud, I want to use a client to do some experiments. I have tried some different video player like VLC and FFplay but they are keep playing the video in the shell. As it is in the command line environment and to make sure my experiments are not biased with human errors, I need an RTMP video streaming client that just receives the stream as if it wanted to play it and log everything, for instance, if the playback stops due to buffering, average buffer size, etc.
Thanks
-
FFMPEG : Smooth streaming on IOS and Android
24 avril 2014, par VprnlI am transcoding a file to the ISMV "smooth streaming" format to create fragmented MP4 files.
The Ffmpeg parameters I use are the following :
ffmpeg -i "'+inputUrl+'" -g 52 -threads 0 \
-vcodec libx264 -coder 0 -flags -loop -pix_fmt yuv420p \
-crf 22 -subq 0 -sc_threshold 0 -s 1280x720 -profile:v baseline \
-keyint_min 150 -deinterlace -maxrate 10000000 -bufsize 10000000 \
-b 1200k -acodec aac -ar 48000 -ab 192k -strict experimental \
-movflags +frag_keyframe+empty_moov '+outputUrlThe main purpose is to play the file while transcoding.
This works great on my desktop. Sadly though, this can not be said for Android and IOS devices. It simply does not play anything.Is it possible to play a fragmented mp4 on these devices ?