Q
串聯
2
A
回答
4
這應該工作,我只增加了兩個意見,這短短的劇本,因爲我想這是非常不言自明。
import shutil
# Parse playlist for filenames with ending .ts and put them into the list ts_filenames
with open('playlist.m3u8', 'r') as playlist:
ts_filenames = [line.rstrip() for line in playlist
if line.rstrip().endswith('.ts')]
# open one ts_file from the list after another and append them to merged.ts
with open('merged.ts', 'wb') as merged:
for ts_file in ts_filenames:
with open(ts_file, 'rb') as mergefile:
shutil.copyfileobj(mergefile, merged)
相關問題
- 1. 串聯塊,串聯,塊
- 2. 串聯子串?
- 3. 串聯串
- 4. 串聯
- 5. VARCHAR(MAX)串聯串
- 6. 串聯內聯程序集
- 7. 串聯JSTL
- 8. 串聯元組
- 9. 串聯在SQL
- 10. 從串聯
- 11. 串聯列
- 12. 串聯Clojure中
- 13. 串聯值
- 14. 通過串聯
- 15. 串聯在JavaScript
- 16. JOOQ串聯
- 17. 串聯在C++
- 18. 串聯值
- 19. 串聯載體
- 20. 可變串聯
- 21. 串聯問題
- 22. 串聯序列
- 23. 串聯在SQL
- 24. 串聯SystemVerilog中
- 25. 串聯可變
- 26. 高效串聯
- 27. 字符串聯
- 28. 串聯XML
- 29. 串聯2場
- 30. 串聯列
你想要連接什麼? .ts文件是mpeg-2流,而.m3u8是文本文件? – barrios
我想連接.ts文件這是視頻文件 – torment32
任何幫助,將不勝感激 – torment32