ijeff@lemdro.id to Technology@lemmy.worldEnglish · 1 year agoYouTube's plan backfires, people are installing better ad blockerswww.androidauthority.comexternal-linkmessage-square487fedilinkarrow-up12.07Karrow-down127file-textcross-posted to: technology@lemmy.worldtechnology@lemmit.onlinehackernews@derp.footechnology@beehaw.organdroid@lemdro.id
arrow-up12.05Karrow-down1external-linkYouTube's plan backfires, people are installing better ad blockerswww.androidauthority.comijeff@lemdro.id to Technology@lemmy.worldEnglish · 1 year agomessage-square487fedilinkfile-textcross-posted to: technology@lemmy.worldtechnology@lemmit.onlinehackernews@derp.footechnology@beehaw.organdroid@lemdro.id
minus-squareRosco@sh.itjust.workslinkfedilinkEnglisharrow-up11·edit-21 year agoJust replace CHANNEL_ID with the ID of the channel you want to get the RSS feed from (to my knowledge it’s only limited to the last 15 items) : https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID Or using curl and sed : curl -s youtube_channel_url | sed -n ‘s/.*title=“RSS”\s+href=“([^”]+).*/\1/p’
Just replace CHANNEL_ID with the ID of the channel you want to get the RSS feed from (to my knowledge it’s only limited to the last 15 items) : https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID
Or using curl and sed : curl -s youtube_channel_url | sed -n ‘s/.*title=“RSS”\s+href=“([^”]+).*/\1/p’