Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (104)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11837)

  • riff : don’t overwrite bps from WAVEFORMATEX if EXTENSIBLE doesn’t contain that data.

    2 mai 2012, par Hendrik Leppkes
    riff : don’t overwrite bps from WAVEFORMATEX if EXTENSIBLE doesn’t contain that data.
    

    According to the specification on the MSDN [1], 0 is valid for that
    particular field, and it should be ignored in that case.

    [1] : http://msdn.microsoft.com/en-us/library/windows/desktop/dd757714(v=vs.85).aspx

    Bug-Id : 950

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/riffdec.c
  • How to create a video in .net6 [closed]

    22 mai 2023, par mans

    I am trying to create a video from a series of images i .net core (6.0)

    &#xA;

    I am looking for a solution like this :

    &#xA;

    VideoCreator video=new VideoCreator("MyVideo.mp4");&#xA;&#xA;for (int i=0;i&lt;1000;i&#x2B;&#x2B;)&#xA;{&#xA;     var image=getImage();&#xA;     video.addFrame(image);&#xA;}&#xA;video.close();&#xA;

    &#xA;

    I already tried these solutions, and I could not make them work or compile :

    &#xA;

    OpenCVSharp

    &#xA;

    This is compiling properly in .net 6 but is sot reliable when writing videos. I could get a blank video, especially if the getImage function took a long time to return an image (for example, 20 sec) and the above code is run in a thread. All in one : the system did not produce video reliably.

    &#xA;

    AForge.net

    &#xA;

    This library and its related library (Accord.NET) don't work on.net core. My attempt to use them did not produce any compilable software (for example AForge.video.ffmpeg or AForge.Video.VFW) are not available in .net core).

    &#xA;

    So my questions :

    &#xA;

      &#xA;
    1. What is the best way to create a video in .net core reliably ?
    2. &#xA;

    3. I am using .net core as I am using Microsoft ML engine, is the ML engine available for framework ?
    4. &#xA;

    5. My target platform is Windows, is there any way that I can combine .net and framework applications/libraries ?
    6. &#xA;

    &#xA;

  • How can I make a Transcoded Video Filestream using C# and .NET Core

    25 avril 2021, par Drew Chase

    Overview

    &#xA;

    I'm currently working on a media streaming server using ASP.net Core REST Server. I'm currently using .net 5.0 and ASP.net Core MVC

    &#xA;

    What I need

    &#xA;

    I need to be able to dynamically down-res the original video file. from 1080p to 720p for example.&#xA;Also I need to be able to make the media file able to be transcoded to a different encoding based on client capabilities.

    &#xA;

    What I've Tried

    &#xA;

    I've been looking for a library that can manage this feat, but I can't seem to find one. I thought FFMpeg would be able to do this. I know this is possible because applications like plex and emby seem to manage this.

    &#xA;

    What I've Done

    &#xA;

    [HttpGet("/api/streaming/video")]&#xA;public IActionResult GetFile()&#xA;{&#xA;    string path = "C:\Path\To\Video\FILE.mp4";&#xA;    System.IO.FileStream stream = new(path, System.IO.FileMode.Open, System.IO.FileAccess.Read);&#xA;    Microsoft.AspNetCore.Mvc.FileStreamResult file = File(stream, "video/mp4", true);&#xA;    return file;&#xA;}&#xA;

    &#xA;

    Framework Tried

    &#xA;

      &#xA;
    • Xabe.FFmpeg
    • &#xA;

    • FFMpegSharp
    • &#xA;

    &#xA;