
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (52)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
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.
Sur d’autres sites (10039)
-
Creating debug build FFMpeg static libraries with Windows compiler
6 juillet 2015, par LostBoyWe are using the FFMpeg static libraries compiled via the —toolchain=msvc switch with the VS2010 compiler linked to the static runtime (-MT). These libraries work fine but they are linked to libcmt.lib.
We would like to compile a debug build of these libraries (i.e. linking against libcmtd.lib). In the configure call I added :
./configure --toolchain=msvc --enable-debug --arch=x86 --extra-cflags=-MTd
This will result in some calls to cl.exe with the -MTd switch but also some with the -MT switch and cause conflicts in the linker stage.
What am I missing ?
-
ffmpeg Frames to mp4 (Windows)
8 juillet 2015, par SomaxI am trying to combine my frames to a video now for like an hour and I have huge problems with ffmpeg. It keeps on telling me that the directory doesnt exist and i have no idea how to make it right...
ffmpeg is in C :/ffmpeg
the frames are in C/ffmpeg/render
they are named : output_0001.png to output_0150.pngI want to have 24 Frames per secound.
what do i have to do in the cmd ?i tryed like "ffmpeg -r 30 -i c :/ffmpeg/render/output_%24.png video.mp4"
What am i doing wrong ?
-
How to run script on Windows to get the files from the current directory ?
8 juillet 2015, par pcrolandFor example I have directory on the Desktop called "encode". It contains a video file and a script. And I want that the script get the files from the folder where the script is.
for %%a in ("*.mkv") do C:\encode\ffmpeg.exe -i "%%a" -c:a ac3 -b:a 192k "encode\%%~na.ac3"
pauseHow should I do that ?