Skip to content

Commit af2b7f6

Browse files
committed
fix: ffmpeg: convertMovToMp3
1 parent 1bd62f7 commit af2b7f6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

menu/ffmpeg.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export async function convertMp4ToMp3({DOM, CloudCmd}) {
2222
});
2323
}
2424

25-
export async function convertMovToMp3({DOM, CloudCmd}) {
26-
const command = 'for f in *.MOV; do ffmpeg -i "$f" -filter_complex "[0:a]join=inputs=2:channel_layout=stereo" "${f%mp4}mp3"; done';
25+
export async function convertMovToMp4({DOM, CloudCmd}) {
26+
const command = 'for f in *.MOV; do ffmpeg -i "$f" "${f%mp4}mp3"; done';
2727
await convert(command, {
2828
DOM,
2929
CloudCmd,

0 commit comments

Comments
 (0)