
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (61)
-
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 -
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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (9179)
-
Windows Batch Script For loop
14 avril 2013, par Dobbo1989I am new to batch scripts, I am trying to figure out how to create a script that will take all video files in a folder videos*.* and then use ffmpeg on each one and output the files to converted*.mp4 where the filenames are the same.
However I cant figure out how to get the for loop working so that I can extract the name and extension type of file I am processing.
for %%f IN (videos\*.*) DO (convert.bat %%f)
convert.bat
ffmpeg.exe -i %1 -f mp4 converted\%~n.mp4
I have tried both with and without double quotes however it wont recognise the file.
-
Building ffmpeg for Windows with MSYS and MinGW
27 février 2014, par Tech JerkI am trying to build ffmpeg for windows (Xp - SP2) as given here.
./configure -–extra-cflags=”-mno-cygwin -mms-bitfields” -–extra-ldflags=”-Wl, -add-stdcall-alias” -–enable-memalign-hack -–enable-shared -–disable-static -–target-os=mingw32
The above command is placed in a
myconfig
file as instructed and when i run./myconfig
, the following error is displayed :Broken Shell detected. Trying alternatives.
Trying Shell bash
Unknown option "-–extra-cflags=-mno-cygwin".As suggested in the link i tried various options but still i was not able to succeed.
My environment is Win XP with :
- MinGW-5.1.6,
- bash-2.05b-MSYS,
- MSYS-1.0.10,
- ffmpeg-0.5
EDIT :
After certain changes in the above command by referring howto i was able to successfully run the make command and i found the following DLL's in their respective directory
- ffmpeg\libavcodec\avcodec-51.dll
- ffmpeg\libavformat\avformat-51.dll
- ffmpeg\libavutil\avutil-49.dll
But i didn't see any ffmpeg\ffmpeg.exe file :(
What could have gone wrong ?
-
How to correctly install ffmpeg on windows XP ?
11 avril 2012, par pipenI'm working on C++ project on Windows which involve FFmpeg library.
The problem is that I can't include ffmpeg library to my project. I can't even run any of ffmpeg tutorials or examples. I'm always getting errors like the following :tutorial01.c:22:28: ffmpeg/avcodec.h: No such file or directory
tutorial01.c:23:29: ffmpeg/avformat.h: No such file or directoryand lots of errors like :
tutorial01.c:33: error: `iFrame' undeclared (first use in this function)
I found the tutorial with this instructions :
//gcc -o tutorial01 tutorial01.c -lavformat -lavcodec -lz
//to build (assuming libavformat and libavcodec are correctly installed
//your system).After further searching I found out that I should get a static build library version from here :
http://ffmpeg.zeranoe.com/builds/
Then I installed this library following these instructions :- Get the latest build from the arrozcru autobuilds page
- Unzip the folder into C :/Program Files/ffmpeg
- Add C :/Program Files/ffmpeg/bin to your system’s PATH environment variable
But I still have compilation errors of the same kind.
So, it seems it was not correct installation.What should I do to connect ffmpeg library to my project on Windows ?