
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (40)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4946)
-
Correct way of recutting HLS playlist with FFMPEG
4 juillet 2020, par somerandomusernameI'm recording a stream on my server and after it finished I need to trim x seconds from the beginning of my video. My stream has
master.m3u8
playlist and then 3 subindex_[0|1|2].m3u8
playlists.

I'm trying different methods, they all seem to generate a result, but nothing as I expect.


For example this :




ffmpeg -i index_0.m3u8 -ss 30 -strict -2 -hls_time 6 output_0.m3u




Seems to generate the correct nr. of
*.ts
files, but playlist is is only 30s long. Original#EXT-X-TARGETDURATION
was set to 6, now it is 8, but actual size is a floating 8.3333...

I'm definitely missing something.


Update 1 :


OK, so I figured out why my
*.m3u8
file was to small, by default it only loads last few records in the list so setting-hls_list_size 0
resolved that. Now I need to figure out how to get rid of floating point video sizes.

Update 2 :


It seems that I need
-hls_flags split_by_time
flag for HLS transmuxer not to ignore myhls_time
option. Now my output is even closer to correct result, still have that floating point video size problem.

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:5.933333,
output_clip0.ts
#EXTINF:6.033333,
output_clip1.ts
#EXTINF:5.933333,
output_clip2.ts
#EXTINF:6.000000,
output_clip3.ts
#EXTINF:3.000000,
output_clip3.ts
#EXT-X-ENDLIST



-
hwcontext_vulkan : correct comment in header
10 août 2024, par Lynne -
avfilter/asrc_anullsrc : actually return correct EOF pts
13 septembre 2020, par Paul B Mahol