
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
Sur d’autres sites (7528)
-
Speed up a video without audio to 2x with FFmpeg in android
12 décembre 2020, par VoidMainI am working on a project in which I need to speed up a mute video. I did a little digging around and found the following command.



ffmpeg -i input.mkv -filter:v "setpts=PTS/2" output.mkv 




Tried to use it in android as follows.



new String[]{"-y", "-i", inputFileAbsolutePath, "-filter_complex", "setpts=PTS/2", "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4", fileOutput};




It doesn't even show anything in the Logcat.



I have also tried a few other solutions but no luck.
Any help would be appreciated.
Thanks.


-
How to make a PAN faster/slower speed with FFmpeg ?
27 février 2019, par Duty AlexI have an image named "input.png" 1920x7580 px and i want to make a PAN across it from top to bottom. My current code is :
ffmpeg -loop 1 -i input.png -vf crop=1920:1080:0:n -frames:v 6500 out.mkv
My video duration with this default speed is 4:20 (260 second). The scrolling down speed is 25 pixels per second.
How i increase/decrease this speed without changing the video FPS (25 fps) ? For example my video duration to be 3 minutes.
Thank you !
-
Video speed slow down in FMPEG
8 janvier 2019, par DiegoI am trying do bit slow video speed slow down which H264 format in fmpeg at android,When I run below code, it makes slowly and makes error.
String[] cmd3 = {"-i",h264_path,"-filter:v","setpts=1.25*PTS",h264_new_path};
try {
executeCommand(cmd3);
}
catch(FFmpegCommandAlreadyRunningException e) {
e.printStackTrace();
}