
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (73)
-
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. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (8335)
-
Rtsp streaming, no live
14 août 2018, par Alejandroi follow this topic for streaming rtsp here
now this is my conf in the server :ffmpeg -v info -i rtsp://XXXXX.ddns.net/onvif1 -c:v copy -c:a copy -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/html/p433/assets/video/test.m3u8 -loglevel debug
The client :
<code class="echappe-js"><script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js"></script>
<script src="https://releases.flowplayer.org/7.2.6/flowplayer.min.js"></script>
<script><br />
flowplayer('#player', {<br />
live: true, // set if it's a live stream <br />
ratio: 9/16, // set the aspect ratio of the stream<br />
clip: {<br />
sources: [<br />
// path to the HLS m3u8<br />
{ type: "application/x-mpegurl", src: "&lt;?php echo asset_url();?>video/test.m3u8"},<br />
// path to an optional MP4 fallback<br />
{ type: "video/mp4", src: "//yourserver/path/index.mp4"}<br />
]<br />
}<br />
});<br />
</script>The problem ? dont show video in "Live", only show 20seconds aprox and the video is loop icon loading
what am I doing wrong ? I try it all night but I think that it reaches the point of not finding the right path
thanks for your time !
-
Silvia Pfeiffer Live Stream
21 août, par silviaCategory : 2
Uploaded by : Silvia Pfeiffer
Hosted : youtubeThe post Silvia Pfeiffer Live Stream first appeared on ginger’s thoughts.
-
Different live stream resolutions with rtp and ffmpeg using bluenviron/mediamtx
17 juin 2023, par Emad HelmiI am attempting to use RTP streaming with ffmpeg and Bluenviron Mediamtx. I have a sample file that I publish to the RTMP server using ffmpeg :


ffmpeg -re -stream_loop -1 -i files/sample-30s.mp4 -c copy -f flv "rtmp://localhost:1935/show/test?user=myuser&pass=mypass&id=nonblockid"



I can see the live stream in my browser at
localhost:8888
. However, I want to have the live stream asm3u8
files with different resolutions. There is no documentation on how to do this in the repo, and some of the solutions on the internet have not worked for me. For example, using this question, I have tried running the followingffmpeg
command :

ffmpeg -f flv -i "rtmp://server/live/livestream" \
 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 \
 -c:v libx264 -crf 22 -c:a aac -ar 44100 \
 -filter:v:0 scale=w=480:h=360 -maxrate:v:0 600k -b:a:0 500k \
 -filter:v:1 scale=w=640:h=480 -maxrate:v:1 1500k -b:a:1 1000k \
 -filter:v:2 scale=w=1280:h=720 -maxrate:v:2 3000k -b:a:2 2000k \
 -var_stream_map "v:0,a:0,name:360p v:1,a:1,name:480p v:2,a:2,name:720p" \
 -preset fast -hls_list_size 10 -threads 0 -f hls \
 -hls_time 3 -hls_flags independent_segments \
 -master_pl_name "livestream.m3u8" \
 -y "livestream-%v.m3u8"



But this does not work. Should I run another ffmpeg command to get the stream and generate another stream on the same RTMP server ?