
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (81)
-
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.
-
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 (7267)
-
how to download subtitles from a m3u8 file which is protected by cloudflare ?
25 juin 2023, par ZombZI am trying to use ffmpeg to download a vtt file from an m3u8 link but it isn't working


i tried to run ffmpeg -i https://manifest-gcp-us-east1-vop1.cfcdn.mux.com/nCuL1I6vazd2gTqez6v8cW96dY6kB02KK2i008fUX5L8EjUpCcCJagIoZ2Uu01cAZFC0102nF5SzBm8M/subtitles.m3u8?cdn=cloudflare&expires=1687752000&signature=NjQ5OTBkNDBfYTExYTNkOTRlZTg1ZWU0NjUwZWUzNGFiMzFkZDgyNDFkMzU2OGU0YmExZGQzZGIyNWE5MjJkMGE3ZTdmOTM3YQ== output.vtt but it didn't work and gave me :


Error when loading first segment 'https://chunk-gcp-us-east1-vop1.cfcdn.mux.com/v1/subtitle/nCuL1I6vazd2gTqez6v8cW96dY6kB02KK2i008fUX5L8EjUpCcCJagIoZ2Uu01cAZFC0102nF5SzBm8M/0.vtt?skid=default&signature=MF9lY2EwNmQxODg5OGQ5MTQxY2E1NjU2MDNiOTdkNDBhMGJjNzU1N2EwOGQ2N2E1MmE2NTI0Y2Y5MTQxNDZlYjc2' ;https://manifest-gcp-us-east1-vop1.cfcdn.mux.com/nCuL1I6vazd2gTqez6v8cW96dY6kB02KK2i008fUX5L8EjUpCcCJagIoZ2Uu01cAZFC0102nF5SzBm8M/subtitles.m3u8?cdn=cloudflare : Invalid data found when processing input


-
Revision e693472236 : Fairly basic integration of rectangular blocks in encoding RD loop. Adds RD int
17 avril 2013, par Ronald S. BultjeChanged Paths : Modify /vp9/common/vp9_blockd.c Modify /vp9/common/vp9_blockd.h Modify /vp9/decoder/vp9_detokenize.c Modify /vp9/encoder/vp9_block.h Modify /vp9/encoder/vp9_encodeframe.c Modify /vp9/encoder/vp9_rdopt.c Modify /vp9/encoder/vp9_segmentation.c (...)
-
ffmpeg - How to bypass uneven segmentation with basic encoding ? [closed]
2 juin 2021, par valexttExample request :


ffmpeg -i 'input.mp4' -c:v libx264 -force_key_frames "expr:gte(t,n_forced*1)" -segment_time 20 -reset_timestamps 1 -f segment output%03d.mp4


If I use
-c:v libx264
in the request, then the split time lasts for a long, but it works out correctly. In general, I am satisfied with the source codec, so I tried-c:v copy
, so we do not change the codec, which makes the split process almost instantly, but the problem is, that the output segments are not 20 seconds each, but for example :
20.5 sec
,18.5 sec
,21 sec
.
How to deal with it ? Why does the-c:v copy
modify the split unevenly ?