Skip to content

Commit

Permalink
Updated POM and Readme, version increase
Browse files Browse the repository at this point in the history
  • Loading branch information
yermak committed Jan 4, 2018
1 parent a05302d commit 9b1cbae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,37 @@ Audio Book Converter V2
* Convert mp3 to ipod format.
* Convert mp3 to IBook (IPhone) format.

-------------
Main features:
--------------
* Parallel encoding: more cores - faster results
* Smart artwork support: combined from MP3 artwork and cover files from MP3 directory
* Unicode tags support: keep tags in own language
* Chapters support: jump to right chpater quickly
* Simple UI (inherited from original version)
--------------
This project is based on freeipodsoftware release of AudioBookConverter.

---------------------

Original look and feel is preserved, all internals were completely rewritten to use benefits of modern hardware: 64bits, multi-core processors.
All libraries and dependencies are refreshed to the latests version available at this moment.
Project is currently in alpha as there could besome minor ui bugs, however major functions work as expected.
Project is currently in beta as there could be some minor ui bugs, however major functions work as expected.

--------------
Major differences vs original version:
--------------
* Performance improved form 5 to 15x times (depending on numbers of cores), old version of Faac replaced with fresh FFMpeg.
* Added super-fast experimental mode of parallel encoding of MP3 files.
* Added Artwork support, smart combination of MP3 images and all images in MP3 folders.
* Added Chapters support, based on MP3 files.
* Improved (both speed and quality) of mp3 decoding due to switch to ffmpeg.
* Improved tag support according to MP4 specification.
* Improved tags support according to MP4 specification.
* Fixed tags encoding issues due caused by legacy MP3 problems.
* Fixed tags encoding issues with non-latin characters.
* Keeping the same bitrate as original files to preserve quality.
* Faac replaced with FFMpeg
* Added MP4V2 to support media for m4b (due to existing issue in ffmpeg https://trac.ffmpeg.org/ticket/2798)



Expand Down
17 changes: 1 addition & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>uk.yermak</groupId>
<artifactId>audiobookconverter</artifactId>
<version>2.0-alpha-3</version>
<version>2.0-beta-1</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -39,27 +39,12 @@
<version>2.4</version>
<scope>compile</scope>
</dependency>
<!--
<dependency>
<groupId>javazoom</groupId>
<artifactId>jlayer</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
<scope>compile</scope>
</dependency>
<!--
<dependency>
<groupId>net.sf.javamusictag</groupId>
<artifactId>jid3lib</artifactId>
<version>0.5.4</version>
</dependency>
-->
<dependency>
<groupId>net.bramp.ffmpeg</groupId>
<artifactId>ffmpeg</artifactId>
Expand Down

0 comments on commit 9b1cbae

Please sign in to comment.