
Recherche avancée
Autres articles (45)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7781)
-
Added -ms-transform:rotate()
4 juillet 2011m demo/mp3-player-button/css/mp3-player-button.css Added -ms-transform:rotate()
-
UDP streaming from laptop to wowza streaming engine using ffmpeg
9 février 2018, par ST94I am working on Streaming a local file or a live stream from a webcam on my laptop to the Wowza Streaming Engine using UDP. My laptop and the system with Wowza server are able to ping each other. The ffmpeg command and the output it gives is
ffmpeg -re -i bunny_1080p_60fps_normal.mp4 -strict experimental -f mpegts udp ://192.168.1.22:10000 ?pkt_size=1316
It shows that the video’s streaming, but on the wowza’s test players I am not able to view the stream. I followed these links to stream the video
https://www.wowza.com/docs/how-to-use-ffmpeg-with-wowza-media-server-mpeg-tshttps://www.wowza.com/docs/how-to-publish-and-play-a-live-stream-mpeg-ts-based-encoder
Please guide me what I am doing wrong here. Thank You
-
How to reencode a h264 wiiU to a standar format video
25 juin 2016, par didix16I’m trying to make a bridge between wiiU and web interface to view the video h264 signal. I’m not familiar with video programming but I’m searching some info about it. Following this documentation :
- http://libdrc.org/docs/re/sc-vstrm.html
- http://libdrc.org/docs/installation.html#patched-dependencies
It says that wiiU works with a H.264 variation. So since there is someone who made a h264decoder of wiiU in python (https: //github.com/justjake/drc-sim-keyboard/blob/master/H264Decoder.py) I’ll want to decode that kind of h264 and transform it to some kind of standard video for stream and get it over tag on a html5 web page. It is possibly do it with ffmpeg libraries ?
If it, can someone tell me how ? I’m programming the bridge in C++.
Oh yes, at the moment I’m capturing the data from udp socket, so I just need transform the incoming data detailed in sc-vstrm.html documentation into some web stream video standard.
Thank you so much guys :).