我設立建於PHP CMS的,現在我需要添加,用戶可以從FLV轉換視頻MP4格式的一部分。我已經搜索腳本和解決方案,但沒有任何工作。我正準備支付軟件,但「Aviberry」軟件成本$ 5000及「sothinkmedia」不正確地在Linux服務器上運行。如果任何人有什麼可以肯定的工作,我會感謝所有的建議。服務器端的視頻轉換器
1
A
回答
2
1
在Java代碼或者另一種解決方案嘗試的ffmpeg命令使用Xuggler API,將其轉換 視頻文件進行任何擴展。
/* Sample Code For converting Videos in server side */
import java.io.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
public class Quality {
public static void main(String args[]) {
String s = null;
try {
// run the Unix "ps -ef" command
// using the Runtime exec method:
Process p = Runtime.getRuntime().exec("ffmpeg -i /home/praveen/videos/Oracle.mp4
-vcodec libvpx -acodec libvorbis -f webm /home/praveen/videos/Oracle.webm");
//Process p = Runtime.getRuntime().exec("ffmpeg -i /home/praveen/resize
images/Videos/RaymondMadetoMeasure.mp4 -vcodec libvpx -acodec libvorbis -f webm
/home/praveen/resize images/Videos/Raymond.webm");
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. 將圖像轉換爲服務器端的視頻由php
- 2. 如何將JavaScript動畫轉換爲視頻服務器端?
- 3. 將視頻轉換爲兼容HTML5格式(服務器端)
- 4. 服務器端視頻轉換和壓縮
- 5. 服務器端COLLADA轉換器
- 6. 水印Flash視頻(服務器端)
- 7. PHP - 視頻服務器端驗證?
- 8. 使用雲端服務器端S3加密視頻服務器端加密視頻
- 9. 將圖像轉換服務器端CanvasPixelArray
- 10. 服務器端數據轉換
- 11. @在服務器端轉換爲%40
- 12. Google AdWords服務器端轉換跟蹤
- 13. DICOM視頻轉換器
- 14. 如何將視頻分割爲ios中的幀並將幀轉換爲服務器端的視頻
- 15. 流視頻到服務器
- 16. 視頻服務器上
- 17. 使用ffmpeg在C++流媒體服務器中轉換視頻
- 18. 視頻客戶端/服務器和文檔查看器
- 19. 在上傳到服務器之前基於瀏覽器的視頻轉換
- 20. HTML5視頻播放器轉換器
- 21. 如何在服務器端錄製WebRTC視頻/音頻會話?
- 22. Lync服務器無客戶端音頻視頻
- 23. Lync服務器客戶端少音頻視頻
- 24. 視頻從服務器端傳輸到客戶端側
- 25. 服務器端視頻處理或雲端?
- 26. 從服務器到多個客戶端的流媒體視頻視頻元素
- 27. Windows手機上的視頻轉換器
- 28. DateTime轉換 - 服務器
- 29. 可能的服務器端視頻流問題
- 30. 從服務器端腳本的數據創建視頻
[試試這個](http://handbrake.fr/downloads.php)。 – Kaf