Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12376)

  • dxva2 : Retry IDirectXVideoDecoder_BeginFrame()

    9 janvier 2014, par Sam Lantinga
    dxva2 : Retry IDirectXVideoDecoder_BeginFrame()
    

    If the function returns E_PENDING retry for a fixed number of times.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavcodec/dxva2.c
  • Why MediaArea_MediaInfo, AlturosDestinations_Alturos.VideoInfo and Xabe.FFmpeg work in C# console and winforms applications but not in UWP apps ?

    15 octobre 2020, par Morteza

    I want to get video files metadata. I used MediaInfo, AlturosVideoInfo and Xabe.FFmpeg. AlturosVideoInfo and MediaInfo return null but Xabe.FFmpeg returns an exception that says Invalid File (Can't open the file).

    &#xA;

    I think the problem is limitations in accessing files in UWP, but I added the folder that contains video files to FutureAccessList and even used FileOpenPicker.

    &#xA;

    How can I use these tools to get video metadata in UWP ?

    &#xA;

    Thank you

    &#xA;

  • How to write command in android when I m using FFmpeg Native with C++ file ?

    16 octobre 2019, par axita.savani

    Using FFmpeg lastest version ("Ada") with native code and write command in android .cpp file below it’s very simple function VideogetDuration() :

    #include
    #include <string>
    #include <iostream>
    #include <android></android>log.h>
    #include

    extern "C" {
    #include <libavutil></libavutil>timestamp.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libavutil></libavutil>display.h>
    }

       /***
        *
        * @param input - the absolute path to file
        * @returns the duration of file in seconds
        *
        */
       extern "C"
       JNIEXPORT jint JNICALL
       Java_com_ffmpegjni_videoprocessinglibrary_VideoProcessing_getDuration(JNIEnv *env,
                                                                             jobject instance,
                                                                             jstring input_) {
           av_register_all();
           AVFormatContext *pFormatCtx = NULL;
           if (avformat_open_input(&amp;pFormatCtx, jStr2str(env, input_), NULL, NULL) &lt; 0) {
               throwException(env, "Could not open input file");
               return 0;
           }


           if (avformat_find_stream_info(pFormatCtx, NULL) &lt; 0) {
               throwException(env, "Failed to retrieve input stream information");
               return 0;
           }

           int64_t duration = pFormatCtx->duration;


           avformat_close_input(&amp;pFormatCtx);
           avformat_free_context(pFormatCtx);
           return (jint) (duration / AV_TIME_BASE);
       }
    </iostream></string>

    when this value returns 0 value either the wrong value.
    also i have read the below docs for more information.

    1)http://dranger.com/ffmpeg/data.html
    2)https://static.packt-cdn.com/downloads/Developing_Multimedia_Applications_with_NDK.pdf
    3)https://github.com/KucherenkoIhor/VideoProcessingLibrary (also see this project)
    4)https://github.com/leandromoreira/ffmpeg-libav-tutorial#video---what-you-see

    i have also add the same problem with below link :
    how to use libavcodec/ffmpeg to find duration of video file