
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (70)
-
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 (12583)
-
lavc/pngdec : remove unnecessary context variables
2 avril 2021, par Anton Khirnov -
How add Custom Prefix segment inside of m3u8 playlist using ffmpeg ip rtsp
23 novembre 2022, par Maruf SmBasically


ffmpeg -i "rtsp ://admin:pass@ip:port/cam/realmonitor ?channel=1&subtype=1" -hls_time 10 -hls_list_size 3 -hls_delete_threshold 3 -hls_flags delete_segments "streaming.m3u8"
using this argument i got


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:21
#EXTINF:10.000000,
streaming21.ts
#EXTINF:10.000000,
streaming22.ts
#EXTINF:10.000000,
streaming23.ts
#EXTINF:10.000000,
streaming24.ts
#EXTINF:3.760000,
streaming25.ts
#EXT-X-ENDLIST



now i want output or m3u8 play list like


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:21
#EXTINF:10.000000,
http://127.0.0.1/output/streaming21.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming22.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming23.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming24.ts
#EXTINF:3.760000,
http://127.0.0.1/output/streaming25.ts
#EXT-X-ENDLIST



-
What are the gotchas of using statically linked libraries in serverless platforms such as Google Cloud Functions ?
5 septembre 2017, par DzhLibraries such as ffmpeg-static upload statically linked binaries onto container.
I wonder what are the drawbacks of using this approach ?
Does the library size counts against your memory use (it’s billed by GCloud) ?
Does it slow down the container ? Perhaps some future-proofing issues ?
Edit : Found something of a related (I wanted to setup OpenCV) on AWS blog. It doesn’t explain drawbacks, just shows how to do it exactly.