
Recherche avancée
Autres articles (37)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5317)
-
Capturing and processing a live RTMP stream
8 février 2018, par YantorI’m trying to download a live stream (not a file) coming from a live camera feed available at the following website : http://www.dot.ca.gov/video/.
I used Wireshark for sniffing the TCP packets and was able to extract the RTMP parameters, but wasn’t able to use them with FFMPEG/VLC for downloading / playing the stream on VLC (I guess I didn’t construct the URL correctly).
for example, for the camera feed available here, I got the following parameters :
swfUrl : http://www.dot.ca.gov/research/its/StrobeMediaPlayback.swf
pageUrl : http://www.dot.ca.gov/d4/d4cameras/ct-cam-pop- N17_at_Saratoga_Rd.html
tcUrl : rtmp ://wzmedia.dot.ca.gov:1935/D4
Play : E37_at_Lakeville_Rd.stream.Is there a chance someone is familiar with this and can help with understanding how I can use the above for downloading the stream ?
Thanks a lot ! Yaniv
-
How to encode Live Streaming using NReco.VideoConverter ?
11 janvier 2016, par Siva PrasannaI’m developing an application to encode a live stream using NReco.VideoConverter component. I’m getting a live video stream from one of my IP cameras, and it uses rtsp. The url is "rtsp ://test.vaprtech.com/vid/show.sav ?[PARAMETERS]". Now the code I use is given below.
private void button1_Click(object sender, EventArgs e)
{
String path="rtsp://test.vaprtech.com/vid/show.sav?[PARAMETERS]";
String pathToSave="C:\\Videos\\LiveVideo.mp4";
var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
ConvertLiveMediaTask task=ffMpeg.ConvertLiveMedia(path, Format.mp4, pathToSave, Format.mp4, new ConvertSettings(){VideoCodec="h264"});
task.Start();
}But I’m getting an error saying
"The best overloaded method match for
’...ConvertLiveMedia(string,string,System.IO.Stream,string,ConvertSettings)’
has some invalid arguments". -
How to pass real time video to youtube rtmp server for live streaming ?
31 octobre 2022, par AMRITESH GUPTAI am trying to build a project in which a user can post his screen-shared video to youtube live, but I don't know how to pass on that captured stream to youtube using youtube API. Also, I don't want to use any streaming software for this.
I anyone has any idea how to do it, please share it.


P.S. - I am using Nodejs and FFmpeg for video encoding.