Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (98)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (13491)

  • Unknown encoder 'libx264' in flutter android app

    17 juillet 2023, par ololo

    I am trying to use libx264 via ffmpeg_kit_flutter with full-gpl options in my Flutter app. However, when I start the app on Android, I keep getting the error :

    


    "Unknown encoder 'libx264'."

    


    Here is my current setup :

    


    In android/build.gradle file :

    


    buildscript {
    ext {
        ffmpegKitPackage = "full-gpl" // Notice I specified the option here
        kotlin_version = '1.8.0'
    }

    repositories {
        google()
        mavenCentral()
    }
    // .....
}


    


    In android/app/build.gradle file :

    


    android {
    compileSdkVersion 33

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    packagingOptions { 
        // I specified the libx264 in this packageOptions block
        pickFirst 'lib/x86_64/libx264.so'
        pickFirst 'lib/arm64-v8a/libx264.so'
        pickFirst 'lib/armeabi-v7a/libx264.so'
        pickFirst 'lib/x86/libx264.so'
    }
}


    


    In pubspec.yaml file :

    


    dependencies:
  ffmpeg_kit_flutter: ^5.1.0


    


    What could be the issue causing the "Unknown encoder 'libx264'" error ? Any help would be appreciated. Thank you !

    


  • cbs_av1 : Don't reject unknown metadata

    24 janvier 2023, par Mark Thompson
    cbs_av1 : Don't reject unknown metadata
    

    Accept it and pass it through unchanged.

    The standard requires that decoders ignore unknown metadata, and indeed
    this is tested by some of the Argon coverage streams.

    • [DH] libavcodec/cbs_av1.c
    • [DH] libavcodec/cbs_av1.h
    • [DH] libavcodec/cbs_av1_syntax_template.c
  • fftools/ffmpeg_mux_init : drop useless new_stream_{data,unknown}

    18 avril 2023, par Anton Khirnov
    fftools/ffmpeg_mux_init : drop useless new_stream_data,unknown
    

    Their only function is checking that encoding was not specified for
    data/unknown-type streams, but the check is broken because enc_ctx will
    not be created in ost_add() unless a valid encoder can be found.

    Add an actually working check for all types for which encoding is not
    supported in choose_encoder().

    • [DH] fftools/ffmpeg_mux_init.c