
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (101)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (11774)
-
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.
-
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
-
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