
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (39)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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 (6235)
-
download mp4 from video player [on hold]
16 mai 2014, par Mandeep SinghI have a link from where I am want to download mp4 video.
The IDM allow me to download mp4 from this link, but when I am trying from webbrowser it opening the video player.
I want to download by using php, any suggestion, if anyone has working code for this I will pay the development fees.
-
How to save movie from behind ? [on hold]
16 mai 2017, par NipsI must convert my mp4 camera movie, to play it from behind. Is this possible in ffmpeg ?
Or maybe html5 can play a movie from behind ?In a film I have closeup on the object, I must play it as move away from the object.
-
python/flask ffmpeg m3u8 download
17 mai 2017, par kittencornballI got ffmpeg working in the command line/app.py just fine with
os.popen("ffmpeg -i LIVESTREAMURL -c copy thevideo.MP4")
the end goal is to have this running on a site so i can just plop the m3u8 live stream in and download the video in a mp4 format
heres what ive tried on my heroku app
from flask import Flask
from flask import send_file
app = Flask(__name__)
import os
import subprocess
import ffmpy
farts = os.popen("ffmpeg -i LIVESTREAMURL -c copy thevideo.ts")
@app.route("/")
def hello():
return "Hello World!"
return farts