diff --git a/lib/WWW/YoutubeViewer.pm b/lib/WWW/YoutubeViewer.pm
index 11dc9d9..710da27 100644
--- a/lib/WWW/YoutubeViewer.pm
+++ b/lib/WWW/YoutubeViewer.pm
@@ -528,10 +528,10 @@ sub get_video_tops {
 sub _get_formats_from_ytdl {
     my ($self, $videoID) = @_;
 
-    ((state $x = $self->proxy_system('youtube-dl', '--version')) == 0)
+    ((state $x = $self->proxy_system('avideo', '--version')) == 0)
       || return;
 
-    my $json = $self->proxy_stdout('youtube-dl', '--all-formats', '--dump-single-json',
+    my $json = $self->proxy_stdout('avideo', '--all-formats', '--dump-single-json',
                                    quotemeta("https://www.youtube.com/watch?v=" . $videoID));
 
     my @array;
@@ -700,7 +700,7 @@ sub get_streaming_urls {
         Data::Dump::pp(\@caption_urls);
     }
 
-    # Try again with youtube-dl
+    # Try again with avideo
     if (!@streaming_urls or $info{status} !~ /ok/i) {
         @streaming_urls = $self->_get_formats_from_ytdl($videoID);
     }
