
Recherche avancée
Autres articles (111)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (12919)
-
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 ?


-
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.
-
nw.js node WebKit - unable to play audio file
9 novembre 2018, par AllassoI have started working with nw.js, creating a test app to play audio files from. I am working on OS X 10.11.
The code for the player is :
<audio controls="controls">
<source src="path/to/file/song.mp3" type="audio/mp3">
</source></audio>The player and controls appear, but the file will not play. I have tried using a relative path, and an absolute path, trying both
"/path/to/file/song.mp3"
and
"file :///path/to/file/song.mp3"
schemes.I have verified the path is valid in all cases.
This page :
http://docs.nwjs.io/en/latest/For%20Developers/Enable%20Proprietary%20Codecs/
tells me that mp3 should be supported (for v0.22.1+, though I haven’t found a way to tell the version of my mp3, though is was made recently so I assume is the the latest codec.)
Just to try more stuff, I followed the instructions on these pages :
http://docs.nwjs.io/en/latest/For%20Developers/Enable%20Proprietary%20Codecs/
(It appears mp3 gained support since this doc came out.)https://github.com/nwjs/nw.js/wiki/Using-MP3-%26-MP4-%28H.264%29-using-the—video—%26—audio—tags.
I downloaded the ffmpeg libs from here :
https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases
and placed copies here :
find . -name libffmpeg.dylib
./dist/nw.js-examples/osx64/nw.js-examples.app/Contents/Versions/67.0.3396.87/libffmpeg.dylib
./node_modules/nw/nwjs/nwjs.app/Contents/Versions/54.0.2840.99/nwjs Framework.framework/libffmpeg.dylib
./node_modules/nw-builder/cache/0.31.2-sdk/osx64/nwjs.app/Contents/Versions/67.0.3396.87/libffmpeg.dylib
cp ~/Downloads/libffmpeg.dylib ./dist/nw.js-examples/osx64/nw.js-examples.app/Contents/Versions/67.0.3396.87/libffmpeg.dylib
cp ~/Downloads/libffmpeg.dylib "./node_modules/nw/nwjs/nwjs.app/Contents/Versions/54.0.2840.99/nwjs Framework.framework/libffmpeg.dylib"
cp ~/Downloads/libffmpeg.dylib "./node_modules/nw-builder/cache/0.31.2-sdk/osx64/nwjs.app/Contents/Versions/67.0.3396.87/libffmpeg.dylib"Still to no avail running either
npm run dev
or
npm run prod
and opening the packaged app.
I can play the file fine with the same code from a web browser.
I don’t know what else to try, help would be much appreciated, thanks.