Compare commits

...

3 Commits

Author SHA1 Message Date
ceab08a26d
Typo fixes, readme updates 2024-07-06 13:53:26 -03:00
3971a5b662
pthreads for compatibility 2023-10-20 18:12:26 -03:00
2cce5f52f0
build scenario changes 2023-10-20 17:39:27 -03:00
14 changed files with 157 additions and 62 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## MLC 1.3.4 (UNRELEASED)
- Build fixes
## MLC 1.3.3 (October 13, 2023) ## MLC 1.3.3 (October 13, 2023)
- Regex to specify non-music files to copy - Regex to specify non-music files to copy
- Encoding settings (VBR/CBR, encoding quality, output quality) - Encoding settings (VBR/CBR, encoding quality, output quality)
@ -23,7 +26,7 @@
## MLC 1.1.0 (July 23, 2023) ## MLC 1.1.0 (July 23, 2023)
- New logging system - New logging system
- Artist, Album artist, Album and Title are now utf16 encoded, should fix broten titles - Artist, Album artist, Album and Title are now utf16 encoded, should fix broken titles
- BPM tag is now rounded, as it supposed to be by spec - BPM tag is now rounded, as it supposed to be by spec
- Lyrics is not set now for USLT tag for unsychronized lyrics is not supported in LAME - Lyrics is not set now for USLT tag for unsychronized lyrics is not supported in LAME
- Date bug fix, it was MMDD instead of standard DDMM - Date bug fix, it was MMDD instead of standard DDMM

View File

@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.5) cmake_minimum_required(VERSION 3.5)
project( project(
mlc mlc
VERSION 1.3.3 VERSION 1.3.4
DESCRIPTION "Media Library Compiler: rips your media library to a lossy compilation" DESCRIPTION "Media Library Compiler: converts your media library to a lossy compilation"
LANGUAGES CXX LANGUAGES CXX
) )
cmake_policy(SET CMP0076 NEW) cmake_policy(SET CMP0076 NEW)
@ -25,24 +25,25 @@ message("Compilation options: " ${COMPILE_OPTIONS})
set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(PkgConfig REQUIRED)
find_package(FLAC REQUIRED) find_package(FLAC REQUIRED)
find_package(JPEG REQUIRED) find_package(JPEG REQUIRED)
find_package(LAME REQUIRED)
find_package(TAGLIB REQUIRED)
find_package(Threads REQUIRED)
pkg_check_modules(LAME REQUIRED IMPORTED_TARGET lame) add_executable(${PROJECT_NAME})
pkg_check_modules(TAGLIB REQUIRED IMPORTED_TARGET taglib)
add_executable(mlc)
target_compile_options(${PROJECT_NAME} PRIVATE ${COMPILE_OPTIONS}) target_compile_options(${PROJECT_NAME} PRIVATE ${COMPILE_OPTIONS})
add_subdirectory(src) add_subdirectory(src)
target_link_libraries(mlc target_link_libraries(${PROJECT_NAME}
FLAC::FLAC FLAC::FLAC
PkgConfig::LAME LAME::LAME
JPEG::JPEG JPEG::JPEG
PkgConfig::TAGLIB TAGLIB::TAGLIB
Threads::Threads
) )
install(TARGETS mlc RUNTIME DESTINATION bin) install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION bin)

View File

