
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (45)
-
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7170)
-
FFmpeg scale image do not use command way
30 juin 2016, par zzqI want scale a image with ffmpeg, not the command way,
so what is the steps ?
I try use
"libswscale/swscale.h"
int sws_scale(struct SwsContext *c,const uint8_t *const srcSlice[],const int rcStride[],int srcSliceY,int srcSliceH,uint8_t *const dst[],const int dstStride[] )
but need get the image info, like width, height, formate etc ;
how can I get these infomation and what next step do ?
-
FFMPEG Add 2 watermarks to an Image using single command
20 décembre 2019, par thatmanHow to add 2 watermarks to one image using ffmpeg. This is the command I am using for adding single watermark
ffmpeg -i actual-image.jpg -i watermark.png -filter_complex "overlay=5:5" output.jpg
But i am not able to add 2 arguments for this. Thanks for help in advance
-
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.