Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11614)

  • 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;