@ -1,6 +1,8 @@
# MLC - Music Library Compiler # MLC - Music Library Compiler
This is a program for compilation of your loseless music library to lossy formats [![AUR version](https://img.shields.io/aur/version/mlc?style=flat-square)](https://aur.archlinux.org/packages/mlc/)
This is a program to compile your local lossless music library to lossy formats
### Prerequisites ### Prerequisites
@ -11,7 +13,7 @@ This is a program for compilation of your loseless music library to lossy format
### Building ### Building
``` ```sh
$ git clone https://git.macaw.me/blue/mlc $ git clone https://git.macaw.me/blue/mlc
$ cd mlc $ cd mlc
$ mkdir build $ mkdir build
@ -22,12 +24,48 @@ $ cmake --build .
### Usage ### Usage
Just to compile lossless library to lossy you can use this command
assuming you are in the same directory you have just built `MLC`:
``` ```
./mlc path/to/loseless/library path/to/store/lossy/library ./mlc path/to/lossless/library path/to/store/lossy/library
``` ```
For now the program is very primitive, it only works to convert `.flac` files (it trusts the suffix) to `.mp3` VBR best possible quality slowest possible conversion algorithm. There are more ways to use `MLC`, please refer to help for more options:
MLC keeps file structure, copies all the non `.flac` files, tries to adapt some `.flac` (vorbis) tags to id3v1 and id3v2 of destination `.mp3` file. ```sh
$ ./mlc help
# or
$ ./mlc --help
#
# or
$ ./mlc -h
```
For now it's siglethread, no interrupt controll, not even sure converted files are valid, no exotic cases handled, no conversion options can be passed. May be will improve in the futer. `MLC` has a way to configure conversion process, it will generate global for you user config on the first launch.
It will be located in `~/.config/mlc.conf` and `MLC` will notify you when it's generated.
You can also make local configs for each directory you launch mlc from.
To output the default config run the following, assuming you are in the same directory you have just built `MLC`:
```sh
$ ./mlc config
```
To use non default config run the following, assuming you are in the same directory you have just built `MLC`:
```sh
$ ./mlc path/to/lossless/library path/to/store/lossy/library -c path/to/config/file
```
### About
For now the program is very primitive, it only works to convert `.flac` files (it trusts the suffix) to `.mp3`.
I'm planing to add more lossy formats first then, may be, more lossless.
`MLC` keeps file structure, copies all the non `.flac` files, tries to adapt some `.flac` (vorbis) tags to id3v1 and id3v2 of destination `.mp3` file.
You can set up output format and quality and which kind of files should it skip in the config.
By default `MLC` runs on as many threads as your system can provide to speed up conversion process.
You can set up correct amount of threads in the config.

23
cmake/FindFLAC.cmake Normal file
View File

@ -0,0 +1,23 @@
find_path(FLAC_INCLUDE_DIR FLAC/stream_decoder.h)
find_library(FLAC_LIBRARIES FLAC NAMES flac)
if(FLAC_INCLUDE_DIR AND FLAC_LIBRARIES)
set(FLAC_FOUND TRUE)
endif()
if(FLAC_FOUND)
add_library(FLAC::FLAC SHARED IMPORTED)
set_target_properties(FLAC::FLAC PROPERTIES
IMPORTED_LOCATION "${FLAC_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${FLAC_INCLUDE_DIR}/FLAC"
INTERFACE_LINK_LIBRARIES "${FLAC_LIBRARIES}"
)
if (NOT FLAC_FIND_QUIETLY)
message(STATUS "Found FLAC includes: ${FLAC_INCLUDE_DIR}/FLAC")
message(STATUS "Found FLAC library: ${FLAC_LIBRARIES}")
endif ()
else()
if (FLAC_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find FLAC development files")
endif ()
endif()

View File

@ -1,20 +1,26 @@
#copied from here, thank you #copied from here, thank you
#https://github.com/sipwise/sems/blob/master/cmake/FindLame.cmake #https://github.com/sipwise/sems/blob/master/cmake/FindLame.cmake
FIND_PATH(LAME_INCLUDE_DIR lame/lame.h) find_path(LAME_INCLUDE_DIR lame/lame.h)
FIND_LIBRARY(LAME_LIBRARIES NAMES mp3lame) find_library(LAME_LIBRARIES lame NAMES mp3lame)
IF(LAME_INCLUDE_DIR AND LAME_LIBRARIES) if(LAME_INCLUDE_DIR AND LAME_LIBRARIES)
SET(LAME_FOUND TRUE) set(LAME_FOUND TRUE)
ENDIF(LAME_INCLUDE_DIR AND LAME_LIBRARIES) endif(LAME_INCLUDE_DIR AND LAME_LIBRARIES)
IF(LAME_FOUND) if(LAME_FOUND)
IF (NOT Lame_FIND_QUIETLY) add_library(LAME::LAME SHARED IMPORTED)
MESSAGE(STATUS "Found lame includes: ${LAME_INCLUDE_DIR}/lame/lame.h") set_target_properties(LAME::LAME PROPERTIES
MESSAGE(STATUS "Found lame library: ${LAME_LIBRARIES}") IMPORTED_LOCATION "${LAME_LIBRARIES}"
ENDIF (NOT Lame_FIND_QUIETLY) INTERFACE_INCLUDE_DIRECTORIES "${LAME_INCLUDE_DIR}/lame"
ELSE(LAME_FOUND) INTERFACE_LINK_LIBRARIES "${LAME_LIBRARIES}"
IF (Lame_FIND_REQUIRED) )
MESSAGE(FATAL_ERROR "Could NOT find lame development files") if (NOT Lame_FIND_QUIETLY)
ENDIF (Lame_FIND_REQUIRED) message(STATUS "Found lame includes: ${LAME_INCLUDE_DIR}/lame")
ENDIF(LAME_FOUND) message(STATUS "Found lame library: ${LAME_LIBRARIES}")
endif (NOT Lame_FIND_QUIETLY)
else(LAME_FOUND)
if (Lame_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find lame development files")
endif (Lame_FIND_REQUIRED)
endif(LAME_FOUND)

24
cmake/FindTAGLIB.cmake Normal file
View File

@ -0,0 +1,24 @@
find_path(TAGLIB_INCLUDE_DIR taglib/id3v2tag.h)
find_library(TAGLIB_LIBRARIES taglib NAMES TAGLIB tag)
if(TAGLIB_INCLUDE_DIR AND TAGLIB_LIBRARIES)
set(TAGLIB_FOUND TRUE)
endif()
if(TAGLIB_FOUND)
add_library(TAGLIB::TAGLIB SHARED IMPORTED)
set_target_properties(TAGLIB::TAGLIB PROPERTIES
IMPORTED_LOCATION "${TAGLIB_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${TAGLIB_INCLUDE_DIR}/taglib"
INTERFACE_LINK_LIBRARIES "${TAGLIB_LIBRARIES}"
)
if (NOT TAGLIB_FIND_QUIETLY)
message(STATUS "Found TAGLIB includes: ${TAGLIB_INCLUDE_DIR}/taglib")
message(STATUS "Found TAGLIB library: ${TAGLIB_LIBRARIES}")
endif ()
else()
if (TAGLIB_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find TAGLIB development files")
endif ()
endif()

View File

@ -1,6 +1,6 @@
# Maintainer: Yury Gubich <blue@macaw.me> # Maintainer: Yury Gubich <blue@macaw.me>
pkgname=mlc pkgname=mlc
pkgver=1.3.3 pkgver=1.3.4
pkgrel=1 pkgrel=1
pkgdesc="Media Library Compiler: rips your media library to a lossy compilation" pkgdesc="Media Library Compiler: rips your media library to a lossy compilation"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')

View File

@ -5,12 +5,12 @@
# #
# Use # sign for comments # Use # sign for comments
# #
# All printed comented out values are default values # All printed commented out values are default values
# #
# You should have one of this files as ~/.config/mlc.conf, # You should have one of this files as ~/.config/mlc.conf,
# if you have started mlc at least once. # if you have started mlc at least once.
# This is going to be used every time you launch mlc, # This is going to be used every time you launch mlc,
# so, edit it if you wish to change default behaviour. # so, edit it if you wish to change default behavior.
# #
# Alternatively, you can launch `mlc -c customConfig.conf` # Alternatively, you can launch `mlc -c customConfig.conf`
# if you wish to override ~/.config/mlc.conf file # if you wish to override ~/.config/mlc.conf file
@ -20,26 +20,26 @@
#level info #level info
# Output type # Output type
# Allowed values are: [mp3] (more comming soon) # Allowed values are: [mp3] (more coming soon)
#type mp3 #type mp3
# Source collection path # Source collection path
# This is a default path to your music collection source. # This is a default path to your music collection source.
# It's usefull to set it when you always encode the same collection # It's useful to set it when you always encode the same collection
# Leaving this empty (as it is by default) will make you always # Leaving this empty (as it is by default) will make you always
# specify source in the command line # specify source in the command line
#source #source
# Destingation path # Destination path
# This is a default path for your encoding destination # This is a default path for your encoding destination
# It's usefull to set it when you often encode your collection # It's useful to set it when you often encode your collection
# to the same output # to the same output
# Leaving this empty (as it is by default) will make you always # Leaving this empty (as it is by default) will make you always
# specify destination in the command line # specify destination in the command line
#destination #destination
# Parallel tasks # Parallel tasks
# Defines how many threads are going to be started in parralel # Defines how many threads are going to be started in parallel
# Allowed values are [0, 1, 2, 3 ...] etc # Allowed values are [0, 1, 2, 3 ...] etc
# If it's set to 0 - amount of threads is going to be # If it's set to 0 - amount of threads is going to be
# as high as your processor can effectively handle # as high as your processor can effectively handle
@ -62,9 +62,9 @@
# Output quality # Output quality
# Sets up output quality # Sets up output quality
# The higher quality the less information is lonst in compression # The higher quality the less information is lost in compression
# 0 is the highest possible quality for selected mode and type and results in the biggest file # 0 is the highest possible quality for selected mode and type and results in the biggest file
# 9 is the lowest quality but results in the smalest file # 9 is the lowest quality but results in the smallest file
# Allowed values are [0, 1, 2, ... 9] # Allowed values are [0, 1, 2, ... 9]
# For the constant bitrate modes (CBR) the following table is valid # For the constant bitrate modes (CBR) the following table is valid
# Quality | MP3 | # Quality | MP3 |
@ -94,5 +94,5 @@
# Switches on or off variable bitrate # Switches on or off variable bitrate
# VBR files are usually smaller, but not supped to be worse # VBR files are usually smaller, but not supped to be worse
# in terms of quality. VBR files might be a bit more tricky for the player # in terms of quality. VBR files might be a bit more tricky for the player
# Allowedvalues are: [true, false] # Allowed values are: [true, false]
#vbr true #vbr true

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <FLAC/stream_decoder.h> #include <stream_decoder.h>
#include <lame.h> #include <lame.h>
#include <jpeglib.h> #include <jpeglib.h>
#include <id3v2tag.h> #include <id3v2tag.h>

View File

@ -20,23 +20,23 @@ Flags:
- sets action to help, and prints this page - sets action to help, and prints this page
Examples: Examples:
`mlc ~/Music comile/latest` `mlc ~/Music compile/latest`
- reads config file from `~/.config/mlc.conf` - reads config file from `~/.config/mlc.conf`
- if there was not - creates default that changes nothing - if there was not - creates default that changes nothing
- creates directory `conpile` in the CURRENT directory if it was not created before - creates directory `compile` in the CURRENT directory if it was not created before
- create `latest` directory in `compile` dirrectory if it was not created before - create `latest` directory in `compile` directory if it was not created before
- searches for music in `~/Music` directory - searches for music in `~/Music` directory
- converts all music to `comile/latest` directory - converts all music to `compile/latest` directory
- copies all other files found in `~/Music` to `comile/latest` - copies all other files found in `~/Music` to `compile/latest`
- any file name overlap will be overriden - any file name overlap will be overridden
`mlc config > myConfig.conf` `mlc config > myConfig.conf`
- prints default config to standard output - prints default config to standard output
- unix operator `>` redirects output to a file `myConfig.conf` - unix operator `>` redirects output to a file `myConfig.conf`
`mlc rip -c myConfig.conf` `mlc convert -c myConfig.conf`
- reads file `myConfig.conf` from current directory - reads file `myConfig.conf` from current directory
- if `myConfig.conf` has a valid `source` entry - uses it and uses `rip` as destination - if `myConfig.conf` has a valid `source` entry - uses it and uses `rip` as destination
- if `myConfig.conf` has a valid `destination` entry - uses it and uses `rip` as source - if `myConfig.conf` has a valid `destination` entry - uses it and uses `rip` as source
- if both present (don't do this way) - it depends on the order, who comes first - defines behaviour - if both present (don't do this way) - it depends on the order, who comes first - defines behavior
- the rest is the same from the first example apart from default config - the rest is the same from the first example apart from default config

View File

@ -4,7 +4,7 @@
#include <string_view> #include <string_view>
#include <algorithm> #include <algorithm>
constexpr std::array<std::string_view, static_cast<int>(Logger::Severity::_sevetirySize)> levels({ constexpr std::array<std::string_view, static_cast<int>(Logger::Severity::_severitySize)> levels({
"debug", "debug",
"info", "info",
"minor", "minor",
@ -46,8 +46,8 @@ void Logger::fatal(const std::string& comment, bool colored) const {
Logger::Severity Logger::stringToSeverity(const std::string& line) { Logger::Severity Logger::stringToSeverity(const std::string& line) {
unsigned char dist = std::distance(levels.begin(), std::find(levels.begin(), levels.end(), line)); unsigned char dist = std::distance(levels.begin(), std::find(levels.begin(), levels.end(), line));
if (dist < static_cast<unsigned char>(Severity::_sevetirySize)) if (dist < static_cast<unsigned char>(Severity::_severitySize))
return static_cast<Severity>(dist); return static_cast<Severity>(dist);
return Severity::_sevetirySize; return Severity::_severitySize;
} }

View File

@ -13,7 +13,7 @@ public:
warning, warning,
error, error,
fatal, fatal,
_sevetirySize _severitySize
}; };
using Message = std::pair<Severity, std::string>; using Message = std::pair<Severity, std::string>;

View File

@ -4,7 +4,7 @@
#include <string_view> #include <string_view>
#include <iostream> #include <iostream>
constexpr const std::array<std::string_view, static_cast<int>(Logger::Severity::_sevetirySize)> logSettings({ constexpr const std::array<std::string_view, static_cast<int>(Logger::Severity::_severitySize)> logSettings({
/*debug*/ "\e[90m", /*debug*/ "\e[90m",
/*info*/ "\e[32m", /*info*/ "\e[32m",
/*minor*/ "\e[34m", /*minor*/ "\e[34m",
@ -14,7 +14,7 @@ constexpr const std::array<std::string_view, static_cast<int>(Logger::Severity::
/*fatal*/ "\e[91m" /*fatal*/ "\e[91m"
}); });
constexpr const std::array<std::string_view, static_cast<int>(Logger::Severity::_sevetirySize)> logHeaders({ constexpr const std::array<std::string_view, static_cast<int>(Logger::Severity::_severitySize)> logHeaders({
/*debug*/ "DEBUG: ", /*debug*/ "DEBUG: ",
/*info*/ "INFO: ", /*info*/ "INFO: ",
/*minor*/ "MINOR: ", /*minor*/ "MINOR: ",

View File

@ -203,14 +203,14 @@ unsigned char Settings::getOutputQuality() const {
if (outputQuality.has_value()) if (outputQuality.has_value())
return outputQuality.value(); return outputQuality.value();
else else
return minQuality; //actually, it means max possible quality return minQuality; //it means max possible quality, min is for min enum value
} }
unsigned char Settings::getEncodingQuality() const { unsigned char Settings::getEncodingQuality() const {
if (encodingQuality.has_value()) if (encodingQuality.has_value())
return encodingQuality.value(); return encodingQuality.value();
else else
return minQuality; //actually, it means max possible quality return minQuality; //it means max possible quality, min is for min enum value
} }
bool Settings::getVBR() const { bool Settings::getVBR() const {
@ -269,7 +269,7 @@ void Settings::readConfigLine(const std::string& line) {
std::string lv; std::string lv;
if (!logLevel.has_value() && stream >> lv) { if (!logLevel.has_value() && stream >> lv) {
Logger::Severity level = Logger::stringToSeverity(lv); Logger::Severity level = Logger::stringToSeverity(lv);
if (level < Logger::Severity::_sevetirySize) if (level < Logger::Severity::_severitySize)
logLevel = level; logLevel = level;
} }
} break; } break;