0

私は次のことをしています

$output = shell_exec('/usr/local/bin/ffmpeg -i intro.mp3 2>&1'); 
echo "<pre>$output</pre>";

これは出力します

ffmpeg version 0.8.5, Copyright (c) 2000-2011 the FFmpeg developers
  built on Aug 20 2012 09:28:43 with clang 3.1 (tags/Apple/clang-318.0.61)
  configuration: --enable-nonfree --enable-gpl --enable-version3 --enable-postproc --enable-swscale --enable-avfilter --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libfaac --enable-libxvid --enable-libx264 --enable-libvpx --enable-hardcoded-tables --enable-shared --enable-pthreads --disable-indevs --cc=clang
  libavutil    51.  9. 1 / 51.  9. 1
  libavcodec   53.  7. 0 / 53.  7. 0
  libavformat  53.  4. 0 / 53.  4. 0
  libavdevice  53.  1. 1 / 53.  1. 1
  libavfilter   2. 23. 0 /  2. 23. 0
  libswscale    2.  0. 0 /  2.  0. 0
  libpostproc  51.  2. 0 / 51.  2. 0
[mp3 @ 0x7f9481807c00] max_analyze_duration 5000000 reached at 5015510
Input #0, mp3, from 'intro.mp3':
  Metadata:
    album           : Frank 
    artist          : Amy Winehouse
    genre           : R&B
    title           : [Intro] Stronger Than Me
    track           : 01
    date            : 2008
  Duration: 00:03:54.71, start: 0.000000, bitrate: 230 kb/s
    Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 160 kb/s
At least one output file must be specified

データベースのアルバム、アーティスト、ジャンル、タイトルなどに挿入する情報を取得したい

でも全部別々に

私は次のようにしてそれらを得ることができます

$output = shell_exec('/usr/local/bin/ffmpeg -i intro.mp3 2>&1'); 

$edit = explode('  ', $output);
$edit = implode("@", $edit);
$edit = explode(':', $output);
echo "<pre>";
print_r($edit);
echo "</pre>";

その後、実行中

<?php echo $edit[9]; ?>

しかし、これは値を取得するための非常に悪い方法であり、面倒な方法のように思えます。

これを行う最善の方法は何ですか?

4

1 に答える 1

1

ffmpeg を使用してメタデータを取得するより良い方法があります。

1.新しいffmpeg_movieオブジェクトを作成します。

$movie = new ffmpeg_movie(String path_to_media, boolean persistent);

2.次のようにメタデータの取得を開始します。

$movie->getAuthor();
$movie->getGenre();
$movie->getAlbum();

ffmpeg-php API documentationで利用可能なもののリスト。

3.楽しい時間を過ごしましょう。

于 2012-08-29T10:43:59.263 に答える