
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (22)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (4484)
-
Switching YouTube Live Stream Source FFMPEG
26 juillet 2023, par AsadSMalikI'm experimenting with a live stream on YouTube where I can switch the source of it based on some external inputs. So for example, I have two webcams and by default the live stream shows the stream from webcam 1. Then based on some input, it needs to switch to broadcasting the stream from webcam 2. This is what I have so far but it disrupts the stream with the buffering loading circle before it switches to the second one instead of being like an instant switch.


This is the code I'm using to create the ffmpeg command which runs to stream to YouTube.


def create_ffmpeg_cmd(cam_uri):
 return ['ffmpeg',
 '-i', cam_uri,
 '-c:v', 'libx264',
 '-f', 'flv',
 f"{YOUTUBE_STREAM_URI}/{YOUTUBE_STREAM_KEY}"
 ]



This is the code block which runs to switch streams when
next_stream_uri
is updated.

def run(self, *args, **kwargs):
 command = create_ffmpeg_cmd(DEFAULT_CAM_URI)
 p = sp.Popen(command, stdin=sp.PIPE)
 stream_uri = self.next_stream_uri
 while True:
 if self.next_stream_uri != stream_uri:
 print(f"Changing stream from {stream_uri} to {self.next_stream_uri} ...")
 stream_uri = self.next_stream_uri
 cmd = create_ffmpeg_cmd(stream_uri)
 new_p = sp.Popen(cmd, stdin=sp.PIPE)
 time.sleep(1)
 p.terminate()
 p = new_p



I put in the
time.sleep(1)
before terminating the first one to see if that works but I still see some buffering happening. Not sure if it's even possible to achieve a seamless switch but wanted to see if there are some better ways of doing it.

-
ffmpeg streaming from camera
2 décembre 2015, par NycholasI’m with a code to make a stream of the camera to an address, however, is not working properly, because nothing comes in VLC.
Apparently, the problem is that I can not post the video of the webcam by the network, but I can usually save a file. I think it’s a mistake in relation to PTS, however, do not know much what to do.
Could help me with the code ?Here is the code -
Making a FFmpeg stream seekable
29 avril 2019, par Luke PenroseI am streaming my webcam output to my website using FFmpeg and then embedding with the video tag however the controls on the video element don’t allow me to seek through the stream. Does anyone have any idea how to allow seeking through the live stream.