Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9211)

  • utvideoenc : Enable support for multiple slices and use them

    14 février 2014, par Jan Ekström
    utvideoenc : Enable support for multiple slices and use them
    

    The official Ut Video decoder only threads with slices, thus until
    now any files encoded by the libavcodec encoder have only been
    decodable with a single thread. The default slice count is now
    set to subsampled_height / 120.

    Also sets slices to 1 for the Ut Video encoder tests to keep them
    green.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavcodec/utvideoenc.c
    • [DH] tests/fate/utvideo.mak
  • tiff : Return proper error for missing LZMA compression

    18 août 2014, par Diego Elio Pettenò
    tiff : Return proper error for missing LZMA compression
    

    The LZMA support is a semi-official extension supported by libtiff 4.0.0
    and later.

    Signed-off-by : Diego Elio Pettenò <flameeyes@flameeyes.eu>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/tiff.c
    • [DBH] libavcodec/tiff.h
  • ERROR : opus not found using pkg-config in msys64 on Windows

    10 août 2022, par 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;