Newer
Older
medialib-manager / transcodate.py
  1. import subprocess
  2. import os
  3.  
  4. def transcode_file(transcoding_tasks, socketio, file_path, codec, resolution, crf, preset, cpu_used):
  5. width = resolution
  6. output_file = file_path.replace('.mkv', '_transcoded.mkv')
  7.  
  8. if os.path.exists(output_file): # Проверяем существование файла
  9. os.remove(output_file) # Удаляем файл
  10. print(f"File already exists. {output_file} was deleted.")
  11.  
  12. command = [
  13. "ffmpeg", "-i", file_path,
  14. "-map", "0",
  15. "-c:v", codec,
  16. "-vf", f"scale={width}:-1",
  17. "-c:a", "copy",
  18. "-crf", crf
  19. ]
  20.  
  21. if codec == "libaom-av1":
  22. command.append("-cpu-used")
  23. command.append(cpu_used)
  24. elif codec == "libvpx-vp9":
  25. command.append("-cpu-used")
  26. command.append(cpu_used)
  27. else:
  28. command.append("-preset")
  29. command.append(preset)
  30.  
  31. command.append(output_file);
  32.  
  33. print(" ".join(command))
  34.  
  35. process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)
  36. task = {
  37. "id": "id_" + str(len(transcoding_tasks) + 1),
  38. "file": file_path,
  39. "output": output_file,
  40. "command": command,
  41. "process": process
  42. }
  43.  
  44. transcoding_tasks[task["id"]] = task;
  45.  
  46. for line in process.stdout:
  47. # Parse progress from ffmpeg output and send via WebSocket
  48. if "frame=" in line:
  49. socketio.emit('progress', {
  50. "task": {
  51. "id": task["id"],
  52. "file": task["file"],
  53. "command": task["command"]
  54. },
  55. "message": line.strip()
  56. })
  57. process.wait()
  58.  
  59. # Step 3: Replace the original file with the transcoded file
  60. if process.returncode == 0:
  61. os.replace(output_file, file_path)
  62. socketio.emit('completed', {
  63. "task": {
  64. "id": task["id"],
  65. "file": task["file"],
  66. "command": task["command"]
  67. },
  68. "message": f"File {file_path} transcoded successfully"
  69. })
  70.  
  71. os.rename(output_file, file_path)
  72. del transcoding_tasks[task["id"]]
  73. else:
  74. if(task["id"] in transcoding_tasks):
  75. socketio.emit('error', {
  76. "task": {
  77. "id": task["id"],
  78. "file": task["file"],
  79. "command": task["command"]
  80. },
  81. "message": f"Transcoding failed for {file_path}"
  82. })
  83. del transcoding_tasks[task["id"]]
  84. else:
  85. # canceled
  86. socketio.emit('canceled', {
  87. "task": {
  88. "id": task["id"],
  89. "file": task["file"],
  90. "command": task["command"]
  91. },
  92. "message": f"Transcoding canceled for {file_path}"
  93. })
  94.  
  95. if os.path.exists(output_file):
  96. os.remove(output_file)