Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (83)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12635)

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

    


    I am looking for a solution like this :

    


    VideoCreator video=new VideoCreator("MyVideo.mp4");

for (int i=0;i<1000;i++)
{
     var image=getImage();
     video.addFrame(image);
}
video.close();


    


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

    


    OpenCVSharp

    


    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.

    


    AForge.net

    


    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).

    


    So my questions :

    


      

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


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


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


    


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

    25 avril 2021, par Drew Chase

    Overview

    


    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

    


    What I need

    


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

    


    What I've Tried

    


    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.

    


    What I've Done

    


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


    


    Framework Tried

    


      

    • Xabe.FFmpeg
    • 


    • FFMpegSharp
    • 


    


  • C# - Capture RTP Stream and send to speech recognition

    2 septembre 2017, par dgreenheck

    What I am trying to accomplish :

    • Capture RTP Stream in C#
    • Forward that stream to the System.Speech.SpeechRecognitionEngine

    I am creating a Linux-based robot which will take microphone input, send it Windows machine which will process the audio using Microsoft Speech Recognition and send the response back to the robot. The robot might be hundreds of miles from the server, so I would like to do this over the Internet.

    What I have done so far :

    • Have the robot generate an RTP stream encoded in MP3 format (other formats available) using FFmpeg (the robot is running on a Raspberry Pi running Arch Linux)
    • Captured stream on the client computer using VLC ActiveX control
    • Found that the SpeechRecognitionEngine has the available methods :
      1. recognizer.SetInputToWaveStream()
      2. recognizer.SetInputToAudioStream()
      3. recognizer.SetInputToDefaultAudioDevice()
    • Looked at using JACK to send the output of the app to line-in, but was completely confused by it.

    What I need help with :

    I’m stuck on how to actually send the stream from VLC to the SpeechRecognitionEngine. VLC doesn’t expose the stream at all. Is there a way I can just capture a stream and pass that stream object to the SpeechRecognitionEngine ? Or is RTP not the solution here ?

    Thanks in advance for your help.