
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (79)
-
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 ) (...) -
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 (...)
Sur d’autres sites (10162)
-
m3u8 playback issue with VLC player [closed]
2 avril, par YUZI’m creating a timelapse video from a folder of images using FFmpeg, generating two HLS (m3u8) playlists : one at 1080p and another at 2K resolution. The playlists and
.ts
segments appear to be generated correctly, but when I play them3u8
files in media players like VLC or PotPlayer, the video does not play seamlessly. Instead, it plays in a segment-by-segment manner (e.g., it stops after each segment and doesn’t automatically continue to the next one). I expect the entire video to play continuously without interruptions. What could be the issue ?

I ran these commands on cmd :


for %i in (*.jpeg) do echo file '%cd%\%i' >> C:\Users\stitch_img\test\input_list.txt

ffmpeg -y -f concat -safe 0 -i "C:\Users\stitch_img\test\input_list.txt" -vf "scale=1920x1080" -c:v libx264 -r 16 -hls_time 4 -hls_playlist_type vod -hls_segment_filename "C:\Users\stitch_img\test\1080_video_%03d.ts" "C:\Users\stitch_img\test\1080_playlist.m3u8"

ffmpeg -y -f concat -safe 0 -i "C:\Users\stitch_img\test\input_list.txt" -vf 
"scale=2560x1440" -c:v libx264 -r 16 -hls_time 4 -hls_playlist_type vod -hls_segment_filename "C:\Users\stitch_img\test\2k_video_%03d.ts" "C:\Users\stitch_img\test\2k_playlist.m3u8"

echo #EXTM3U > "C:\Users\stitch_img\test\master_playlist.m3u8"
echo #EXT-X-STREAM-INF:BANDWIDTH=5000000,RESOLUTION=1920x1080 >> "C:\Users\stitch_img\test\master_playlist.m3u8"
echo 1080_playlist.m3u8 >> "C:\Users\stitch_img\test\master_playlist.m3u8"
echo #EXT-X-STREAM-INF:BANDWIDTH=8000000,RESOLUTION=2560x1440 >> "C:\Users\stitch_img\test\master_playlist.m3u8"
echo 2k_playlist.m3u8 >> "C:\Users\stitch_img\test\master_playlist.m3u8"



What I’ve Tried :


- 

-
Verified that the
.ts
files are playable individually (e.g., opening1080p_000.ts
in VLC works fine).

-
Ensured the
m3u8
files are structured correctly with#EXT-X-ENDLIST
(indicating a VOD playlist).

-
Used HTTP playback to rule out local path resolution issues, but the issue persists










m3u8 masters
:

#EXTM3U
#EXT-X-STREAM-INF: BANDWIDTH=5000000, RESOLUTION=1920x1080 1080_playlist.m3u8
#EXT-X-STREAM-INF: BANDWIDTH=8000000, RESOLUTION=2560x1440 2k_playlist.m3u8



m3u8_2k
:

#EXTM3U
#EXT-X-VERSION: 3
#EXT-X-TARGETDURATION: 4 
#EXT-X-MEDIA-SEQUENCE:0 
#EXT-X-PLAYLIST-TYPE: VOD
#EXTINF: 4.125000, 
2k_video_000.ts 
#EXTINF:3.312500,
2k_video_001.ts
#EXT-X-ENDLIST



m3u8_1080p
:

#EXTM3U
#EXT-X-VERSION: 3
#EXT-X-TARGETDURATION: 4 
#EXT-X-MEDIA-SEQUENCE:0 
#EXT-X-PLAYLIST-TYPE: VOD
#EXTINF: 4.125000, 
1080_video_000.ts 
#EXTINF:3.312500,
1080_video_001.ts
#EXT-X-ENDLIST



-
-
HTML5 video player stutters even after video is loaded [migrated]
24 octobre 2013, par Adi UliciI am using jwplayer to display videos on my websites but cannot manage to make them running smoothly. They stutter, especially in full screen, although I wait for the video to fully load.
I tried decreasing the video quality from by decreasing the bitrate from 3000k to 1800k (I use ffmpeg to convert the videos). The resolution of the videos is 1280x720 (HD).
Any tips what should I try next ? Thanks
-
streaming of hevc coded video coded by ffmpeg via vlc media player
7 avril 2015, par aamnawhen i am trying to stream a video which is converted from yuv to mp4 in ffmpeg in hevc coding from one pc to another using VLC.Streaming does not happen .please help me.