in reply to Re^13: awanti Perl not playing video with vlc plugin
in thread Perl not playing video with vlc plugin
if( my $httprange = $cgi->http('range') ){ if( $httprange =~ /bytes=(\d+)(?:-(\d*))?/i ){ my $from = $1; my $to = $2; $from and $begin = $from; $to and $end = $to; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^15: awanti Perl not playing video with vlc plugin
by Anonymous Monk on Dec 30, 2015 at 09:43 UTC | |
by awanti (Acolyte) on Dec 30, 2015 at 10:24 UTC | |
by Anonymous Monk on Dec 30, 2015 at 17:17 UTC |