We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd62f7 commit af2b7f6Copy full SHA for af2b7f6
1 file changed
menu/ffmpeg.js
@@ -22,8 +22,8 @@ export async function convertMp4ToMp3({DOM, CloudCmd}) {
22
});
23
}
24
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';
+export async function convertMovToMp4({DOM, CloudCmd}) {
+ const command = 'for f in *.MOV; do ffmpeg -i "$f" "${f%mp4}mp3"; done';
27
await convert(command, {
28
DOM,
29
CloudCmd,
0 commit comments