
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (50)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (8386)
-
FFMpeg Convert to AAC with a multiple stream input file
20 février 2023, par AndersI am trying to add a AAC Audio Stream (Stereo) to a MKV file.
To do this I am first creating a Temp.mkv file which I then combine with the original MKV file. This works fine in most cases but when I am trying to create the Temp.mkv where the original file have multiple audio stream it's not working.


I am doing this (in this example I am going for the 3rd Audio stream to be converted)


-loglevel error -i "Input.mkv" -map 0:a:2 -c:a:2 aac -ac:a:2 2 Temp.mkv



The goal is to have a single AAC audio stream (Stereo) in the Temp.mkv file.
Also the reason I am doing the "Temp.mkv" and not "Temp.aac" is to keep the audio stream metadata.


For some reason I end up with the wrong audio stream (I know this because the language is wrong) and for some reason it's in Vorbis and not AAC.


UPDATE :
If do the 3rd stream it's like this :


Stream #0:3 -> #0:0 (ac3 (native) -> vorbis (libvorbis))



If I do the 1st stream it's like this :


Stream #0:1 -> #0:0 (truehd (native) -> aac (native))



-
Restore support for rel nofollow
24 mai 2014, par frontier777Restore support for rel nofollow
The documentation at http://www.jacklmoore.com/colorbox/ still states that rel:nofollow can be used to show un-grouped popups. Better to use rel:false of course, but old projects may be using the old nofollow convention.
-
Integrating ffmpeg with qtcreator on windows
26 juin 2015, par Mayank AgarwalI am making simple application just calling ffmpeg
av_register_all
in qt project ffmpegexamplemain.cpp
but i am getting the following error :main.obj :-1 : error : LNK2019 : unresolved external symbol
_av_register_all referenced in function _mainMy
.pro
file is as follows :QT += core
QT -= gui
QMAKE_CXXFLAGS += -D__STDC_CONSTANT_MACROS
INCLUDEPATH = -I D:/ffmpeg/dev/include
LIBS += -LD:/ffmpeg/shared/bin
LIBS += -LD:/ffmpeg/dev/lib
TARGET = ffmpegexample
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cppIncluding the LIBS and DLLs as well as headers from ffmpeg static/dev builds from this location.
My main file is below :
#include <qcoreapplication>
extern "C" {
#include <libavutil></libavutil>imgutils.h>
#include <libavutil></libavutil>samplefmt.h>
#include <libavutil></libavutil>timestamp.h>
#include <libavformat></libavformat>avformat.h>
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
av_register_all();
return a.exec();
}
</qcoreapplication>also run qmake to generate
Makefile.debug
and also copied all the dlls and .libs in folder where projectmain.cpp
is there
but that also didn’t help
i am getting error :main.obj :-1 : error : LNK2019 : unresolved external symbol
_av_register_all referenced in function _main File not found main.objDon’t understand why
main.obj
is not getting generatedRegards
Mayank