Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (100)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7407)

  • input : Add a workaround for swscale overread bugs

    22 octobre 2017, par Henrik Gramner
    input : Add a workaround for swscale overread bugs
    

    swscale can read past the end of the input buffer, which may result in
    crashes if such a read crosses a page boundary into an invalid page.

    Work around this by adding some padding space at the end of the buffer when
    using memory-mapped input frames. This may sometimes require copying the
    last frame into a new buffer on Windows since the Microsoft memory-mapping
    implementation has very limited capabilities compared to POSIX systems.

    • [DH] input/input.c
    • [DH] input/input.h
  • lavu/hwcontext_qsv : make qsv hwdevice works with oneVPL

    4 janvier 2021, par Haihao Xiang
    lavu/hwcontext_qsv : make qsv hwdevice works with oneVPL
    

    In oneVPL, MFXLoad() and MFXCreateSession() are required to create a
    workable mfx session[1]

    Add config filters for D3D9/D3D11 session (galinart)

    The default device is changed to d3d11va for oneVPL when both d3d11va
    and dxva2 are enabled on Microsoft Windows

    This is in preparation for oneVPL support

    [1] https://spec.oneapi.io/versions/latest/elements/oneVPL/source/programming_guide/VPL_prg_session.html#onevpl-dispatcher

    Co-authored-by : galinart <artem.galin@intel.com>
    Signed-off-by : galinart <artem.galin@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • FFMpeg on docker

    31 mai 2022, par user1765862

    I'm trying to run FFMpegCore library in the docker&#xA;Here is my Dockerfile

    &#xA;

    FROM public.ecr.aws/lambda/dotnet:6 AS base&#xA;&#xA;FROM mcr.microsoft.com/dotnet/sdk:6.0-bullseye-slim as build&#xA;WORKDIR /src&#xA;COPY ["AWSServerless.csproj", "AWSServerless/"]&#xA;RUN dotnet restore "AWSServerless/AWSServerless.csproj"&#xA;&#xA;WORKDIR "/src/AWSServerless"&#xA;COPY . .&#xA;RUN dotnet build "AWSServerless.csproj" --configuration Release --output /app/build&#xA;&#xA;FROM build AS publish&#xA;&#xA;#fix for using System.Drawing.Common on docker&#xA;RUN apt-get update &amp;&amp; apt-get install -y apt-utils libgdiplus libc6-dev&#xA;&#xA;RUN apt-get install -y ffmpeg&#xA;&#xA;RUN dotnet publish "AWSServerless.csproj" \&#xA;            --configuration Release \ &#xA;            --runtime linux-x64 \&#xA;            --self-contained false \ &#xA;            --output /app/publish \&#xA;            -p:PublishReadyToRun=true  &#xA;&#xA;FROM base AS final&#xA;WORKDIR /var/task&#xA;&#xA;CMD ["AWSServerless::AWSServerless.LambdaEntryPoint::FunctionHandlerAsync"]&#xA;COPY --from=publish /app/publish .&#xA;

    &#xA;

    When I try to use any of FFMpegCore commands I'm getting following error in the log

    &#xA;

    &#xA;

    System.ComponentModel.Win32Exception (2) : An error occurred trying to&#xA;start process 'ffmpeg' with working directory '/var/task'. No such&#xA;file or directory

    &#xA;

    &#xA;