Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (10433)

  • avcodec/libx264 : bump minimum required version to 155

    9 avril 2024, par Niklas Haas
    avcodec/libx264 : bump minimum required version to 155
    

    This version is seven years old, and present in Debian oldoldstable,
    Ubuntu 20.04 and Leap 15.0.

    Allows cleaning up the file substantially. In particular, this is
    motivated by the desire to stop relying on init_static_data.

    • [DH] configure
    • [DH] libavcodec/libx264.c
  • avcodec/mips/aaccoder_mips : Remove MIPS-specific aaccoder

    15 mars 2024, par Andreas Rheinhardt
    avcodec/mips/aaccoder_mips : Remove MIPS-specific aaccoder
    

    ff_aac_coder_init_mips() modifies a static const structure of
    function pointers. This will crash if the binary uses relro
    and is a data race in any case.

    Furthermore it points to a maintainability issue : The
    AACCoefficientsEncoder structures have been constified
    in commit fd9212f2edfe9b107c3c08ba2df5fd2cba5ab9e3,
    a Libav commit merged in 318778de9ebec276cb9dfc65509231ca56590d13.
    Libav did not have the MIPS-specific AAC code and so this was
    fine for them ; yet FFmpeg had them, but this was not recognized.

    Commit 75a099fc734a4ee2b1347d0a3d8c53d883b95174 points to another
    maintainability issue : Contrary to ordinary DSP code, this code
    here is way more complex and needs to be constantly kept in sync
    with the ordinary code which it mimicks and replaces. Said commit
    is the only commit actually changing aaccoder.c in the last few
    years and the same change has not been performed for the MIPS
    clone ; before that, it even happened several times that the mips
    code was broken due to changes of the generic code (see commits
    97437bd17a8c5d4135b2f3b1b299bd7bb72ce02c and
    de262d018d7d7d9c967af1dfd1b861c4b9eb2a60 or
    860dbe0275e57cbf4228f3f653f872ff66ca596b or
    933309a6ca0f18bf1d40e917fff455221f57fb4b or
    b65ffa316e377213c29736929beba584d0d80d7c). This might even lead
    to scenarios where someone changing non-dsp aacenc code would
    have to modify mips inline asm in order to keep them in sync.
    This is obviously a significant burden (if the AAC encoder were
    actively developed).

    Finally, the code does not even compile here due to errors like
    "Error : float register should be even, was 1".

    Reviewed-by : Lynne <dev@lynne.ee>
    Reviewed-by : Jean-Baptiste Kempf <jb@videolan.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/mips/Makefile
    • [DH] libavcodec/mips/aaccoder_mips.c
  • Ffmpeg cpp libav randomly uses high cpu and less gpu or uses high gpu and less cpu with hw accel

    29 avril 2024, par cngkyt

    I am using ffmpeg as library with cpp&#xA;the integration of library is perfectly done i am using AVFilterGraph as audio resampler and video pixfmt converter.

    &#xA;

    I cannot share code because it is a complete library and contains too many files but i can assure there is no problem about code but maybe approach.

    &#xA;

    My whole class is based on the transcode example of ffmpeg&#xA;text

    &#xA;

    The problem is when i run my program that encodes approx 90 streams

    &#xA;

    it starts with 25% cpu usage 80% gpu encode usage %85 gpu decode usage with 100% sm utilization

    &#xA;

    or

    &#xA;

    it starts with 80% cpu usage 45% gpu encode usage 50% gpu decode usage with 60% sm utilization

    &#xA;

    when it start like second type of utilization videos are perfect&#xA;but when it starts like the first type of utilization videos are freezing

    &#xA;

    my program uses pure gpu for encoding for all streams but using gpu decoding for every 3 cpu deoding&#xA;that means i use hwaccel for 1/3 of streams&#xA;because my cards are 4070 ti super and they have 2 NVENC 1 NVDEC chips

    &#xA;

    my program takes udp streams and encode it and outputs udp mpegts

    &#xA;

    bitrate and quality settings are persistent across streams depending on resolution

    &#xA;

    i always test on same streams

    &#xA;

    the problem happens randomly&#xA;but if it starts with high cpu and low gpu utilization it goes on like this&#xA;when i restart program problem occurs randomly again

    &#xA;

    what can couse this

    &#xA;

    just as an info i have experience on c++ more than 25 years

    &#xA;

    if there is someone who can teach me something i will be happy

    &#xA;

    thanks for your further helps

    &#xA;

    i have tried to reproduce it with compiled ffmpeg instead of my libav library usage&#xA;same thing happens but not often

    &#xA;

    i have tried using hevc_cuvid instead of hwacceleration with avcodec_find_decoder_by_name function

    &#xA;