
Recherche avancée
Autres articles (51)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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
Sur d’autres sites (8640)
-
HTTP Live Streaming Mac app
4 mars 2013, par Diederik HoogenboomI am developing a Mac app which needs to provide a HTTP Live Stream (just the last 2 seconds or so) for the main screen (Desktop).
I was thinking of the following process :
- Create a AVCaptureSession with a AVCaptureScreenInput as input (sessionPreset = AVCaptureSessionPresetPhoto)
- Add a AVCaptureVideoDataOutput output to the session
- Capture the frames (in kCVPixelFormatType_32BGRA format) in captureOutput:didDropSampleBuffer:fromConnection : and write these to a ffmpeg process for segmenting (using a pipe or something) that creates the MPEG-TS and playlist files.
- Use an embedded HTTP server to server up the segmented files and playlist file.
Is this the best approach and is there is no way to circumvent the ffmpeg part for encoding and segmenting the video stream ?
What is the best way to pipe the raw frames to ffmpeg ?
-
Any Java library for live media streaming ? [on hold]
29 novembre 2016, par NiconoidI’m developing a personal project which consists basically in a Java server reading the System’s Stereo Mix and streaming all the content through HTTP into a HTML5 player in a webapp.
I’ve been searching for days how to achieve this through a library as making it from ground up would be overly tedious and will take too much time. I’ve just found Red5, which isn’t useful as I want to stream purely over HTTP, and ffserver (ffmpeg) that has been dropped months ago.
Which alternatives do I have related to Java-based libraries in terms of live streaming over HTTP ?
-
How to live stream video securely ?
16 février 2018, par casper04I have an IP Camera which sends out a RTSP stream over UDP. On the same network I have an Intel Edison where I can send the stream to, to possibly convert the stream and make sure it’s sent securely. From the Edison I want to send the stream to a server, where the stream is stored and sent out to the client (a browser).
Now I know that the best option to stream video on different browsers is HTTP Live Streaming, which means I should convert the stream to a format which is compatible with HLS. And as I understand it, this can be done with FFMPEG (which, I believe, also works on Yocto Linux, which is what is running on the Edison).
What I don’t want however, is that the stream that I’m sending out can be easily watched by people who are not authorized. Therefore, I would like to either encrypt the stream (and decrypt it on the server), or send it over HTTPS. Is this possible, and if so, how ?