Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (6317)

  • Remove the instance of native library from app using dlclose(Android NDK)

    7 septembre 2012, par mirroredAbstraction

    I have compiled FFmpeg library using NDK and use it to trim videos and get thumbnails from a video in my app, so basically I have ffmpeg.so and video-trimmer.so libraries up and running.

    The problem however is strange, the trim or getThumbnail operations are successful but just one time i.e. the first time and the operations fail the second time. However it is successful the third time, I googled it and got two similar posts on SO related to my problem

    POST 1 :

    POST 2 :

    Interestingly they suggest the same solution and I am unable to solve the issue being a naive in C programming language.

    Here is what I have done

    void Java_com_example_demo_natives_LibraryLoader_loadTrimmerLibrary(JNIEnv* env, jclass class, jstring libffmpeg_path, jstring inputFile, jstring outFile,
           jstring startTime, jstring length)
    {
           const char* path;
           void* handle;
           int *(*Java_com_example_demo_natives_VideoTrimmer_trim)(JNIEnv *, jclass, jstring, jstring, jstring, jstring);

           path = (*env)->GetStringUTFChars(env, libffmpeg_path, 0);

           handle = dlopen(path, RTLD_LAZY);

           Java_com_example_demo_natives_VideoTrimmer_trim = dlsym(handle, "Java_com_example_demo_natives_VideoTrimmer_trim");
           (*Java_com_example_demo_natives_VideoTrimmer_trim)(env, class, inputFile, outFile, startTime, length);

           (*env)->ReleaseStringUTFChars(env, libffmpeg_path, path);

           dlclose(handle);
    }

    Despite of calling dlclose the library instance still exists in memory, what I am doing wrong here ?

    I come to know that library instance still exists because when I load the libraries again in some other activity the error message says library already exists in CL.

    I want to get rid of the instance of that library from memory, please help...

  • Cutting video based on audio training data

    28 février 2018, par TheVCodes

    I essentially want to cut a pre-recorded video based on a bunch of
    training data of a certain sound
    . Any idea where I could find good documentation of this ?

    Example : Cut a PUBG video from when gunshots are heard in the video to 30 seconds ahead of the the beginning of the cut.

    How it could help : It could help make simple video editing tasks faster.

    Anywhere you think I could get help with this ?

    Note : I’m new, so correct me if anything is wrong with this post

  • Any working example recording a (e.g. rtsp) stream to a local MP4 file with ffmpeg/libav ?

    15 novembre 2017, par ggs

    I’m looking for a working and not-out-dated script how to record an e.g. rtsp input stream to a local file (mp4) with ffmpeg/libav. If you could point me to one or post one, many thanks in advance. I’m searching for many hours and I haven’t got any experience with this topic.

    A lot of examples, libs, etc. are outdated, but I want to use ffmpeg >= v3.3.

    Any special things I have to consider (when compiling ffmpeg, or when saving local file to iOS device) ?