
Recherche avancée
Autres articles (77)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9668)
-
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'