Выполнить mp4box cmd через Java получил ошибку
Извините, когда я помечаю ffmpeg, потому что я не могу пометить MP4Box. Но у меня есть proplem с excuted с ffmpeg через javacode. Я прочитал в Как выполнить команды cmd через Java, но я не могу найти свое решение.
Я тестировал команды в cmd, все было в порядке:
MP4Box -dash 10000 -dash-profile live -сегмент-имя выходной- seg -rap -bs-switch no input.mp4
но когда я выполнил cmd через код Java, я получаю ошибку:
Ошибка - в качестве аргумента найден только один входной файл, проверьте использование
Ниже мой код, что-то не так?
package com.uit.reformatvideo;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.logging.Logger;
public class ExecuteComandToFormatVideo {
public final static String LINK_MP4BOX = "C:/MP4Box/Tools/MP4Box.exe";
public final static String CREATE_MPD_ECLIPSE = "mp4box -dash 10000 -frag 1000 -rap -bs-switching no";
public final static String CREATE_MPD_IE = "MP4Box -dash 10000 -dash-profile live -segment-name output-seg -rap -bs-switching no";
private static final Logger log = Logger.getLogger(ExecuteComandToFormatVideo.class.getName());
public static void main(String[] args) throws IOException, InterruptedException {
String s = null;
try {
// run the Unix "ps -ef" command
// using the Runtime exec method:
String lsCmd[] = new String [2];
lsCmd[0] = LINK_MP4BOX;
lsCmd[1] = "MP4Box -dash 10000 -dash-profile live -segment-name output-seg -rap -bs-switching no input.mp4";
Process p = Runtime.getRuntime().exec(lsCmd);
p.waitFor();
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):\n");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
System.exit(0);
}
catch (IOException e) {
System.out.println("exception happened - here's what I know: ");
e.printStackTrace();
System.exit(-1);
}
}
}
Здесь был поставлен:
Вот стандартный вывод команды:
Вот стандартная ошибка команды (если есть): Ошибка - в качестве аргумента найден только один входной файл, проверьте использование
1 ответ
Извините, потому что мой английский плохой. Я создал файл bat, который включал команду, такую как CMD, затем я использовал Runtime.getRuntime().exec(url+name+".bat");
выполнить файл bat. Это моё решение. Мой файл летучей мыши:
cd C:/MP4Box/Tools/
MP4Box
MP4Box -dash 10000 -dash-profile live -segment-name output-seg -rap -bs-switching no "C:\Users\ducth\Desktop\New folder (2)\SharingVideo\src\main\webapp\resources\video\output.mp4"