
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (68)
-
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 -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (13945)
-
C++ How to stream mpeg over http?
9 mai 2014, par Titouan42I have a streaming server (nodejs) which listen a mpeg stream over http,
by using this code.Currently, I would like to feed my server without the ffmpeg tool, as below, but with a C++ code.
ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
b 800k -r 30 http://example.com:8082/yourpassword/640/480/
So, my question is how to simply stream mpeg over http?
Help please !
-
Nginx - How and when are "exec" commands executed
14 juillet 2015, par user1767754I have a config file
rtmp{
server{
listen 1935;
application publish {
live on;
exec touch /Users/chaleon/Desktop/myfile.txt;
}
}
}1) Is the exec command activated when i call rtmp ://192.168.1.3:1935/publish ?
Thats what i am expecting, but calling the addresse over vlc, will not cause the exec to run. However i’ve already managed to setup streaming from ffmpeg to a nginx application, which was accessible.
-
avformat : implement SChannel SSP TLS protocol
4 octobre 2015, par Hendrik Leppkesavformat : implement SChannel SSP TLS protocol
This implementation does not support TLS listen sockets and loading
CA/Certs from files.The Windows API does not support loading PEM certs, and would either
require a manual loader or instead be limited to loading Windows PFX
certificatesTLS listen sockets would have to be implemented quite separately, as many
of the APIs are different for server-mode (as opposed to client mode).