
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (103)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...)
-
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 (...)
Sur d’autres sites (5509)
-
How to Add Watermark like tic tok using ffmpeg in android studio
3 février 2021, par arjunsinhI am trying To add Watermark Like Tic Tok using FFMPEG but it's Not working



GeneralUtils.checkForPermissionsMAndAbove(MainActivity.this, true);
 LoadJNI vk = new LoadJNI();
 try {

 //String complexCommand = "ffmpeg -y -i /storage/emulated/0/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /storage/emulated/0/out.mp4";
 /*String complexCommand = "ffmpeg -i /storage/emulated/0/in.mp4 -framerate 30000/1001 -loop 1 -i /storage/emulated/0/abcd.jpg -filter_complex\n" +
 " \"[1:v] fade=out:st=30:d=1:alpha=1 [ov]; [0:v][ov] overlay=10:10 [v]\" -map \"[v]\"\n" +
 " -map 0:a -c:v libx264 -c:a copy -shortest /storage/emulated/0/out.mp4";*/
 //String complexCommand = "ffmpeg -y -i /storage/emulated/0/in.mp4 -strict experimental -vf movie=/storage/emulated/0/abcd.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out] -s 320x240 -r 30 -b 15496k -vcodec mpeg4 -ab 48000 -ac 2 -ar 22050 /storage/emulated/0/out.mp4";
 String complexCommand = "ffmpeg -i /storage/emulated/0/in.mp4 -i /storage/emulated/0/abcd.jpg -filter_complex \\\n" +
 "\"overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2\" \\\n" +
 "-codec:a copy /storage/emulated/0/out.mp4";

 String workFolder = getApplicationContext().getFilesDir().getAbsolutePath();
 //String[] complexCommand = {"ffmpeg","-i", "/sdcard/videokit/in.mp4"};
 vk.run(GeneralUtils.utilConvertToComplex(complexCommand) , workFolder , getApplicationContext());

 Log.i("test", "ffmpeg4android finished successfully");
 } catch (Throwable e) {
 Log.e("test", "vk run exception.", e);
 }




but noting work for me



as you can i have no knowledge about FFMPEG so if you give answere please write in brief.



thank you.


-
find xargs mac change filename extension
27 janvier 2014, par brakertechI am trying to convert a directory full of mp3's (with spaces in file names) to m4a.
To convert a single file (this works) :
ffmpeg -i Traffic.mp3 -c:a libfaac -vn Traffic.m4a
The command that is failing (on OS X Mavericks) :
find . -name \*.mp3 -print0 | xargs -0 ffmpeg -i {} -c:a libfaac -vn {}.m4a
-
Convert from webm to gif using FFMPEG with minimal loss in quality
27 novembre 2017, par Neo Heraklesso I want to convert all my webm files to gif but the quality degraded incredibly, there’s some barely visible lines along the picture, tried using crf to improve it but it doesn’t, could you help me ? Here’s my code :
@echo off
setlocal
for %%G in ("%~dp0\webm\*.webm") do (
ffmpeg -i "%%G" -pix_fmt rgb24 -crf 17 "%%G.gif"
)
)
endlocal
pauseAlso, could you instruct me in a way in which I can remove the .webm from the output filename ? it outputs as "(file name).webm.gif"