├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── package.json ├── phpunit.xml ├── src ├── Collection.php ├── Line.php ├── Lines.php ├── TimestampSpan.php └── Transcription.php └── tests ├── TranscriptionTest.php └── stubs ├── basic-example.vtt └── multi-line-example.vtt /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /node_modules 3 | .phpunit* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/src/Line.php -------------------------------------------------------------------------------- /src/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/src/Lines.php -------------------------------------------------------------------------------- /src/TimestampSpan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/src/TimestampSpan.php -------------------------------------------------------------------------------- /src/Transcription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/src/Transcription.php -------------------------------------------------------------------------------- /tests/TranscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/tests/TranscriptionTest.php -------------------------------------------------------------------------------- /tests/stubs/basic-example.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/tests/stubs/basic-example.vtt -------------------------------------------------------------------------------- /tests/stubs/multi-line-example.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/transcriptions/HEAD/tests/stubs/multi-line-example.vtt --------------------------------------------------------------------------------