
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 (86)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
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
Sur d’autres sites (6993)
-
ffmpeg multiple overlays at different times
14 octobre 2017, par TheOctagonI have written a bash script which cycles through various RTMP live streams and switches every thirty seconds.
I have a PNG sequence which plays at the start of the video (blindRev-%d.png). A blind is pulled up, revealing the stream.28 seconds later, I would like it to come back down to cover the stream so that when the next stream is loaded, it retracts to reveal the next stream in sequence once again (blind-%d.png). I’ve tried using itsoffset to accomplish this. No audio is required.
However, only the first PNG sequence is played, the second never seems to happen.
The command I am using is :
ffmpeg -i rtmp://localhost/live/$stream -i blind/blindRev-%d.png -itsoffset 28 -i blind/blind-%d.png -filter_complex overlay -an -f flv rtmp://localhost/live/All
What am I doing incorrectly ?
Many thanks. -
FFMPEG astats not printing to txt files
18 novembre 2022, par At BayI used this command :


ffmpeg -i input.wav -filter astats,ametadata=mode=print:file=metadata.txt -f null -



But the txt file is blank, and the results show up in the cmd prompt window.


When I do the same exact command with the apsectralstats filter, I get a loaded txt file.


ffmpeg -i input.wav -filter astats,ametadata=mode=print:file=metadata.txt -f null -



Don't understand where I'm going wrong with the syntax.


-
How can I play Encrypted HLS video on 2 domains hosted on 2 servers ?
2 septembre 2021, par Aamir BashirI have a LMS deployed on 2 different domains that are hosted on 2 servers. One is VPS bought for hosting videos and other is a shared hosting server. LMS is deployed on both. I used FFMPEG to create encrypted HLS videos on VPS using a key stored on VPS. Now these videos are working fine on VPS but when I use the video URL to play it on shared hosting LMS, it gives error "The media could not be loaded, either because the server or network failed or because the format is not supported".


KEYINFO file contains the path to key on VPS server.
I am using Video-js and its plugins to play HLS videos.


Is there anyway to play these encrypted HLS videos on both domains ?