
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (99)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9122)
-
Live Stream on the fly generated video in asp.net core
3 juillet 2023, par juffmaI have a problem where i'm not able to stream a video over the Network due to it being generated live. Currently it's working using MJPEG but thats slow (especially if not in the local network) and has much overhead. I receive the frames of the video as images and currently convert them to JPEG and then build an MJPEG stream.


Would it be possible to generate another stream directly ? So for example "bake" the images into another type that isn't this heavy ?
If not, i currently think of the option to use FFMPEG to capture the MJPEG strteam and pipe it's output back into the App. Now, with this approach, what format would be best suited and how would i live stream it ? (eg. build a controller that correctly serves the FFMPEG pipe output (which, if it helps, i'm getting at a 4096 bytes large buffer)).


Saving the Video to Disk and then just multipart streaming the file is not an option as it would not be live anymore.


-
ffmpeg : Get last 10 seconds of live stream [duplicate]
7 janvier 2020, par ManuelThis question already has an answer here :
I am having a live stream from an ip camera, where I would like to get only the last 10 seconds of that stream.
I’ve tried parse the steam continuously into an .mp4, and use ffmpeg -sseof afterwards, but this fails, as the input file is still writing.Has anyone an idea, if this is homehow possible ?
Thanks !
-
FFmpeg noise reduction for live broadcast
4 décembre 2019, par Vsevolod TrofimovNow we use FFmpeg for live broadcast to youtube with following options :
ffmpeg -i "rtsp ://xxx" -vcodec libx264 -t $duration -pix_fmt + -c:v copy -acodec libmp3lame -af "afftdn=nt=w" -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k -f flvfor webinars in our university. what is the best way (FFmpeg filters/option) of background noise reduction in live broadcast ? We need only voice on output, no music.
Noise sources are : outdoor noise, projectors and computer noise, students, electrical noises in ip camera’s audiocard.