in reply to Re: Network Outlet
in thread Network Outlet

my $url = <ARGV>;

Why change STDIN to ARGV?    And either way you still have to chomp the value received.

while ($new_videoURL) { chomp; print $new_videoURL ; }

Does $new_videoURL assign a value to $_?    And if not then why are you chomping the $_ variable?    And if the value in $new_videoURL doesn't change inside the loop then why are you using a loop at all?