
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (66)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (5802)
-
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 -
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))



-
Fix —output-prefix with input-files in sub-directories
29 mai 2018, par orbeaFix —output-prefix with input-files in sub-directories
And make sure to reserve the whole file path when not using —output-prefix.
Fixes https://sourceforge.net/p/flac/bugs/463/
Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>