Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (60)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately 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 (...)

  • List of compatible distributions

    26 avril 2011, par

    The 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 (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7072)

  • Integrating ffmpeg with qtcreator on windows

    26 juin 2015, par Mayank Agarwal

    I am making simple application just calling ffmpeg av_register_all in qt project ffmpegexample main.cpp but i am getting the following error :

    main.obj :-1 : error : LNK2019 : unresolved external symbol
    _av_register_all referenced in function _main

    My .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.cpp

    Including 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 project main.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.obj

    Don’t understand why main.obj is not getting generated

    Regards
    Mayank

  • Fix —output-prefix with input-files in sub-directories

    29 mai 2018, par orbea
    Fix —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>

    • [DH] src/flac/main.c
  • FFMpeg Convert to AAC with a multiple stream input file

    20 février 2023, par Anders

    I am trying to add a AAC Audio Stream (Stereo) to a MKV file.&#xA;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.

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    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.

    &#xA;

    UPDATE :&#xA;If do the 3rd stream it's like this :

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;