Skip to content

Commit

Permalink
Add provisional support for M4B
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-xo committed Jul 21, 2022
1 parent 1dc052b commit 41b0d0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Features:
pick up most of the podcast text straight from the tags in the file (such as
the artist, title and comment tags.)

* supports MP3, MP4, and M4A files
* supports MP3, MP4, M4A and M4B files

* dir2cast will automatically use the ID3 fields from your files for the Author,
Title, etc. ID3v2 is supported, as are the regular tags found in MP4 and M4A
Title, etc. ID3v2 is supported, as are the usual tags found in MP4 / M4A / M4B
files. (Uses getID3, which is bundled with dir2cast.)

* dir2cast will automatically use the cover art embedded in your file as well.
Expand Down Expand Up @@ -81,7 +81,7 @@ Please note: the config file will make more sense if you read all of this `READM
before trying the installation instructions.

dir2cast is quite flexible but the general idea is that you add cover art and
tags to your media files - mp3, mp4 or m4a currently supported - and then the
tags to your media files (mp3, mp4, m4a and m4b currently supported) and then the
podcast that it generates uses the tags from your files.

1. Edit `dir2cast.ini` to your taste.
Expand Down
1 change: 1 addition & 0 deletions dir2cast.php
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,7 @@ public function addItem($filename)
break;

case 'm4a':
case 'm4b':
$this->addRssFileItem(new M4A_RSS_Item($filename));
break;

Expand Down

0 comments on commit 41b0d0b

Please sign in to comment.