
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 (109)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (12376)
-
How do I blur a segment in a video using ffmpeg ?
11 septembre 2013, par PeppyHeppyI am looking through the docs for ffmpeg and am having a hard time finding my way around.
Is there a way to add blurring to a video for a specific range in the video.
Example : a 1 minute video. I want to blur seconds 30-35.
Is this possible and if so what does the command look like ?
-
How to record live video stream and seek by time stamp with ffmpeg ?
14 août 2014, par Kart R.I’m trying to set up streaming server with archive playback functionality in it.
Is it possible to record live streams with current timestamps (as metadata) and then seek stream by passing time stamp as start position ?
According to ffserver docs (https://www.ffmpeg.org/ffserver.html) it should be easy configurable but there in no enough information in given docs. ("ffserver is a streaming server for both audio and video. It supports several live feeds, streaming from files and time shifting on live feeds. You can seek to positions in the past on each live feed, provided you specify a big enough feed storage.")
The next question would be as fallows : is there any web server module that provides similar functionality as ffserver ? I know nginx-rtmp module but it lacks with many feature that ffserver provides.
How can I achieve that request below gives stream starting at given time stamp :
http://localhost:8080/test.mpeg?date=2014-07-26T23:05:00
or
http://localhost:8080/test.mpeg?ts=1408039332
Any input would be appreciated since I have been stuck on this on for a while now.
-
How to install MPD filter "ffmpeg" into MPD running on RaspberryPi [closed]
13 mai, par Weston MitchellI’m using Moode audio player OS on a Raspberry Pi 5 to play audio through two USB devices : headphones (card 3 : Device_1) for the full spectrum and a subwoofer (card 0 : Device) for low frequencies (20–100Hz) in a meditation lounge setup. The audio source is a NAS on a Mac. My goal is simultaneous playback : headphones in stereo, subwoofer in mono with low-pass filtering. I have configured the mpd.conf file to setup audio ouputs for both devices. Now I need to apply a lowpass filter to the subwoofer device. I tried using MDP's "ffmpeg" as a lowpass filter, but the logs say :




Failed to initialize filter chain for "Subwoofer" : No such filter plugin : ffmpeg




So I checked MPD's list of filters using
mpd --version
and it shows only one filter :



Decoder plugins :

[mpg123] mp3

[mad] mp3 mp2

[vorbis] ogg oga

[oggflac] ogg oga

[flac] flac

[opus] opus ogg oga

[dsdiff] dff

[dsf] dsf

[faad] aac

[wavpack] wv

[adplug] amd d00 hsc laa rad raw sa2

[ffmpeg] 264 265 ...

Filters :

soxr

Tag plugins :

id3tag

...




So it's listed as a Decoder, but not a as a filter. MPD docs says it can be used as a filter : MPD Docs - Filters


So how do I add the ffmpeg to the list of filters ?