
Recherche avancée
Autres articles (74)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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
Sur d’autres sites (4962)
-
ffmpeg : Stream, record and play my webcam
12 avril 2013, par ChristophLSAI want to stream my webcam to a rtmp server. Also I want to record and save this to a local file (with better settings). This works and the command look like this :
ffmpeg -f video4linux2 -i /dev/video2 -f pulse -i default \
-r 20 -acodec copy -vcodec libx264 -threads 0 -s 720x480 recording-$(date +%d.%m.%Y-%H.%M.%S).mkv \
-acodec libmp3lame -ab 64k -ar 44100 -vcodec libx264 -vpre my_ffpreset -threads 0 -f flv -s 320x240 rtmp://foo/barNow I want to play my webcam to test the right angle, audio volume etc. What is the best way for doing this without a third (expensive) encoding ?
I could play the stream but the latency is to high. Maybe I could create a ffserver and play the stream. Is there an option to record and stream with only one encoding process ? Any other solutions ?
-
Android browser play m3u8 after recv #EXT-X-ENDLIST
26 avril 2014, par user3567118I’m developing
HLS
, it works fine on safari, but when I play it use my android device(4.1.1), it just download(no play). If I append#EXT-X-ENDLIST
to the end of m3u8 file, it can play after all the files are downloaded. This problem has troubled me for many days,please help me.thanks !
The html code :
<video width="100%" height="100%" controls="controls" src="http://dev.netesee.com/hls/ithink/983b161ae937.m3u8">
</video>
-
ffmpeg can play video but not a stream containing the same data
21 mai 2017, par RobbsenThis is my first time encountering video codecs/video streaming.
I am receiving raw h.264 packets over TCP. When I connect to the socket, listen to it and simply save the received data to a file, I am able to play it back using
ffplay data.h264
However, when I try to directly play it from the stream without saving it, using
ffplay tcp://addr:port
all I get is the error
Invalid data found when processing input
Why is that ?