
Recherche avancée
Autres articles (79)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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 (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (9495)
-
build : h264 parser depends on full h264 decoder
19 mars 2014, par Luca Barbato -
build : h264 parser depends on full h264 decoder
19 mars 2014, par Luca Barbato -
Taking video over an image not giving desired output in ffmpeg
23 avril 2014, par Amit ChandraI am trying to convert a video in square shape(means in equal width and height). for that I am taking one png image from drawable folder(for background) and resizing it using Bitmap class after comparison of height and width of the video.(example if height of the video > width, than i am passing height and vise verse).
After resizing of image I am adding +20 in image for padding, after that I am passing image Path, Video Path to the ffmpeg command, which suppose to take video over the image and at the center. The ffmpeg command i am using for that is below :
ffmpeg -i test.flv -loop 1 -i test.png -filter_complex '[0:v]setpts=PTS-STARTPTS[background]" +"[1:v]setpts=PTS-STARTPTS[foreground]" +"[background][foreground]overlay=x=main_w/2-overlay_w/2:y=main_h/2-overlay_h/2:"+"shortest=0[out]"' -map [out] -map 0:a -t 00:00:10 out.mp4
But I am not able to get the expected output.