
Recherche avancée
Autres articles (51)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (6974)
-
FFMPEG scaling, how to set scale so width AND height don't exceed a certain amount ?
12 octobre 2013, par DariusI have 2 videos, one is 500 pixels by 100 pixels (just an example, like something recorded sideways on an iphone). And a 1980 x 400 pixels videos. I need the video to convert maintaining aspect ratios. I know of the -vf scale filter such as -vf scale=-1:320, but that only takes the width and scales the height accordingly. My 500 x 100 video would be 320px wide and 1600 pixels tall. That's bad, I need it to be max 500 pixels tall and max width of 320 (just example sizes).
How would I configure the -vf scale function to do that ?
Using latest ffmpeg 0.11
Recap : scale any video to max 500 height : 320 width while keeping aspect ratio
-
Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on xCode 6.1 Mac with 10.9
5 février 2015, par arashagaI have tried many of the solution such as "Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on Mac with 10.8" to compile FFMPEG libraries on MAC for i386 an iphone but i constantly get and error. I guess it could b my xcode and clang version. I have already installed the latest command tools as well. Any help would be appreciated.
-
Ffmpeg error : Rotate thumbnail image of video
9 septembre 2016, par user3418135Iam using ffmpeg to generate thumbnail image from a video .mov (uploaded from iPhone)
This is PHP code on live server to generate :
public static function generateThumbnail($inputUrl, $outputUrl) {
$cmd = "ffmpeg -i ".$inputUrl." -ss 00:00:01 -vframes 1 -s 200x200 ".$outputUrl;
exec($cmd);
}On live server (CentOS 6.5) : If I run this cmd in terminal, it working. But if I run by calling above function php then thumbnail image will be rotated -90 degrees.
If i run two cases on localhost (LinuxMint 17.2) then all ok.
Thanks all.