
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (48)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (4452)
-
How can I make an rtsp stream as correct as possible in a Django application ? [closed]
4 décembre 2024, par user25336067I am writing a mini video surveillance system on Django. I want the stream to be output to the tag. now I have output to the img tag using a stream and jpeg images (using OpenCV)how to make a stream from a video, you may need to use WebRTC for the stream and somehow decode the video using ffmpeg, please tell me


def generate_frames(rtsp_url):
 cap = cv2.VideoCapture(rtsp_url) # Замените на ваш RTSP URL

 while True:
 success, frame = cap.read()
 if not success:
 break

 # Кодируем кадр в JPEG
 ret, buffer = cv2.imencode('.jpeg', frame)
 frame = buffer.tobytes()

 yield (b'--frame\r\n'
 b'Content-Type: photo/jpg\r\n\r\n' + frame + b'\r\n')



i vant to stop video and start in video tag
my html looks like this


<div class="video-container">
 <img src="http://stackoverflow.com/feeds/tag/{% url &#x27;video_feed&#x27; %}?rtspurl={{ rtsp_url }}" width='300' height='225' alt="{{ rtsp_url }}" />
 <div class="separator"></div> 
 <p class="cam-name">Трансляция камеры: {{ cam_name }}<br />RTSP: <a>{{ rtsp_url }}</a></p>
 </div>



-
Anomalie #4220 : Articles qui changent de langues
12 novembre 2018, par denis -Salut, voici déjà plus d’infos sur un site où ça survient régulièrement. Je ne sais pas d’où vient le bug, directement de spip où d’un des plugins listés ci-dessous. C’est évidemment difficile de reproduire le bug dans un site nu vu qu’il ne survient sans doute après une opération spécifique qui ne se produit que tout les x semaines.
Est-ce qu’il serait possible dans un premier temps de logger toutes les requêtes sql ? Pour pouvoir tracer l’origine du problème.
SPIP 3.2.1 [23954]
Abonnement à des listes de diffusion 1.1.12 - stable
Agenda 3.18.7 - stable
Champs Extras 3.11.5 - stable
Facteur 3.5.2 - stable
Ma lettre 3.3.6 - stable
MailShot 1.23.0 - stable
MailSubscribers 2.7.1 - stable
Menu de langues avec liens 1.3.3 - stable
Metas + 1.2.8 - stable
Métadonnées pour Open Graph, Duclin Core et Twitter
Mini Calendrier 2.4.1 - stable
Newsletters 1.5.3 - stable
NoSPAM 1.5.18 - stable
oEmbed 2.0.5 - stable
Saisies pour formulaires 2.24.3 - stable
Sedna 1.3.5 - stable
Agrégateur RSS
SPIP Bonux 3.4.6 - stable
Traduction d’articles autrement 1.4.3 - stable -
Need help transcoding Red5 RTMP stream to MPEG2-TS
5 février 2014, par reyniraronMe and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8.
I use Flash Media Live Encoder to broadcast to Red5's oflaDemo application and the stream works great, except for the fact that I want the stream to work with iOS.
I am developing an app for it, but I still need to convert my stream to Apple's HTTP Live Streaming protocol for it to work.
Can anybody help me convert the RTMP stream to MPEG2-TS, because that's the format that mediastreamsegmenter supports ? I already have Apple's HTTP Live Streaming Tools installed on the server, so the segmenter's not a problem.FFmpeg doesn't work, at least not with the code I found here. With it a always get an "Operation not permitted" error. Xuggler doesn't work, not even with a Linux box.
Can anybody please help me ? I'd really, really appreciate it.-Reynir Aron