Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (78)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (10881)

  • Android crashes when new FFmpegFrameRecorder()

    23 mai 2021, par James Yu

    I try to create rtsp stream (or video file) with bitmaps using FFmpegFrameRecorder, and I get this message in logcat at the very beginning of the process :

    


    Thread[6,tid=2010,WaitingInMainSignalCatcherLoop,Thread*=0x795a268000,peer=0x12ec00b8,"Signal Catcher"]: reacting to signal 3


    


    and get

    


    SIGILL (signal SIGILL: illegal instruction)


    


    in debug tag, then my app hangs after these message shows up.
It is confirmed this SIGILL pops when new FFmpegFrameRecorder() is invoked, I wonder why it complains illegal instruction ?

    


    This is how I create an instance of FFmpegFrameRecorder :

    


        private void startRecorder() {
        if(recorder != null) { return; }
        recorder = new FFmpegFrameRecorder("/sdcard/test.flv", 640, 480, 0);
        recorder.setVideoCodec(avcodec.AV_CODEC_ID_H264);
        recorder.setFormat("flv");
        recorder.setFrameRate(25);
        recorder.setInterleaved(true);
        recorder.setVideoOption("crf", Integer.toString(25));
        recorder.setPixelFormat(0);
        recorder.setGopSize(-1);
        recorder.setVideoOption("tune", "zerolatency");
        recorder.setVideoOption("preset", "ultrafast");
        try {
            recorder.start();
        } catch (FFmpegFrameRecorder.Exception e) {
            Log.e("sensetime", e.getMessage(), e);
        }
    }


    


    Environment information is as follows :

    


    Hardware: Qualcomm SDM660
Android: 10


    


    Dependencies in build.gradle :

    


    implementation group: 'org.bytedeco', name: 'javacv', version: '1.5.5'
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.5'
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.5', classifier: 'android-arm64'
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.5', classifier: 'android-arm'
implementation group: 'org.bytedeco', name: 'ffmpeg', version: '4.3.2-1.5.5'
implementation group: 'org.bytedeco', name: 'ffmpeg', version: '4.3.2-1.5.5', classifier: 'android-arm64'
implementation group: 'org.bytedeco', name: 'ffmpeg', version: '4.3.2-1.5.5', classifier: 'android-arm'


    


    packagingOptions in build.gradle :

    


    packagingOptions {
    pickFirst 'META-INF/native-image/android-arm64/jnijavacpp/jni-config.json'
    pickFirst 'META-INF/native-image/android-arm64/jnijavacpp/reflect-config.json'
    pickFirst 'META-INF/native-image/android-arm/jnijavacpp/reflect-config.json'
    pickFirst 'META-INF/native-image/android-arm/jnijavacpp/jni-config.json'
}


    


  • ogg/vorbis : implement header packet skip in chained ogg bitstreams.

    24 mai, par Romain Beauxis
    ogg/vorbis : implement header packet skip in chained ogg bitstreams.
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vorbis_parser.h
    • [DH] libavcodec/vorbisdec.c
    • [DH] libavformat/oggparsevorbis.c
    • [DH] tests/ref/fate/ogg-vorbis-chained-meta.txt
  • Which library lets me manipulate Audio Objetc's metadata right before decoding ?

    23 juin 2024, par BunnyMerz

    I have read that in the MPEG-H part 3, the 3D audio one, you have the option to encode Objects with certain meta-data, such as volume and coordinates. And it is defined by the Standard that you can alter those information as it goes trough the decoder. Here is an image taken from and article. I'm referring to the box called Meta-data Decoder

    &#xA;

    Top level block diagram of the MPEG-H 3D Audio decoder

    &#xA;

    I am struggling to find a library that gives me that option, programmatically. I have looked into libmpegh and ffmpeg (which is also tagged in this question). Are there any known Libs that will let me alter the metadata as the audio is being decoded ?

    &#xA;