Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (111)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 May 2011, by

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

On other websites (12665)

  • lavf/matroska: Removing experimental suffix for Opus

    12 September 2013, by Vignesh Venkatasubramanian
    lavf/matroska: Removing experimental suffix for Opus
    

    Removing the /EXPERIMENTAL suffix for codec id field for Opus. Doing this
    as the implementation of embedding Opus in Matroska is complete.

    Signed-Off By: Vignesh Venkatasubramanian <vigneshv@google.com>

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroska.c
  • avformat_open_input cannot open a file with raw opus audio data

    4 November 2020, by bbdd

    I have a problem when trying to open a binary file containing raw audio data in opus format. When I try to open this file, the library returns an error: Unknown input format: opus.

    &#xA;

    How can I open this file ?

    &#xA;

    I need to open it and write all the raw audio data to an audio container. I understand that the opus format is intended only for encoding. I realized this using command:

    &#xA;

    $ ffmpeg -formats | grep Opus&#xA;&#xA;ffmpeg version 3.4.4 Copyright (c) 2000-2018 the FFmpeg developers&#xA;  E opus Ogg Opus # For only encoding&#xA;

    &#xA;

    Then what format should I use to open this file ? With ogg ? I tried, but there are also problems with opening the outgoing file. I provide the code that shows only the necessary part to open the file:

    &#xA;

    int main(int argc, char *argv[])&#xA;{&#xA;    // ...&#xA;&#xA;    av_register_all();&#xA;&#xA;    AVFormatContext *iFrmCtx = nullptr;&#xA;    AVFormatContext *oFrmCtx = nullptr;&#xA;    AVPacket packet;&#xA;&#xA;    const char *iFilename = "opus.bin"; // Raw audio data with `opus` format&#xA;    const char *oFilename = "opus.mka"; // Audio file with `opus` audio format&#xA;&#xA;    AVDictionary* frmOpts = nullptr;&#xA;    const qint32 smpRateErrorCode = av_dict_set_int(&amp;frmOpts, "sample_rate", 8000,  0);&#xA;    const qint32 bitRateErrorCode = av_dict_set_int(&amp;frmOpts, "bit_rate",    64000, 0);&#xA;    const qint32 channelErrorCode = av_dict_set_int(&amp;frmOpts, "channels",    2,     0);&#xA;    if (smpRateErrorCode &lt; 0 ||&#xA;            bitRateErrorCode &lt; 0 ||&#xA;                channelErrorCode &lt; 0) {&#xA;        return EXIT_FAILURE;&#xA;    }&#xA;&#xA;    AVInputFormat *iFrm = av_find_input_format("opus"); // Error: Unknown input format&#xA;    if (iFrm == nullptr) {&#xA;        av_dict_free(&amp;frmOpts);&#xA;        return EXIT_FAILURE;&#xA;    }&#xA;&#xA;    qint32 ret = 0;&#xA;    if ((ret = avformat_open_input(&amp;iFrmCtx, iFilename, iFrm, &amp;frmOpts)) &lt; 0) {&#xA;        av_dict_free(&amp;frmOpts);&#xA;        return EXIT_FAILURE;&#xA;    }&#xA;&#xA;    // We&#x27;re doing something...&#xA;}&#xA;

    &#xA;

  • ERROR: opus not found using pkg-config in msys64 on Windows

    10 August 2022, by prostargamer

    I'm trying to build ffmpeg.

    &#xA;

    I downloaded msys2 x64 from the official website. This is the latest version.
    &#xA;Executed "pacman-Syu", rebooted msys and executed "pacman-Su".

    &#xA;

    In your file build_ffmpeg_win.sh ffmpeg installs the following packages using pacman:

    &#xA;

    pacman --noconfirm -Sy&#xA;pacman --noconfirm -S msys/make&#xA;pacman --noconfirm -S mingw64/mingw-w64-x86_64-opus&#xA;pacman --noconfirm -S pkg-config&#xA;pacman --noconfirm -S diffutils&#xA;pacman --noconfirm -S mingw-w64-x86_64-pkg-config&#xA;

    &#xA;

    Then I run "pacman -Qet" in order to get the list of packages:

    &#xA;

    $ pacman -Qet&#xA;base 2020.12-1&#xA;diffutils 3.8-1&#xA;make 4.3-1&#xA;mingw-w64-x86_64-opus 1.3.1-4&#xA;pkg-config 0.29.2-4&#xA;

    &#xA;

    The opus package is installed.

    &#xA;

    However, when I try to run "build_ffmpeg_win.sh", then I get the following error at the stage ./configure: "ERROR: opus not found using pkg-config"

    &#xA;

    The following folders and files are located in the "msys64\mingw64\lib" folder:

    &#xA;

    pkgconfig (folder)&#xA;libopus.a&#xA;libopus.dll.a&#xA;

    &#xA;

    There is an opus.pc file in the msys64\mingw64\lib\pkgconfig folder, the contents of which refer to /mingw64/lib and /mingw64/include.&#xA;pkg-config knows about opus, but for some reason this error occurs during ./configure.

    &#xA;

    How can I solve this problem?

    &#xA;