
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (57)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (9877)
-
Using FFmpeg with Android-NDK
16 septembre 2019, par iSunI want to use
FFmpeg
withAndroid-NDK
and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution.1 - How can I use
FFmpeg
through Windows OS. (I do not want to use Ubuntu, please do not suggest.)2 - How can I inset
FFmpeg
commands viaNDK
?Last notice : I using
android-ndk-r7b
andCygwin
.Any suggestion would be appreciated.
-
Using FFmpeg with Android-NDK
4 février 2014, par iSunI want to use
FFmpeg
withAndroid-NDK
and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution.1 - How can I use
FFmpeg
through Windows OS. (I do not want to use Ubuntu, please do not suggest.)2 - How can I inset
FFmpeg
commands viaNDK
?Last notice : I using
android-ndk-r7b
andCygwin
.Any suggestion would be appreciated.
-
live stream RTSP to html all browsers
30 juin 2020, par jimmyI have a situation and cant find an answer online maybe you could help me.



I am trying to stream an rtsp stream to HTML basically,
I converted the stream to his/m3u8 local dir using ffmpeg, 
my problem is displaying the hls to my web page and get it to work on the main browsers like chrome ,Firefox etc.



the only way i got it to work is by using python command "python -m http.server" to my local dir(where the hls stream was saved) and it works on I.E browser.



and all i did needs to be done on the back end (asp.net app).



i did not write lot of code, i am currently trying to make it work on a simple HTML page once it will work i will make the asp page. that is what i have so far.
ffmpeg command ffmpeg -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -y -c:a aac -b:a 160000 -ac 2 -s 854x480 -c:v libx264 -b:v 800000 -hls_time 10 -hls_list_size 10 -start_number 1 Stream/video.m3u8.



python command : python -m http.server,
to transport my converted stream "Stream/video.m3u8" to http server local host:8000 for testing)



sample HTML page (it a sample from hls.js posted on GitHub https://github.com/video-dev/hls.js/blob/master/demo/basic-usage.html )



Just edited the video html tag to http://localhost:8000/stream/video.m3u8 as a source.



thank you.