Podcasts downloads every episode, and TV keeps what you watched
Two Apple apps download in the background by default. Where the files are, the settings that cap them, and how much a year of each is worth.
Both of these apps download content in the background by default, and both keep it after you have finished with it. Neither is enormous on its own, and together on a Mac that has had them for years they are worth a look.
Where the files are
du -sh ~/Library/Group\ Containers/*podcasts* \
~/Library/Containers/com.apple.podcasts \
~/Library/Containers/com.apple.TV 2>/dev/null | sort -hBoth keep their media inside containers rather than in your Music or Movies folders, which is why nothing you do in Finder ever reveals them and why they land in System Data on the storage screen.
Podcasts, and the setting that matters
By default the app downloads new episodes of shows you follow and keeps played episodes for a period. An hour of audio is modest, a daily show over a year is not, and video podcasts are in a different league again.
In the app's settings there are two controls worth setting once: how many episodes to keep, and whether to delete played episodes automatically. Both turn an unbounded folder into a bounded one, which is the same lesson as Telegram's cache limit.
TV, and the films you already watched
Downloaded films and episodes are the largest single files either app produces, at several gigabytes for a film in high quality. The app has its own downloads list, and removing an item there is the correct way to do it, since it keeps the entitlement and simply removes the file.
Rented films delete themselves when the rental expires. Purchased ones stay until you remove them, and they can be downloaded again at no cost, which makes them one of the safer things to delete on a full Mac.
Checking what is worth doing
find ~/Library/Containers/com.apple.TV \
~/Library/Group\ Containers/*podcasts* -type f -size +200M \
-exec ls -lh {} + 2>/dev/null | sort -k5 -h | tail -10If that prints nothing, these apps are not your problem and the space is elsewhere: the order to free 100 GB works through the categories that usually are.
Common questions
Where does the Podcasts app store downloads on a Mac?
Inside its container and group container under ~/Library, not in your Music folder. That is why downloaded episodes never appear in Finder and why they are counted as System Data on the storage screen.
How do I stop Podcasts downloading everything?
In the app's settings, limit how many episodes are kept per show and turn on automatic deletion of played episodes. Both settings cap the folder permanently rather than needing a manual clear.
Can I delete downloaded films from the TV app?
Yes, from the app's downloads list. Purchased content can be downloaded again at no cost, and rentals delete themselves when they expire, which makes downloads one of the safer things to remove on a full Mac.
How much space do podcast downloads use?
An hour of audio is modest, but a daily show followed for a year adds up, and video podcasts are several times larger. Checking for files over 200 MB inside the containers shows whether it is worth acting on.