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

i tried to send the data but it is throwing the error.. and in error log it is writing

What did you try?

Disable buffering ?

use IO::Handle; STDOUT->autoflush;
  • Comment on Re^17: Perl not playing video with vlc plugin

Replies are listed 'Best First'.
Re^18: Perl not playing video with vlc plugin
by awanti (Acolyte) on Dec 29, 2015 at 18:46 UTC
    vlc player is crashing.. here is my file reading part
    my $cur=$begin; seek($fh,$begin,0); while(!eof($fh) && $cur < $end) { my $buf=1024*16; read $fh, $buf, $end-$cur; $cur+=1024*16; print $buf; } close $fh; autoflush STDOUT 1;
        yeah html static page is working..i can play video there