Generate SRT from audio (#341)

This commit is contained in:
yujinqiu
2023-09-25 16:36:16 +08:00
committed by GitHub
parent 552a267c23
commit 9091917eab
19 changed files with 984 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
//
// UTType.swift
// YPlayer
//
// Created by knight on 2023/7/7.
//
import UniformTypeIdentifiers
extension UTType {
static var srt: UTType {
UTType(exportedAs: "com.k2.srt")
}
}