App-SubtitleUtils

 view release on metacpan or  search on metacpan

script/vtt2srt  view on Meta::CPAN

#!perl

use 5.010001;
use strict;
use warnings;
use Log::ger;
use Log::ger::Screen;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-01-13'; # DATE
our $DIST = 'App-SubtitleUtils'; # DIST
our $VERSION = '0.013'; # VERSION

sub _strip {
    my $str = shift;
    $str =~ s/<.+?>//g;
    $str;
}

$/ = "";
my $num = 1;
while (my $para = <>) {
    unless ($para =~ /\A([0-9][^\n]+)(.+)/s) {
        log_trace "Paragraph does not begin with a digit, skipping";
        next;
    }

    my ($first_line, $subseq_lines) = ($1, $2);

    $first_line =~ s/[.]/,/g;

    print $num, "\n", _strip($first_line), _strip($subseq_lines);
    $num++;
}

# ABSTRACT: Convert .vtt to .srt
# PODNAME: vtt2srt

__END__

=pod

=encoding UTF-8

=head1 NAME

vtt2srt - Convert .vtt to .srt

=head1 VERSION

This document describes version 0.013 of vtt2srt (from Perl distribution App-SubtitleUtils), released on 2024-01-13.

=head1 SYNOPSIS

 % vtt2srt < INPUT.vtt > OUTPUT.srt

=head1 cut

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-SubtitleUtils>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-SubtitleUtils>.

=head1 SEE ALSO

B<youtube-dl> downloads subtitles in .vtt format by default, but can be
instructed to download and/or convert subtitles to .srt format (see options:
C<--sub-format vtt>, C<--convert-subtitles srt>).

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 CONTRIBUTING


To contribute, you can send patches by email/via RT, or send pull requests on

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.336 second using v1.00-cache-2.02-grep-82fe00e-cpan-d29e8ade9f55 )