1

Drupal 7のaudiorecorderfieldモジュールでaudioconverterモジュールを使用しており、AegirとNginxを実行している自分のvpsでffmpegを使用しています。audioconverterモジュールはwavファイルのmp3への変換を停止しました。これがエラーです。

Warning: passthru() has been disabled for security reasons in _audioconverter_scheduler_ffmpeg_helper() (line 358 of /mysite/drupal-7.16/sites/all/modules/audioconverter/audioconverter.module). 

そして私のログでは;

MESSAGE: executing: /usr/bin/ffmpeg -i /mysite/drupal-7.16/sites/default/files/1354856044.wav /mysite/drupal-7.16/sites/default/files/1354856044.wav.mp3

MESSAGE: Audio conversion failed. FFMPEG reported the following output: 

SEVERITY: error

MESSAGE: converted file is an empty file.

wavファイルがaudiorecorderfieldモジュールによって作成されているのがわかりますが、audioconverterモジュールは変換に失敗しています。

これが私のffmpeg情報です。

ffmpeg version 0.7.13, Copyright (c) 2000-2011 the FFmpeg developers
built on Jun 13 2012 14:01:54 with gcc 4.4.5
configuration: --enable-libdc1394 --prefix=/usr --extra-cflags='-Wall -g ' --cc='ccache cc' --enable-shared --enable-libmp3lame --enable-gpl --enable-libvorbis --enable-pthreads --enable-libfaac --enable-libxvid --enable-postproc --enable-x11grab --enable-libgsm --enable-libtheora --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libx264 --enable-libspeex --enable-nonfree --disable-stripping --enable-avfilter --enable-libdirac --disable-decoder=libdirac --enable-libfreetype --enable-libschroedinger --disable-encoder=libschroedinger --enable-version3 --enable-libopenjpeg --enable-libvpx --enable-librtmp --extra-libs=-lgcrypt --disable-altivec --disable-armv5te --disable-armv6 --disable-vis
libavutil    50. 43. 0 / 50. 43. 0
libavcodec   52.123. 0 / 52.123. 0
libavformat  52.111. 0 / 52.111. 0
libavdevice  52.  5. 0 / 52.  5. 0
libavfilter   1. 80. 0 /  1. 80. 0
libswscale    0. 14. 1 /  0. 14. 1
libpostproc  51.  2. 0 / 51.  2. 0
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

php.iniでSafemodがオフになっているため、audioconverterが機能しない理由がわかりません。

4

1 に答える 1

1

php.iniのdisable_functionsから「passthru」を削除してpassthruを無効にすることで解決しました

わーい!

于 2012-12-10T14:41:18.363 に答える