
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (100)
-
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 (...) -
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 ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (9697)
-
How to work with data received from streaming services in my Java application ?
24 novembre 2020, par gabriel garciaI'm currently trying to develop an "streaming client" as a way to organize multiple stream services (twitch, yt, mitele...) in a single desktop application written in Java.


It basically relies on streamlink (which relies in ffmpeg) thanks to all it's features so my project could be defined as a frontend for streamlink.


Straight to the point, one of the features I'd like to add it is the option to programatically record streams in the background and showing this video stream to the user when it's requested. Since there's also the possibility that the user wants to watch the stream without recording it, I'm forced to work with all that byte-like data sent from those streaming sources.


So, the problem is basically that I do not know much about video coding/decoding/muxing/demuxing nor video theory like container structure, video formats and such.


But the idea is to work with all the data sent from the stream source (let's say twitch, for example), read this bytes (I'm not sure what kind of information is sent to the client nor format) from the
java.lang.Process
'sstdout
and then present it to the client.

Here's another problem : I don't know how to play video streams in JavaFX and I don't think it's even supported right now. So I would have to extract each frame and sound associated from the
stdout
and show them to the user each time a new frame is received (oups, another problem since I don't know when does each frame starts/ends since I'm reading eachstdout
's line).

As a summary :


- 

- What kind of data am I receiving from the streaming source ?
- How can I know when does each frame starts/stops ?
- How can I extract the image and sound from each frame ?








I hope I'm not asking too much and that you could shed some light upon my darkness.


-
How to setup HLS Live Video Streaming from iOS Device
9 septembre 2017, par SeanGood day everyone !
So, as the title suggests, i am developing an app with similar functionality to that off Periscope and Facebook Live video streaming. Here is what the end goal is :
- A Broadcasting device [user]
- EC2 Instance [Hosting an ffmpeg transcoder]
- Cloudfront Distrubution [CDN]
- 1 to n viewers of the live feed
I’ve been doing a lot of googling and what I cant seem to figure out is :
As you send chunks of video to the server from the Broadcaster, how do
you create an
.m3u8 playlist when you don’t have all the chunks of video yet (e.g. the
device sends its first 5second chunk of video) ?It seems a .m3u8 file is created from a .mp4 file that is already complete, then broken down into chunks... But i’m sending chunks of the video to the server, how can it generate the .m3u8 file when more chunks are still coming from the Broadcaster, so the watchers / clients can continuously stitch together the video chunks ?
I’ll be happy to clarify this question further. Thanks !
-
Live Streaming to AMS using Ffmpeg not playing in mobile browser
6 mai 2016, par Gaurav BoraI have installed Ffmpeg and am streaming a video to my adobe media server (Rtmp url) usinf Ffmpeg. The stream is playing in desktop browsers but not on mobile browsers. When I use OBS to stream to the same Rtmp url, it plays in both laptop and mobile browsers. The command that I use to stream using Ffmpeg and which is working in desktop browsers is
ffmpeg -re -i samplefile.mp4 -c:v copy -c:a copy -f flv "rtmp url of my adobe media server/streamkey"
TIA