Recherche avancée

Médias (91)

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Is there a way to integrate FFmpeg into own C#-Solution using Visual Studio ?

    17 avril 2023, par stupidbutseeking

    I can't figure out how to use FFmpeg in my own C#-Project.
I downloaded the win64 gpl shared release with the libs from https://github.com/BtbN/FFmpeg-Builds/releases but I can't find a way to integrate it into my existing Visual Studio Solution.

    


    I also tried to compile the libs following this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT for win x64
and also this https://github.com/microsoft/FFmpegInterop
but none worked.

    


    When I reference the dlls (using the Dependency-Manager from VS) it will complain that the references are invalid or not supported.

    


    I also created a new VS Project but the same problem occured. I read in some forum that the target framework has to be netstandard2.0.

    


    I think I missed something but I cant find out what it is.

    


  • Merge commit 'e1a6d63c7eeff2f0ec8173546357bfaa9deecea4'

    4 octobre 2017, par James Almer
    Merge commit 'e1a6d63c7eeff2f0ec8173546357bfaa9deecea4'
    

    * commit 'e1a6d63c7eeff2f0ec8173546357bfaa9deecea4' :
    fate : Rename WMV8_DRM decoder tests to WMV3_DRM

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/microsoft.mak
    • [DH] tests/ref/fate/wmv3-drm-dec
    • [DH] tests/ref/fate/wmv3-drm-nodec
    • [DH] tests/ref/fate/wmv8-drm
    • [DH] tests/ref/fate/wmv8-drm-nodec
  • FFmpeg.AutoGen decoding an image using av_image_copy_to_buffer

    28 juin 2022, par Steve

    I try to use FFmpeg.AutoGen.av_image_copy_to_buffer to get decoded data into my application defined frame_buffer like so :

    &#xA;

    bytes_decoded = ffmpeg.av_image_copy_to_buffer(frame_data, buffer_size, frame->data, frame->linesize, &#xA;                                               codCtx->pix_fmt, codCtx->width, codCtx->height, 1);&#xA;

    &#xA;

    However the type of the parameter frame->data is of type FFmpeg.AutoGen.byte_ptrArray8, but the interface expects FFmpeg.AutoGen.byte_ptrArray4.&#xA;Does anyone know how to convert this parameter, so that I can pass it to the interface ? VS complains with the following error message :&#xA;https://docs.microsoft.com/en-us/dotnet/csharp/misc/cs1503?f1url=%3FappId%3Droslyn%26k%3Dk(CS1503)

    &#xA;

    Thanks in advance for any help on this issue.

    &#xA;