
Recherche avancée
Autres articles (39)
-
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 -
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. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (8550)
-
compiling errors with ffmpeg on linux [closed]
7 mai 2013, par David TreeHi all ,I downloaded the latest ffmpeg source code and successfully installed it on Ubuntu
But I failed to compile a simple demo.
This was created with QtCreator with the .pro file as follows :QT -= gui
TARGET = qt_v4l2
TEMPLATE = app
SOURCES += \
../tutorial01.cLIBS += -L/-lavcodec -lavformat -lswscale -lavutil
Here are the error messages ,just to name a few :
../tutorial01.c:22:16 : error : unknown type name 'AVFrame'
../tutorial01.c:55:5 : error : unknown type name 'uint8_t'
../tutorial01.c:68:50 : error : 'NULL' undeclared (first use in this function)
/tutorial01.c:84:22 : error : request for member 'streams' in something not a structure or union
../tutorial01.c:84:57 : error : 'AVMEDIA_TYPE_VIDEO' undeclared (first use in this function)
../tutorial01.c:122:24 : error : expected expression before ')' token
../tutorial01.c:128:21 : error : 'AVPicture' undeclared (first use in this function)
../tutorial01.c:128:32 : error : expected expression before ')' token.
And this is the ffmpeg installed
ffmpeg version 1.1.git Copyright (c) 2000-2013 the FFmpeg developers
built on May 7 2013 14:10:58 with gcc 4.7 (Ubuntu/Linaro 4.7.2-2ubuntu1)
configuration : —enable-gpl —prefix=/usr —enable-libx264 —enable-pthreadsAnd this is the actuall CODE
https://github.com/phamquy/FFmpeg-tutorial-samples/blob/master/tutorial01.c
-
How to save ffmpeg output.mp4 to file
31 mars 2020, par InterestedbutnotknowingI have a very basic question. I combined an .wav and .mp4 file to output.mp4 using ffmpeg in python :
!ffmpeg -i /content/input.mp4 -i audio.wav -c:v copy -c:a copy output.mp4
Now how do I save the output.mp4 to an .mp4 file on my computer ?
Thank you very much in advance -
Play video in Android using FFMPEG
24 juin 2013, par Jagdeep SinghI had build
FFmpeg
library in Android(NDK) using this. But this example is too basic. It just checks if the video is present or not. What I want to do is just to play the video usingFFMPEG
. Is there any example or any code which can help me on this ?Thanks in advance.