subtitle
여러 자막/캡션 파일 형식을 쉽게 다룰 수 있도록 도와주는 라이브러리로, 매우 효율적인 코드로 작성되었으며, 90%까지 사용자 정의가 가능하고, null 안전성을 지원합니다.
자막 디코더 패키지로 번역 데이터를 원활하게 처리할 수 있습니다.
>=1.9.0 <2.0.0>=2.2.2 <2.3.0>=1.16.0 <2.0.0^4.0.0^1.25.8아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A library that makes it easy to work with multiple subtitle/caption file formats, written with highly efficient code, highly customizable (90%), supports Sound Null Safety.
Created by Muhammad Hasan Alasady under a MIT LICENSE.
You have a lot of way to use this package, with internet, local file, assets file(In flutter), and from string. In this section you will learn how to use each of this:
You have two ways to use subtitles on the internet, firstly using SubtitleController and it's the
easly way, secondly by using SubtitleProvider and SubtitleParser, this is both of ways:
SubtitleController:Firstly provide the link of subtitle (should be an object of Uri),
after that you can use SubtitleProvider.fromNetwork(url) or NetworkSubtitle(url):
var url = Uri.parse(
'https://brenopolanski.github.io/html5-video-webvtt-example/MIB2-subtitles-pt-BR.vtt');
var controller = SubtitleController(
provider: SubtitleProvider.fromNetwork(url),
);
Or
var url = Uri.parse(
'https://brenopolanski.github.io/html5-video-webvtt-example/MIB2-subtitles-pt-BR.vtt');
var controller = SubtitleController(
provider: NetworkSubtitle(url),
);
SubtitleProvider and SubtitleParser:Like the last one, provide the link and provider, after that create a new object of SubtitleObject and await it to preparing
the subtitle data, in the last you can use SubtitleParser to parsing the subtitles:
var url = Uri.parse(
'https://brenopolanski.github.io/html5-video-webvtt-example/MIB2-subtitles-pt-BR.vtt');
SubtitleProvider provider = NetworkSubtitle(url);
SubtitleObject object = await provider.getSubtitle();
SubtitleParser parser = SubtitleParser(object);
After creating the controller you have to initialize it by call controller.initial(), it's async function, so you have to await it.
await controller.initial();
When you intialize it, you can use this methods to dealing with subtitles:
optional>): Return all subtitles as a single string with custom separator (default is ', ').Check the API Reference or GitHub Wiki for more
Like the last one, you have same two ways, just prepare your file, and replace the SubtitleProvider in all places to be SubtitleProvider.fromFile(file) or FileSubtitle(file)
SubtitleController:var file = File('example/data.vtt');
var controller = SubtitleController(
provider: SubtitleProvider.fromNetwork(file),
);
Or
var file = File('example/data.vtt');
var controller = SubtitleController(
provider: FileSubtitle(file),
);
SubtitleProvider and SubtitleParser:var file = File('example/data.vtt');
SubtitleProvider provider = FileSubtitle(file);
SubtitleObject object = await provider.getSubtitle();
SubtitleParser parser = SubtitleParser(object);
Same others just replace providers to be instance of StringSubtitle or SubtitleProvider.fromString().
In flutter asset case you have to create you class (called it like AssetSubtitle), by extends SubtitleProvider, and use rootBundle to load the string of asset file, after created it, do like first example, just replace providers to be instance of your new class, like:
class AssetSubtitle extends SubtitleProvider {
/// The subtitle path in your assets.
final String path;
final SubtitleType? type;
const AssetSubtitle(
this.path, {
this.type,
});
@override
Future<SubtitleObject> getSubtitle() async {
// Preparing subtitle file data by reading the file.
final data = await rootBundle.loadString(path);
// Find the current format type of subtitle.
final ext = extension(path);
final type = this.type ?? getSubtitleType(ext);
return SubtitleObject(data: data, type: type);
}
}
When you need to use it:
var path = 'files/subtitles/1.vtt';
var controller = SubtitleController(
provider: AssetSubtitle(path),
);
import 'package:subtitle/subtitle.dart';
const vttData = '''WEBVTT FILE
5
00:00:19.000 --> 00:00:24.000
Which is why we are bringing TV, internet and phone together in <c.highlight>one</c> super package
3
00:00:11.000 --> 00:00:14.000 A:end
Phone conversations where people truly <c.highlight>connect</c>
1
00:00:03.500 --> 00:00:05.000 D:vertical A:start
Everyone wants the most from life
2
00:00:06.000 --> 00:00:09.000 A:start
Like internet experiences that are rich <b>and</b> entertaining
4
00:00:14.500 --> 00:00:18.000
Your favourite TV programmes ready to watch at the touch of a button
6
00:00:24.500 --> 00:00:26.000
<c.highlight>One</c> simple way to get everything
7
00:00:26.500 --> 00:00:27.500 L:12%
UPC
8
00:00:28.000 --> 00:00:30.000 L:75%
Simply for <u>everyone</u>''';
void main(List<String> args) async {
//! By using controller
var controller = SubtitleController(
provider: SubtitleProvider.fromString(
data: vttData,
type: SubtitleType.vtt,
));
await controller.initial();
printResult(controller.subtitles);
//! By using objects
var object = SubtitleObject(
data: vttData,
type: SubtitleType.vtt,
);
var parser = SubtitleParser(object);
printResult(parser.parsing());
}
void printResult(List<Subtitle> subtitles) {
subtitles.sort((s1, s2) => s1.compareTo(s2));
for (var result in subtitles) {
print(
'(${result.index}) Start: ${result.start}, end: ${result.end} [${result.data}]');
}
}