in reply to Re^12: awanti Perl not playing video with vlc plugin
in thread Perl not playing video with vlc plugin

Is that a problem??
  • Comment on Re^13: awanti Perl not playing video with vlc plugin

Replies are listed 'Best First'.
Re^14: awanti Perl not playing video with vlc plugin
by awanti (Acolyte) on Dec 30, 2015 at 09:22 UTC
    Can you please do more little favor?? Can you explain this code? I am not getting what this code block is doing?
    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; } }
      Do you have any guesses?
        I guess it is checking the HTTPRANGE...