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,17 @@
//
// SherpaOnnxSubtitleApp.swift
// SherpaOnnxSubtitle
//
// Created by knight on 2023/9/23.
//
import SwiftUI
@main
struct SherpaOnnxSubtitleApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}