
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (100)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...)
Sur d’autres sites (6815)
-
Anomalie #2044 (Nouveau) : (Ergonomie) Renforcer les "indicateurs d’emplacement" pour les pages de...
2 mai 2011, par A ShaszinEn naviguant dans l’interface privée, il y a un effet "Mais où suis-je ?" Plusieurs pistes (non exclusives) pour y remédier :
Généraliser le squelette des pages du menu "Configuration" (avec bloc en haut à gauche reprenant toutes les sous-entrées du menu). Un renfort visuel sur la sous-entrée (...)
-
Installing FFMPEG on my EC2 instance takes too long ; what am I doing wrong ? [closed]
24 août 2023, par Shaban KhawarI found a good article on how to download onto my EC2 instance : link
Here's the issue. It takes forever ! It takes around 15 minutes to install.


I'm running my EC2 instance on Amazon Linux 2023, so no apt-get for me.
Also my EC2 instance is created by my EB environment, so if auto-scaling occurs, my instance will be terminated and a new one will be created. I can set .ebextensions to run all the commands to install FFMPEG again but as mentioned above, it takes forever ! That means for 15-20 minutes, my server is down because of one dependancy. I feel like I'm going about this the wrong way, so any advice is appreciated.


-
Live streaming of processed frames to AWS
22 avril 2021, par MinasChamI'm working on a project where i need to capture live video feed from an RTSP camera source, process the video frame-by-frame and stream the result to an AWS Service.


So far, my solution :


- 

- Captures frames from the RTSP camera source using
OpenCV
and performs some processing. - Feeds the processed frames to an
ffmpeg
pipe that packages the content for online streaming (HTTP Live Streaming - hls
) and saves it locally. - Transfers the media content to an Amazon Kinesis Video Stream using a
Gstreamer
pipeline element withkvssink
as a sink element.








My questions are :


- 

- Currently I'm saving the content both locally and on an Amazon Kinesis Video Stream. Is this efficient ?
- Is it possible to directly stream the frames to the Amazon kinesis Video Stream (perhaps by connecting the
ffmpeg
output with thegstreamer
pipeline element) ? - Is the file format suitable for this implementation or would it better to encode the media differently ?








- Captures frames from the RTSP camera source using