
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (29)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (2062)
-
Record rtsp stream to a file to be played later
16 avril 2021, par Саня Рыбалкоeveryone.

I have a UWP app, which can stream rtsp streams from online ip cameras by means of FFmpegInterop NuGet package. This is how I use the FFmpegInteropMSS object to set mediaElement's source to the rtsp stream :

FFmpegInteropMSS ffmpeg = await FFmpegInterop.FFmpegInteropMSS.CreateFromUriAsync("rtsp://88.84.52.66/axis-media/media.amp");
 MediaStreamSource streamSource = ffmpeg.GetMediaStreamSource();
 mediaElement.SetMediaStreamSource(streamSource);
 mediaElement.Play();



But I have run into a problem - I need to make it possible to record the stream in a local file to be played later. I have found out this is possible while using ffmpeg console, but I would prefer to use some c# tools(not only FFmpegInterop library) to do it.

Thanks for your help in advance.

-
Videos encoded by FFMPEG (mpeg codec) cannot be played on iOS14
28 septembre 2020, par vanste25I have a piece of code that uses ffmpeg with default mpeg codec to merge multiple videos and audio songs.


ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "concat=n=2:v=1:a=1" -f MOV -vn -y output.mp4



Everything worked on iOS13 and after the update to iOS14, videos are black and cannot be played by any player. Sound is there and it's good.
I tried to switch to h264 and it works good, but as you already know, h264 is under GPL and it is expensive and requires code to be open sourced which is not acceptable for me.


What was changed ? Anything in release notes ?
Is that a bug ? Or a feature ?


Thanks


-
h.264 video in mp4 container jumps when played in VLC
30 avril 2013, par Jayanth NayakI have H.264 video and AAC audio generated in Andriod phone recieved wirelessly using SIP protocol and muxed using FFMPEG APIs, The generated mp4 when played through VLC or other player is never in Sync.
when I see the time bar of Video, it skips after a certain duration.For example :
in a video of 20s, the time bar seeks upto 14s properly, then it jumps to 18s and finishes at 20. The audio plays properly.I have following questions :
- Is PTS DTS calculations really required for muxing WITHOUT Encoding ? :
we used
PTS = (90000 * (1/FPS) * FrameNumber) - although this did not work :(
currently FFMPEG is taking care of it internally.
- Why the video jumps ? is it because of less number of frames or wrong PTS values or something else ?
-
For the following cases although There is jump, I am getting a good AV sync
-15,20,25 FPS qCIF & AAC AudioBut for 15 & 20 FPS of qVGA & VGA the audio lags by 0.5 seconds and for 25 FPS, the Video is just playing fast.
thus why is there a delay for qVGA and VGA but not present for qCIF ? any dependency of Resolution on Time Stamp (PTS) calculation ??Analysis of 25 FPS Video showed that there are enough number of frames for 10s but the total time for the video shown by VLC is 14s. Why is this so ? and again, this video also jumps from 9s to 13s.