
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (64)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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.
Sur d’autres sites (9634)
-
Http Live Streaming - Segmenting mp3 on Linux
14 mai 2012, par krisbulmanI simply want to segment an mp3 for HTTP Live Streaming in any linux distro (preferably CentOS) for the purpose of audio streaming to an iOS app.
Out of the linux segmenters, I can get the following to compile in CentOS.
-
http://wiki.andy-chu.com/doku.php?id=http_live_streaming (not sure last time this was updated)
-
m3u8-segmenter on github (updated months ago)
-
https://github.com/carsonmcdonald/HTTP-Live-Video-Stream-Segmenter-and-Distributor [ruby wrappers + c] (last updated 2 years ago, and a v2 branch 9 months old)
In order to prep the file for segmenting, here is the ffmpeg conversion string to generate a valid ts file :
$ ffmpeg -er 4 -i input.mp3 -f mpegts -acodec libmp3lame -ar 22050 -ab 32k -vn output.ts
Each of the segmenters require various input switches, all quite simple, and all crash out with a seg fault. #2 actually does some segmenting, but faults after 56 segments every time. I've tried various mp3s with the same results. The issue queues for 2 & 3 are full, with no responses in months of the same issues.
Others must be doing this in a live production environment that isn't running OSX.. what are your methods ?
-
-
How to download an https live stream m3u8 file on mac ?
16 octobre 2022, par RaghavHow do I download an m3u8 file from live streaming source on a mac. I do not want to lose any frame or bitrate or compromise on quality at all. I want audio and video to be in perfect sync like they are on the browser and want to save file as mkv or mpv extension. I browsed the internet and found out about ffmpeg but I do not know the exact way to do that without compromising on quality


Would really love any help here


-
Need A Besh / Shall Script For Run FFmpeg and Check Error Of Live Streaming
27 janvier 2019, par RakibulkstAnyone have a Bash/Shall script for run FFmpeg Live Stream Command and checking live streaming error and fix by itself. I try to make it but I become fail because I don’t have enough knowledge about shall script. Can you help me to make this ? I also want to reduce my streaming buffering.
#!/bin/bash
while :; do
ffmpeg -re -i input.ts or m3u8 or just input -r 30 -g 60 -c:v copy -c:a copy -c:s copy -x264-params keyint=60 -bufsize 500k -c:a aac -strict -2 -ar 44100 -b:a 128k -f flv rtmp://xxx-xx-xxx/application/Stream Key null > /dev/null 2>&1
done &