
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 (99)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (9976)
-
FFMPEG : Output tiles onto a black background [closed]
14 juin 2013, par MollyRazorI have the following command, which converts a video and also generates a 10x9
tileset. Currently it gets the longer side and either generate a 90px wide or
45px tall tiles. My problem is that each tile has to be 90x45 large, so in
essence what I need is a properly resized and centered tile inside a black
bounding box. How can I achieve this ?The resulting tile
What I would like to achieve
Actual command line
ffmpeg -i K/vertical.mp4 .... vertical.out.mp4
ffmpeg -i K/vertical.mp4 -an -vsync vfr \
-vf select="isnan(prev_selected_t)+gte(t-prev_selected_t\,2)",scale="'if(gt(iw,ih),90,-1)':'if(gt(iw,ih),-1,45)'",tile="10x9" \
-qscale:v 3 './f/f%03d.jpg' -
Remove .mp4 video top and bottom black bars using ffmpeg
9 septembre 2014, par rexhinI’m new to ffmpeg and I have heard that it has a filter for black. I want to remove black bars on top and bottom of the video so the video will be cropped to the remaining video without black bars. Thanks :)
-
How to play a FFMPEG video in all platforms(Window, iPad/iPhone, and Android)
11 décembre 2014, par flightI have created a video through screen capturing using FFMPEG.
FFMPEG Command is :"ffmpeg -f dshow -i video=\"screen-capture-recorder\" -r 15 -t 20 SC1.mp4"
This video is playing in only VLC player. Need to play this video in all player and on all platforms.
Please recommend a feasible approach to solve this problem.