
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (81)
-
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) (...)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (11947)
-
How can I capture/record screen of a specific Chrome's tab ?
31 juillet 2020, par RedEyesI would like to capture/record the screen of a specific Google Chrome's tab using gdigrab.
I have tried the following cmd but no success.


ffmpeg -f gdigrab -framerate 6 -i title= out.mpg



When I play the returned result with ffplay, the video content captured is all in black or white.
My Chrome version is 84.0.4147.105 (Official Build) (64-bit).


Any help would be appreciated.


-
How can i specify range of frames in ffmpeg shuffleframes filter [closed]
26 juillet 2022, par liphoneI need to duplicate a bunch of seconds in video and in official docs you can only input frames into shuffleframes filter like so


ffmpeg -i INPUT -vf "shuffleframes=0 1 2 3 4 5 6 7 ... 592 593 594 595 596 597 598 599 600" OUTPUT



Is there any way to put it like in array ? Or maybe other method of shuffling frames in ffmpeg


-
iOS record screen inside the contents of an SDL Window
12 avril 2018, par Law GimenezI’m using ffmpeg/SDL stack for streaming RTSP from the server. I was able to save the screen shot image from the SDL_Window. But now I wanted to record the content inside it into an mp4 file.
First, I tried using iOS’ ReplayKit framework but it can’t detect the SDL Window. It will record the ViewController that opened the SDL Window.
Is there any way to record content inside an SDL Window ?
I’m using SDL’s official library.