Podcast-Feed-Library
Podcast-Feed-Library copied to clipboard
Java library for parsing your podcast feeds đ
PodEngine 2.4.1 â Podcast Feed Library
Java library for parsing your podcast feeds đ
- Written in Java 7 đ¤
- Thoroughly tested đšī¸
- Parses iTunes-specific tags đĩ
- Handles all RSS attributes đĒ
- MIT Licensed (Use it for all your commercial things!) đ¤
Installation đĻ
Gradle (Groovy)
repositories {
mavenCentral()
}
dependencies {
implementation group: 'com.icosillion.podengine', name: 'podengine', version:'2.4.1'
}
Maven
<dependencies>
<dependency>
<groupId>com.icosillion.podengine</groupId>
<artifactId>podengine</artifactId>
<version>2.4.1</version>
</dependency>
</dependencies>
Getting Started đą
Reading your feed
//Download and parse the Cortex RSS feed
Podcast podcast = new Podcast(new URL("https://www.relay.fm/cortex/feed"));
//Display Feed Details
System.out.printf("đŧ %s has %d episodes!\n", podcast.getTitle(), podcast.getEpisodes().size());
//List all episodes
for (Episode episode : episodes) {
System.out.println("- " + episode.getTitle());
}