
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 (65)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (13181)
-
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.