
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (86)
-
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (12372)
-
How to add moov atom to mp4 file that is uploaded to flask server
12 avril 2021, par Drew ParmeleeI have a flask web server that lets the user upload a video from an HTML form using the following endpoint :


@app.route('/account', methods=['GET', 'POST'])
def account():

 uploadVideoForm = UploadVideoForm()
 if request.method == 'POST' and uploadVideoForm.validate():

 # add moov atom to uploaded video

 db.put(uploadVideoForm.video.data)
 return redirect(url_for('account'))



I need to prepare this uploaded video for progressive download streaming by adding a moov atom to the beginning of the file. How can this be accomplished ? Could be server-side, or in the users browser with js before they submit the form.


I was able to add a moov atom to a .mp4 using :


ffmpeg -i file.mp4 -c copy -map 0 -movflags +faststart out.mp4



in the command line, but I'm not sure how this can be done on my server.


I really appreciate any help,


-
Looking for a RTSP-server that can listen on a configured port and support subtitle or text streaming
15 août 2021, par GotItI'm looking for a RTSP-server that can listen on a configured port (8554 for example), then if I run FFmpeg with :




ffmpeg -f v4l2 -i /dev/video0 -c:v libx264 -intra -an -f rtsp
-rtsp_transport tcp rtsp ://192.168.1.10:8554/test




Then the RTSP-server will RECORD the video, and to play it, I just need to run it with :




ffplay -i rtsp ://192.168.1.10:8554/test




I need the RTSP-server to support TCP transport and H264 video encoder and any of subtitle or text encoder (mov_text, T.140, etc.) and stream from a live-video.


Live555 only streams from files (VOD).
simple-rtsp-server only support video and audio, no subtitle.
I'd prefer something open-source. Thank you so much.


-
Using FFMPEG to stream continuously vides files to a RTMP server
25 juillet 2012, par InstaketchFFMPEG handle RTMP streaming as input or ouput, and it's working well.
I want to stream some videos (a dynamic playlist managed by a python script) to a RTMP server, and i'm currently doing something quite simple, i stream my videos one by one with FFMPEG to the RTMP server, however this causes a connection break every time a videos end, and the stream is ready to go when the next video begins.
I would like to stream those videos without any connection breaks continuously, then the stream could be correctly viewed.
I use this command to stream my videos one by one to the server
ffmpeg -re -y -i myvideo.mp4 -vcodec libx264 -b:v 600k -r 25 -s 640x360 -filter:v yadif -ab 64k -ac 1 -ar 44100 -f flv "rtmp ://mystreamingserver/app/streamName"
I looked for some workarounds over the internet for many days, i found some people talking about using a named pipe as input in FFMPEG, i've tried it and it didn't work well since FFMPEG is not only closing the RTMP stream when a new video comes but closing itself too.
Is there any way to do this ? (stream a dynamic playlist of videos with ffmpeg to RTMP server without connection breaks)