Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (70)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9516)

  • avdevice/lavfi : Fix double-free on error

    29 septembre 2023, par Andreas Rheinhardt
    avdevice/lavfi : Fix double-free on error
    

    After the AVFrame has been wrapped into a buffer,
    it is owned by the buffer and must not be freed manually
    any more. Yet this happens on subsequent errors.

    This bug was introduced in 6ca43a9675d651d7ea47c7ba2fafb1bf831c4d0b.

    Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavdevice/lavfi.c
  • avcodec/cbs_h266 : Remove double ;

    29 juin 2023, par Andreas Rheinhardt
    avcodec/cbs_h266 : Remove double ;
    

    Fixes a warning from GCC when in pedantic mode :
    "extra semicolon in struct or union specified"
    May also fix compilation with MSVC, see
    https://fate.ffmpeg.org/report.cgi?time=20230629174305&slot=x86_64-msvc17-windows-native

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cbs_h266.h
  • Problems with ffmpeg cross-compilation for windows x64 using linux/mingw

    3 mai 2023, par Adam

    I'm cross-compiling ffmpeg with NVIDIA hw acceleration for windows 64 with ubuntu/mingw.&#xA;The configuration/make process is OK but dumpbin shows that avfilter-9.dll file tries to import some kernel functions twice - from kernel32 which is correct and second time from... npp dlls !

    &#xA;

    dumpbin /imports avfilter-9.dll&#xA;:&#xA;    nppig64_12.dll&#xA;             180587CC8 Import Address Table&#xA;             180587148 Import Name Table&#xA;                     0 time date stamp&#xA;                     0 Index of first forwarder reference&#xA;&#xA;                         154 nppiRotate_8u_C1R&#xA;                         100 nppiResizeSqrPixel_8u_C1R&#xA;                           1 AcquireSRWLockExclusive&#xA;                         11B DeleteCriticalSection&#xA;                         13F EnterCriticalSection&#xA;                         228 GetCurrentProcess&#xA;                         229 GetCurrentProcessId&#xA;                         22D GetCurrentThreadId&#xA;                         276 GetLastError&#xA;:&#xA;   KERNEL32.dll&#xA;             180587CD8 Import Address Table&#xA;             180587158 Import Name Table&#xA;                     0 time date stamp&#xA;                     0 Index of first forwarder reference&#xA;&#xA;                           1 AcquireSRWLockExclusive&#xA;                         11B DeleteCriticalSection&#xA;                         13F EnterCriticalSection&#xA;                         228 GetCurrentProcess&#xA;                         229 GetCurrentProcessId&#xA;                         22D GetCurrentThreadId&#xA;                         276 GetLastError&#xA;                         301 GetSystemTimeAsFileTime&#xA;                         31F GetTickCount&#xA;                         375 InitOnceBeginInitialize&#xA;

    &#xA;

    My ./configure :

    &#xA;

    sudo PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ ./configure --arch=x86_64 --target-os=mingw64 --cross-prefix=x86_64-w64-mingw32- --enable-nonfree --enable-cuda-nvcc --enable-nvenc --enable-libnpp --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64 --extra-cflags=-I../npp_dev/include/ --extra-ldflags=-L../npp_dev/lib/x64/ --disable-static --enable-shared&#xA;

    &#xA;

    /npp_dev contains include/lib files for npp (windows 64).

    &#xA;

    Anybody encountered similar issue or has any idea what I should start looking at ?

    &#xA;

    Important note - without —enable-libnpp the avfilter-9.dll is correctly generated.

    &#xA;

    Thanks ! //Adam

    &#xA;