Sunday 11 June 2017

Download Youtube Audio and Video Playlist contents through linux terminal


**************************FOR AUDIO FILES****************************
$youtube-dl -cit --extract-audio --audio-format mp3 <playlist_url>


**************************FOR VIDEO FILES****************************
$youtube-dl -i -f mp4 <playlist_url>

Done!!!

No comments:

Post a Comment

Extract error records while inserting into db table using JDBCIO apache beam in java

 I was inserting data into postgres db using apache beam pipeline. it works perfectly with JdbcIO write of apache beam library. But, now, i ...