1.0.0-alpha • Published 7 years ago

gulp-srt-to-json v1.0.0-alpha

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

gulp-srt-to-json

js-standard-style latest-release GitHub issues license

Convert SRT subtitle files into JSON format using parseSRT.

Installation

npm install gulp-srt-to-json

Usage

const gulp = require('gulp');
const srtToJson = require('gulp-srt-to-json');

gulp.task('default', function () {
  gulp.src('src/subtitles/**/*.srt')
    .pipe(srtToJson())
    .pipe(gulp.dest('dist/subtitles'))
})

Support

If you want to request new features or find any bugs, please open a ticket on the issues page and I'll review it as soon as possible.

Authors and Contributors

Created by Luís Rodrigues (@MrSlide)

License and copyright

Released under the MIT license

Copyright (c) 2016 Luís Rodrigues