
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (67)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Amélioration de la version de base
13 septembre 2013Jolie 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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe 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" ;
Sur d’autres sites (5320)
-
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






-
How to convert a seems like NV21 rtsp stream to normal YUV420 rtmp stream ?
22 décembre 2018, par N.MonsterI tried to push a live stream from H264 Encode Box(Based on Hi3516)
to Bilibili using ffmpeg command line tool, but got a totally green picture.(It is all right when I push it to my local rtmp server.)After searching, i got that the problem may lies in the U and V in YUV420, or NV12 and NV21.The remote server identifies error.
I previously use
-vcodec copy
After change to
-vcodec h264
Everything go well. But cost CPU to much. Emm Re-encoder ? I don’t need this.So how can I convert only pixel format locally before push steam , or just tell the server my pixel format as to get a color correct picture ?
-
nginx video mp4 streaming - jwplayer seeking
18 juin 2012, par abrahabAs you can see nginx streaming solution works and return different content-length when
flv
requested withstart
parameter :
http://www.hotgirlscompany.com/1.flv?start=0
http://www.hotgirlscompany.com/1.flv?start=300000But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request
?start=0
and then ignore any mouse clicks at loading line, and can not go to position I want).Of course, I added
provider=http
toflashVars
.
You can download the video and see that its converted as H.264/AAC. Then makedmp4box -inter 500 1.flv
. But still can not steam it :(Any suggestions ?
Maybe example how to property reconvert this video with ffmpeg to make it playable ?