
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (74)
-
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. -
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 ;
Sur d’autres sites (10013)
-
Live streaming HLS via ffmpeg, How to force client to start playing from the beginning ? From 1st segment
27 janvier 2021, par vedeojunkyIs there a way, maybe via an ffmpeg option or flag, to force the client player to always start the playlist from the beginning when live streaming rather than the real time mid-stream ?



Say the user comes in 1mn after the stream has started, rather than starting to watch at 1mn the player would start at the beginning of the video so minute zero.



Here is my ffmpeg command :



ffmpeg -f "screen capture" -s 1280x720 -r 30 -i :0.0+nomouse -f alsa -ac 2 -i pulse -async 30 -vcodec libx264 -pix_fmt yuv420p -acodec libfdk_aac -ar 44100 -b:a 64k -threads 0 -s 640x360 -f hls -g 1 -hls_time 1 -hls_list_size 1 -hls_allow_cache 0 /hls/#{@stream_name}/index.m3u8




Thanks !


-
Live streaming using FFMPEG [migrated]
15 mars 2013, par Luuk D. JansenThis is rather a simple question, but I cannot find the answer.
I need to stream from a capture device to a server, and then have FFMPEG on the server re-code the stream suitable for HLS.But how do I do this ?
I looked at Flash Media Live Encoder and VLC and ffserver but cannot really get my handle on how this should work. Basically it just seems to me I need a program to sent to a server, which accepts the stream (and maybe some user authentication) and then makes the stream available for use. I already have a system that takes files and encodes them for HLS, so then I can just as input parameter point to this application on the local server to take the stream and start encoding.edit : it is really only the step to accept e.g. a rtmp connection and make that available to FFMPEG on the same server. I was hoping that e.g. ffserver could do that, but I don't think so.
-
VOD Streaming While Live Recording RTMP
7 février 2019, par Nick DarioI need to collect a live stream of audio and offer it as a stream playable from the start, while recording is in progress.
It is important the audio is processed from the beginning, and it must be processed within 1 second.
I am using SRS (simple RTMP server) to handle the rtmp stream, the server allows me to record the stream to a file, but I have not been able to offer the file as a stream.
What set of tools or methods using SRS, another audio software (possibly ffmpeg), or raw audio manipulation, can achieve this ?