
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (36)
-
Ajout d’utilisateurs manuellement par un administrateur
12 avril 2011, parL’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
Sur cette page il est possible de :
1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
2. d’ajouter ou modifier/supprimer un utilisateur
Dans le second formulaire présent un administrateur peut ajouter, (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
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 (5817)
-
Stream image sensor data as video in a Non-Live stream
15 juillet 2020, par TheRuediI have image sensor data (in my case in a ROS bag file), that means many single images that I have to stream to a webinterface. The goal is to simply have a video in the browser where I can select the time on the seek bar, that means I don't want a live stream.


Live encoding and streaming with FFmpeg works.


What is the best approach ? The total Content-Length is unkown, since it is on-the-fly encoding, so I don't know how to implement
206 Partial Content
where I send aContent-Range
. Even if this was working, I need to encode valid partial content with FFmpeg.

-
apetag : fix flag value to signal footer presence
10 février 2017, par James Almerapetag : fix flag value to signal footer presence
According to the spec[1], a value of 0 means the footer is present and a value
of 1 means it’s absent, the exact opposite of header presence flag where 1
means present and 0 absent.
The reason for this is compatibility with APEv1 tags, where there’s no header,
footer presence was mandatory for all files, and the flags field was a zeroed
reserved field.[1] http://wiki.hydrogenaud.io/index.php?title=Ape_Tags_Flags
Signed-off-by : James Almer <jamrial@gmail.com>
CC : libav-stable@libav.org
Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
How to use a framework build of Python with Anaconda
18 juin 2019, par AddemI’m unable to get matplotlib animations to display on a Mac computer. I’ve chased down several attempts at installing ffmpeg but they’ve all failed and I’m starting to wonder if that isn’t the wrong way to solve the problem.
I found this page.
Since I’m running Python from the Spyder app in Anaconda, the section for this seems relevant. It says
The default python provided in (Ana)Conda is not a framework build.
However, the Conda developers have made it easy to install a framework
build in both the main environment and in Conda envs. To use this
install python.appconda install python.app
and usepythonw
rather
thanpython
I’m not perfectly clear on what this means, but I opened a terminal, ran
conda install python.app
and it seemed to work—at least there were no error messages. I could navigate to a folder that contained the filepython.app
.I’m not clear on what it means to "use
pythonw
" but I navigated to the animation I’m trying to compile and ran$ pythonw anim.py
and it gave me an I/O error. I’m not sure if I’m supposed to usepythonw
in some other way, or what. If I restart and try to run the code in Spyder I get the same error as before.I know that the code works, because I’ve run it on a Linux machine that has ffmpeg and it worked.
Is there something else I need to do to get a framework build, whatever that means ?