
Recherche avancée
Autres articles (59)
-
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 (...) -
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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7418)
-
How to play live h264 stream with python [closed]
27 juillet 2020, par vkh53121Acuoly.comI have a socket that listen to h264 stream, I can save this stream to file and play it with ffplay.


This not rtp/rtsp that wraps h264 .that only h264.


I want to watch this stream live, not save to file and after that run ffplay.


How can I do that with python,so that work on windows and linux


-
play vlc stream in browser with video tag
2 juin 2013, par bruxI am streaming files using vlc. I want to put on the home page of the site a page that uses the video tag to play the stream in the browser.
here is my vlc command
vlc *.mp4 --sout '#transcode{vcodec=h264,vb=92,channels=1,ab=16,samplerate=512,width=320}:standard{access=http,mux=ts,dst=:666/tv.mp4}' --sout-keep
here is the html code i tried, if i go into the code for the page and click on the link to the stream it shows the binary for the video in the window so o know the path is right
<video>
<source src="http://sydomain.com:666/tv.mp4" type="'video/mp4;" codecs="avc1.4D401E, mp3"></source>
</video>but no stream is playing the the browser
-
Cannot play H.264 stream using MSE
8 juillet 2016, par lianI’m trying to stream H.264 data over websockets to a video element using MSE.
I’m able to send and play a pre-recorded file, but when i try to create the data stream with the following command :
ffmpeg -i rtsp://192.168.1.101/stream.264 -vcodec copy -an -f mp4 -reset_timestamps 1
-movflags empty_moov+default_base_moof+frag_keyframe -loglevel quiet -I get this in chromes media-internals :
render_id: 215
player_id: 13
pipeline_state: kStopped
event: WEBMEDIAPLAYER_CREATED
url: blob:http%3A//127.0.0.1%3A8080/e468616d-5bde-47e0-8e59-1881ddb53abc
debug: ISO BMFF boxes that run to EOS are not supported
error: media::MediaSourceState::Append: stream parsing failed. Data size=727 append_window_start=0 append_window_end=inf
pipeline_error: chunk demuxer: append failedI think the problem has something to do with the debug line about ISO BMFF boxes, but have been unable to find any references to this message.