
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (81)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9943)
-
How can I make a Transcoded Video Filestream using C# and .NET Core
25 avril 2021, par Drew ChaseOverview


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 dgreenheckWhat 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 :
- recognizer.SetInputToWaveStream()
- recognizer.SetInputToAudioStream()
- 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.
-
C# - Capture RTP Stream and send to speech recognition
16 avril 2013, par dgreenheckWhat 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 :
- recognizer.SetInputToWaveStream()
- recognizer.SetInputToAudioStream()
- 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.