Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (85)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (6024)

  • swscale/lut3d : add 3DLUT dispatch system

    29 novembre 2024, par Niklas Haas
    swscale/lut3d : add 3DLUT dispatch system
    

    This is a lightweight wrapper around the underlying color management system,
    whose job it is merely to manage the 3DLUT state and apply them to the frame
    data. This is where we might add platform-specific optimizations in the future.

    I also plan on adding support for more pixel formats in the future. In
    particular, we could support YUV or XYZ input formats directly using only
    negligible additional code in the 3DLUT setup functions. This would eliminate
    the major source of slowdown, which is currently the roundtrip to RGBA64.

    • [DH] libswscale/Makefile
    • [DH] libswscale/lut3d.c
    • [DH] libswscale/lut3d.h
  • lavc/vvc : Ensure subpictures don't overlap

    22 février, par Frank Plowman
    lavc/vvc : Ensure subpictures don't overlap
    

    This is essentially a re-implementation of
    https://patchwork.ffmpeg.org/project/ffmpeg/patch/20241005223955.54158-1-post@frankplowman.com/

    That patch was not applied last time. Instead we opted to identify
    issues which could be caused by invalid subpicture layouts and remedy
    those issues where they manifest, either through error detection or code
    hardening. This was primarily implemented in the set
    https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=13381.

    This has worked to some degree, however issues with subpicture layouts
    continue to crop up from the fuzzer and I've fixed a number of bugs
    related to subpicture layouts since then. I think it's best to return
    to the initial plan and simply check if the subpicture layout is valid
    initially.

    This implementation is also lighter than the first time — by doing a
    bit more logic in pps_subpic_less_than_one_tile_slice, we are able to
    store a tile_in_subpic map rather than a ctu_in_subpic map. This
    reduces the size of the map to the point it becomes possible to allocate
    it on the stack. Similar to 8bd66a8c9587af61c7b46558be3c4ee317c1af5a,
    the layout is also validated in the slice map construction code, rather
    than in the CBS, which avoids duplicating some logic.

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/ps.c
  • FFmpeg-kit : Unknown encoder 'libx264' / 'mediacodec' and Gradle dependency issues in Android Studio

    15 mai, par Izzet dönertaş

    I'm working on a video editor app in Android Studio using ffmpeg-kit. My goal is to export video segments with fade transitions and audio using FFmpeg.

    &#xA;

    This implementation line works fine :

    &#xA;

    implementation("com.arthenica:ffmpeg-kit-full:6.0-2")&#xA;

    &#xA;

    What doesn't work (Encoding) :&#xA;When I try to export a video segment using :

    &#xA;

    -c:v libx264 -c:a aac&#xA;

    &#xA;

    I get this error in the logs :

    &#xA;

    [vost#0:0 @ ...] Unknown encoder &#x27;libx264&#x27;&#xA;

    &#xA;

    After checking the build configuration, it turns out libx264 is not enabled in the current FFmpeg-kit build :

    &#xA;

    --disable-libx264 (or rather: --enable-libx264 is missing)&#xA;

    &#xA;

    Tried replacing libx264 with mediacodec :&#xA;Then I tried using :

    &#xA;

    -c:v mediacodec -c:a aac&#xA;

    &#xA;

    But again I got :

    &#xA;

    Unknown encoder &#x27;mediacodec&#x27;&#xA;

    &#xA;

    Apparently, mediacodec is supported for decoding, but not as an encoder in FFmpeg-kit.

    &#xA;

    Tried to compile my own FFmpeg binary :&#xA;I attempted building FFmpeg manually using the following flags :

    &#xA;

    --enable-libx264 --enable-gpl --enable-shared ...&#xA;

    &#xA;

    My plan was to access it via JNI or ProcessBuilder.

    &#xA;

    But the process is extremely frustrating :

    &#xA;

      &#xA;
    • Missing file errors
    • &#xA;

    • Configuration conflicts
    • &#xA;

    • Dependency hell (especially on macOS/Linux NDK toolchains)
    • &#xA;

    &#xA;

    Tried other ffmpeg-kit variants :&#xA;I also tried switching to :

    &#xA;

    implementation &#x27;com.arthenica:ffmpeg-kit-full-gpl:6.0&#x27;&#xA;

    &#xA;

    and other variants like ffmpeg-kit-min-gpl, etc.&#xA;But in all of them I got the same Gradle error :

    &#xA;

    Caused by: org.gradle.api.internal.artifacts.ivyservice.TypedResolveException:  Could not resolve all files for configuration &#x27;:app:debugRuntimeClasspath&#x27;.

    &#xA;

    My build.gradle setup (yes, mavenCentral + google are already included) :

    &#xA;

    pluginManagement {&#xA;    repositories {&#xA;        google()&#xA;        mavenCentral()&#xA;    }&#xA;}&#xA;&#xA;dependencyResolutionManagement {&#xA;    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)&#xA;    repositories {&#xA;        google()&#xA;        mavenCentral()&#xA;    }&#xA;}&#xA;&#xA;

    &#xA;

    I also tried enabling offline mode, clearing cache, adding jetpack.io, nothing helped.

    &#xA;

    I asked ChatGPT-4o, Gemini 2.5 Pro. None could provide a working solution for this combination of :

    &#xA;

      &#xA;
    • Working implementation
    • &#xA;

    • Proper video encoding (with libx264 or mediacodec)
    • &#xA;

    • Without breaking Gradle dependency resolution
    • &#xA;

    &#xA;

    I just want one of the following :

    &#xA;

      &#xA;
    1. A working FFmpeg-kit implementation (that supports libx264) and doesn’t crash Gradle

      &#xA;

    2. &#xA;

    3. A reliable guide or build.gradle snippet that lets me use GPL version (with libx264) without resolve errors

      &#xA;

    4. &#xA;

    5. (Ideally) A prebuilt safe LGPL-compatible alternative that allows encoding and is Google Play compliant

      &#xA;

    6. &#xA;

    &#xA;

    Any help or suggestions would be highly appreciated.&#xA;Thanks in advance

    &#xA;