我正在實施http實時流媒體服務器以將音頻文件發送到iOS設備。 蘋果的工具,mediafilesegmenter沒有問題,我的文件是有效的,它工作正常。ffmpeg僅細分我的音頻文件的第一部分
我現在試圖使用ffmpeg來分割相同的文件。我已經下載了最新的穩定版本,現在是0.10.2。
這裏是我嘗試段我的MP3文件:
./ffmpeg -re -i input.mp3 -f segment -segment_time 10 -segment_list outputList.m3u8 -acodec libmp3lame -map 0 output%03d.mp3
它開始像預期的映射,但只有一個.MP3文件完成。
我在這個過程中錯過了什麼嗎? 在此先感謝。
編輯
確定這裏是我最新的命令行:
ffmpeg -i input.mp3 -c:a libmp3lame -b:a 128k -map 0:0 -f segment -segment_time 10 -segment_list outputlist.m3u8 -segment_format mp3 'output%03d.mp3'
它仍然給我只有一個文件,但該文件是孔歌曲,不僅一部分。 這裏是ffmpeg的輸出:
ffmpeg version 0.10.2 Copyright (c) 2000-2012 the FFmpeg developers
built on Apr 20 2012 07:08:29 with gcc 4.5.2
configuration: --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libmp3lame
libavutil 51. 35.100/51. 35.100
libavcodec 53. 61.100/53. 61.100
libavformat 53. 32.100/
53. 32.100
libavdevice 53. 4.100/53. 4.100
libavfilter 2. 61.100/2. 61.100
libswscale 2. 1.100/2. 1.100
libswresample 0. 6.100/0. 6.100
libpostproc 52. 0.100/52. 0.100
[mp3 @ 0x8e4f120] max_analyze_duration 5000000 reached at 5015510
Input #0, mp3, from 'BeachHouse-Myth.mp3':
Metadata:
title : Myth
artist : Beach House
track :/
album : Bloom
disc :/
genre : Alternative
TSRC : USSUB1296501
Duration: 00:04:18.69, start: 0.000000, bitrate: 320 kb/s
Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16, 320 kb/s Output #0, segment, to 'stream%03d.mp3': Metadata:
title : Myth
artist : Beach House
track :/
album : Bloom
disc :/
genre : Alternative
TSRC : USSUB1296501
encoder : Lavf53.32.100
Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16, 128 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (mp3 -> libmp3lame)
Press [q] to stop, [?] for help
Truncating packet of size 1024 to 105ate= 0.0kbits/s
Truncating packet of size 1024 to 1
size= 0kB time=00:04:18.71 bitrate= 0.0kbits/s video:0kB audio:4042kB global headers:0kB muxing overhead -100.000000%
我不確定,但我認爲可能需要-segment_format開關。 – vipw 2012-04-25 09:16:59
感謝您的幫助,今晚我會回到家中,並保持聯繫。 – hammat 2012-04-27 06:06:55
@vipw不幸的是它沒有改變任何東西。我在我的問題中添加了ffmpeg的輸出。 – hammat 2012-04-29 13:00:56