Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (77)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5141)

  • 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;