
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (107)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (4939)
-
android MediaPlayer alternative for rtsp streaming
28 janvier 2014, par tulkas85I need to a multi viewer in my app, each view in a gridlayout must show a video from a camera that streaming over rtsp.
I try using Android VideoView and MediaPlayer, but results does not satisfy me, I have much latency for starting video, and compatibility problems using Lg L9 phone (see my question here )
I search a lot for 3rd party sdk , and I found Vitamio, but it not support multi-views in same activity (there is a bug). Another commercial sdk is Nexstreaming but not works on rtsp protocol.
I not found nothing else. Do you know others ?Using NDK could be another way to do it, so I seen for Gstreamer (tutorial) but it seems too complicated. Another way could be FFMPEG, but I have not found a definitive guide for it.
Any help ?
-
php streaming video : can tmp file be accessed before move_uploaded_file ?
5 août 2019, par JintorMy question is about accessing file while they are being uploaded to the server.
Can I perform "live" video streaming but BEFORE move_uploaded_file ???
because move_uploaded_file have to wait until the video is completely finished.
<?php
// Can I access tmp before move_uploaded_file ?
move_uploaded_file('tmp_name','new_location');Is there a way to access the tmp file during upload and perform ffmpeg ?
I was considering upload by chunk via xhr request... but it seems .mp4 from a mobile don’t necessarily apply a fast start...
how live streaming services companies do it ?
**** More clarifications :
Live streaming. Example User X take his phone and want to go live, he hit a button "stream yourself" than the camera starts recording and while uploading, the server begins to save it to the server and other users like Y, Z, A, B begin to watch while X is still begin live -
dynamically update image in video stream using ffmpeg
1er mars 2021, par omega1I have the following ffmpeg command which works, but I would like image3.jpg to update every 30 seconds (image3.jpg changes every 30 seconds). I read that I needed to move the file from a .tmp file image3.jpg.tmp to image3.jpg but this is not working either.


The script places a few images on screen and takes an audio stream as its input and then outputs to a RMTP server, all works except image3.jpg only updates if I stop the ffmpeg command and restart it (which I cannot do as it is a live stream).


I'm also struggling with where to add a
drawtext
within thefilter_complex
section if anyone could help with that also ?

Thanks.


ffmpeg \
 -stream_loop -1 \
 -re -y \
 -i image1.png \
 -i image2.png \
 -i image3.jpg \
 -i http://audio_stream \
 -filter_complex "[1]scale=1200:280:force_original_aspect_ratio=decrease:-1[wm]; [0][wm]overlay=1:1[bg]; [2]scale=150:635:force_original_aspect_ratio=decrease:-1[wm1]; [bg][wm1]overlay=W-w-1:1" \
 -crf 10 \
 -profile:v baseline \
 -s 1280x720 \
 -bufsize 6000k \
 -vb 400k \
 -maxrate 1500k \
 -deinterlace \
 -vcodec libx264 \
 -preset veryfast \
 -g 300 \
 -r 5 \
 -f flv \
 rtmp://rmtp_server