
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (12325)
-
Convert Video to HTML5 formate on live streaming
30 juin 2016, par php-coderthis may be answered before but i am not able to find the correct answer for my problem.
I am developing a site in PHP where user can upload a video in any format (only video format), the format can be any wmv, avi, flv, mp4 etc.
But I only need to play that video using html5 video tag, but HTML5 only support mp4, WebM and Ogg extension. And I don’t want to convert the video to any other format other than original due to some copyright rules.
now I come up to conclude to convert original video to html5 supported on live streaming, so I have gone through everywhere and google it so many time and other ways but I only find the solution for FFMPEG which convert my video to html5 support and save on my server which i don’t want, as that make much burden on my server saving same video in three different formats....
So, I need a help if anyone can suggest me how I can use video with any format to play it on HTML5 video tag.
Thanks in advance.
-
streaming while displaying locally [duplicate]
17 mars 2021, par OlivierI'm trying to stream a V4L2 device over UDP while displaying it locally too


streaming is ok :

ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554


playing is ok too :
ffplay -f v4l2 -i /dev/video0


and after googling and searching around I found few infos here about using tee


I tried and tried again until I found an error free command line
ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554 -f mpegts -| tee >(ffplay -f mpegts -i -)


except it doesn't open a window with video display but full filling terminal with garbage characters
any help / idea / advice will be much appreciated


-
IPCamera on my LAN streaming video using RTSP with ffmpeg in android
16 juillet 2012, par LMDSI have an IPCamera on my LAN streaming video using RTSP. I have been able to capture and display it successfully using MediaPlayer or Videoview, but now I need to do it for more then one streamming.
After doing some research I found out that I have to use ffmpeg to decode/encode video stream. I can compile the ffmpeg libraries using and I know how to use the NDK, (this link was very helpfull http://marakana.com/s/introduction_to_ndk,1153/index.html)
So I would like to achieve is using programming in C/C++ using ffmpeg library to do that.
So let me phrase two simple questions :
How do I receive the stream in a C/C++ program using FFMPEG library (just provide some URL/tutorial, as google was not helpful)
How do I display the received video in ? (same here, some good URL to direct me).