
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (48)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (5297)
-
FFMPEG changing output framerate issues
12 septembre 2022, par is_this_takenI want to take the input, blend N frames, decimate the other frames and use those for the output with the fps of my choice.


I used this line :


ffmpeg -y -i input.mp4 -vf tmix=frames=15:weights="1",select='not(mod(n\,15))' -vsync vfr frames/output-%05d.tif



That generated images, which I combined into the video. So far, so good.
But I'd like to skip the image output and go straight to video, so I tried this :


ffmpeg -y -i input.mp4 -vf tmix=frames=15:weights="1",select='not(mod(n\,15))' -vsync vfr -r 30 -c:v prores_ks -profile:v 3 -vendor apl0 -bits_per_mb 8000 -pix_fmt yuv422p10le output.mov



That produces 1.62 fps video, instead of 30 fps.


I'm at a loss on how to get it to output 30fps without the intermediate step of outputting images.


Thanks


-
Issues in building ffmpeg on windows
18 janvier 2024, par RKumI have to use ffmpeg in our c++ on windows project. I have visual studio 2017.
For this I have to use
ffmpeg-cpp( https://github.com/Raveler/ffmpeg-cpp )
.
ffmpeg-cpp is dependent onffmpeg( https://ffmpeg.org/download.html )
.

To build ffmpeg I am following instructions in https://ffmpeg.org/platform.html#Windows.
I installed "
MSYS2 MINGW64
" using installermsys2-x86_64-20240113.exe
.

But I am not seeing files like msys_shell.bat or mingw64_shell.bat or mingw32_shell.bat.


How do I get these file ?


Also if I run commands like "
pacman -S make pkgconf diffutils
" I get error

error: failed retrieving file 'pkgconf-2.1.0-1-x86_64.pkg.tar.zst' from mirror.iscas.ac.cn : SSL certificate problem: self-signed certificate in certificate chain



How to resolve this certificate issue ?


-
ffmpeg text relocations issues on
26 janvier 2021, par Amazing ThingI have been working on a little app that use FFMPEG Android library in order to convert some videos files. However, the app is crashing on any devices >= 23. I read that this can be fixed either by downgrading your SDK to 22 or using
--disable-asm
(make it very slow). I want to test the second case but I could not find a good documentation how to implement it on Android. Here my cmd :


String cmd="--disable-asm -i " + videoName + "-i watermark.jpg -filter_complex " + overlay + " -vcodec libx264 -crf 28 -preset ultrafast -c:a copy " +"repostvideo.mp4";




Unfortunately this is not working. So my question how or where would I put
--disable-asm
in my cmd in order to make it work ?


Thanks.



Edit 1 : Logcat errors





CANNOT LINK EXECUTABLE "/data/user/0/xxxx" : "/data/data/xxxx" has text relocations.





Version :





implementation 'com.writingminds:FFmpegAndroid:0.3.2'