Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6988633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:06:25+00:00 2026-05-27T19:06:25+00:00

Edit: Translated I have a RSS-feed that i want to parse. It’s a podcast

  • 0

Edit: Translated

I have a RSS-feed that i want to parse. It’s a podcast and I want just the MP3-urls to download them with wget.

This is the podcast: http://feeds.feedburner.com/Film-UndKino-trailerVideopodcast

The title should include an (de) to get just the german episodes.
The publish-date should be today.

Would be great if someone could help me – I came this far:

wget -q -O- view-source:http://feeds.feedburner.com/Film-UndKino-trailerVideopodcast?format=xml| awk 'BEGIN{RS=""}
/(date +'%d %M %Y')/{
gsub(/.*|.*/,"")
print
}

But it doesn’t work.

Thanks in advance,
arneb3rt

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:06:26+00:00Added an answer on May 27, 2026 at 7:06 pm

    You need to drop the “view-source:” from the wget command and execute the date command (with %b to print the abbreviated month instead of %M) outside of the awk command. The following bash script uses grep instead of awk to produce the URLs of where wget can fetch the podcasts.

    Note that, probably due to the holidays, there have been no podcasts since 24 Dec 2011 at the feed, so I hard-coded the date of the last podcast for testing:

    url='http://feeds.feedburner.com/Film-UndKino-trailerVideopodcast?format=xml'
    d=$(date +'%d %b %Y')
    d="24 Dec 2011"
    echo "Checking podcasts for date: ${d}"
    wget -q -O- ${url} |\
     grep -A6 "(de)" |\
     grep -A1 "${d}" |\
     egrep -o 'http[^ ]*de.mp4' |\
     sort | uniq
    

    The output of the above bash script lists two URLs (one feedburner and the other iTunes):

    Checking podcasts for date: 24 Dec 2011
    [video  src="http://feedproxy.google.com/~r/Film-UndKino-trailerVideopodcast/~5/pzeSvkVK-3A/trailer01_de.mp4" /]
    [video  src="http://www.moviemaze-trailer.de/ipod/6841/trailer01_de.mp4" /]
    

    Therefore, you could wget the 24 Dec 2011 podcast from either of the above URLs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

edit alright, I guess C is painful in nature--Just, this part, is particularly painful.
I have a Python set that contains objects with __hash__ and __eq__ methods in
I have a Dictionary object in my ViewModel with key/values that translate words on
I want to make a language selection dropdown in a site user edit/create page.
I am curious on how to create a property that can be translated by
I have a WinForms application in which I want to be able to provide
I've got some code originating from a DSL that needs to be translated for
I have an image that was given to me in ASCII character format (from
I have translated a project in CyanogenMod (the Email app) to Hebrew by adding
I have a PHP application that makes extensive use of Javascript on the client

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.