Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (10050)

  • 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