
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (36)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5737)
-
how to uses ffmpeg's xfade transition filter to connect multiple video files to a single file by cshrp ?
8 septembre 2021, par Mark2how to uses FFmpeg's xfade transition filter to connect multiple video files to a single file by cshrp ?


I find a scripts on GitHub :https://github.com/qq2225936589/xfade-ffmpeg-script , but I did not good at shell scripts.
I read the official documents and spliced the two videos. If there are more than one, my idea is to splice two by two, and then splice them into a large one. Is there a better solusion ?


-
ffmpeg not running in python script [closed]
17 février 2023, par faisal2kimport subprocess
import os

# Set the path of the video and subtitle files
video_file = "myvideo.mp4"
subtitle_file = "sample.srt"

# Set the path and name of the output file
output_file = "output.mp4"

# Use FFmpeg to merge the video and subtitle files

subprocess.call(["ffmpeg", "-i" ,video_file, "-vf" ,subtitle_file, output_file], shell=True)



i am trying to add subtitles in mp4 video file using ffmpeg command in code below, code is running without error but code is not generating output file with subtitles.


-
Django FileResponse not working with uwsgi
24 août 2017, par SandeepI have the following code which takes in an arbitrary audio stream and converts it to mp3 on the fly using ffmpeg. The code works fine when run using
python manage.py runserver
but is not working when run using uwsgi server.from django.http import FileResponse
def mp3(request):
audiourl = request.session['audiourl']
title = request.session['title']
process = Popen('ffmpeg -i "{}" -f mp3 -'.format(audiourl), shell=True, stdout=PIPE)
response = FileResponse(process.stdout)
fname = title + '.mp3'
response['Content-Disposition'] = content_disposition(fname)
return responseIt might work with gunicorn but I prefer to use uwsgi if possible. Kindly post your valuable suggestions.