
Recherche avancée
Autres articles (111)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (6875)
-
what is the exact path to specify in php for ffmpeg for windows
17 janvier 2014, par user3196597i'm new to ffmpeg..and i've been trying to figure out the exact path to specify while running it in a php exec() function the code below runs fine in terminal but not in php :
1)c:/ffmpeg/bin/ffmpeg -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1
2)c:/xampp/htdocs/video/ffmpeg/bin/ffmpeg.exe -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1that works fine in terminal but not in php, i think the problem is with the path specification..can anyone tell the exact path to use while working in windows,please ??
thanks in advance friends :D
-
Maintaining Video Quality and Size while processing with FFmpeg
2 février 2017, par Syeda ZunairahI am using FFmpeg for video watermarking in android. Everything is working good but now I have to choose one from Video Quality and Video Size but I need to take care of both.
Here is my code
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
mediaMetadataRetriever.setDataSource(videoPathtem);
String bitRate = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_BITRATE);
String cmd = "-y -i " + videoPathtem + " -i " + watermarkImagePath + " -b:v " + bitRate + " -filter_complex overlay=0:0 -strict -2 -metadata:s:v:0 rotate=" + videoRotation + " -preset ultrafast " + resultVideoPath;Now if I don’t define the bitrate in the above command the Video Quality is maintaining but the bitrate is increasing with X5 (i.e. if original bitrate was 1000bps now its 5000kbps almost) resulting too much increase in video size (i.e from 50 MB to 150MB)
But if I define the bitrate in the above command than the bitrate and video size is almost like the original which is perfect but the quality of the video is too low.
Now is there any way I can maintain the quality as well as video size ?
I have searched on SO and checked other answers but nothing seems to handle both.
Thanks.
-
Use FFMPEG to Merge many frames into one video ?
14 novembre 2015, par SpoiledTechie.comWith a project I am working on, I am taking one video, extracting frames from within the middle, from 00:55:00 to 00:57:25. After I extract these images, I am modifying them via code and I then need to compile these images back into a video. To finish it off, I will then merge the video back into the original video.
Ive already pulled the frames from the video, modified them, but now I need to merge them back together into a video.
I used this question to check the format, but I am not getting the correct output.
Here is my current input to FFMPEG :
-r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj0.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj1.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj2.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj3.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj4.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj5.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj6.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj7.Bmp" -r 24.97 -i "C:\Users\scott\AppData\Local\Temp\iOs91azj8.Bmp" -an -r 24.97 "C:\Users\scott\AppData\Local\Temp\ewELJdA8.mp4"
EDIT
My current output gives me a video that doesn’t play. So for some reason, the merging of frames isn’t the correct format and FFMPEG isn’t giving me a reasonal output to work with.
How do I merge frames together into a video ?