Add CD quality converter
This commit is contained in:
parent
d149168c31
commit
82b7675733
8
hq2cd-conv/.idea/.gitignore
vendored
Normal file
8
hq2cd-conv/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
7
hq2cd-conv/.idea/discord.xml
Normal file
7
hq2cd-conv/.idea/discord.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="DiscordProjectSettings">
|
||||||
|
<option name="show" value="ASK" />
|
||||||
|
<option name="description" value="" />
|
||||||
|
</component>
|
||||||
|
</project>
|
6
hq2cd-conv/.idea/encodings.xml
Normal file
6
hq2cd-conv/.idea/encodings.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding">
|
||||||
|
<file url="file://$PROJECT_DIR$/filtered_files.txt" charset="windows-1252" />
|
||||||
|
</component>
|
||||||
|
</project>
|
8
hq2cd-conv/.idea/hq2cd-conv.iml
Normal file
8
hq2cd-conv/.idea/hq2cd-conv.iml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<settings>
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</settings>
|
||||||
|
</component>
|
4
hq2cd-conv/.idea/misc.xml
Normal file
4
hq2cd-conv/.idea/misc.xml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager" version="2" project-jdk-name="Poetry (hq2cd-conv)" project-jdk-type="Python SDK" />
|
||||||
|
</project>
|
8
hq2cd-conv/.idea/modules.xml
Normal file
8
hq2cd-conv/.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/hq2cd-conv.iml" filepath="$PROJECT_DIR$/.idea/hq2cd-conv.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
1
hq2cd-conv/albums.txt
Normal file
1
hq2cd-conv/albums.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller
|
9
hq2cd-conv/filtered_files.txt
Normal file
9
hq2cd-conv/filtered_files.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\01 - Wanna Be Startin’ Somethin’.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\02 - Baby Be Mine.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\03 - The Girl Is Mine.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\04 - Thriller.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\05 - Beat It.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\06 - Billie Jean.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\07 - Human Nature.flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\08 - P.Y.T. (Pretty Young Thing).flac
|
||||||
|
C:\Users\Isaac\Documents\Development\hq2cd-conv\Thriller\09 - The Lady in My Life.flac
|
61
hq2cd-conv/gethq.py
Normal file
61
hq2cd-conv/gethq.py
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
|
def _ffprobe(file_path):
|
||||||
|
command = (
|
||||||
|
'ffprobe -v quiet -print_format json -show_streams -select_streams a "'f'{file_path}"'
|
||||||
|
)
|
||||||
|
result = subprocess.run(command, capture_output=True)
|
||||||
|
if result.returncode == 0:
|
||||||
|
return json.loads(result.stdout)
|
||||||
|
raise RuntimeError(
|
||||||
|
f'FFProbe failed for {file_path}, output: {result.stderr}'
|
||||||
|
)
|
||||||
|
|
||||||
|
def scan_dir():
|
||||||
|
flac_files = []
|
||||||
|
for root, dirs, files in os.walk(os.getcwd()):
|
||||||
|
for file in files:
|
||||||
|
if file.endswith(".flac"):
|
||||||
|
flac_files.append(os.path.join(root, file))
|
||||||
|
return flac_files
|
||||||
|
|
||||||
|
def filter_files(flac_files):
|
||||||
|
filtered_files = []
|
||||||
|
counter = 0
|
||||||
|
max_counter = len(flac_files)
|
||||||
|
for file in flac_files:
|
||||||
|
counter += 1
|
||||||
|
print("Progress: " + str(counter) + "/" + str(max_counter))
|
||||||
|
metadata = _ffprobe(file)
|
||||||
|
if int(metadata['streams'][0]['bits_per_raw_sample']) > 16 and int(
|
||||||
|
metadata['streams'][0]['sample_rate']) > 44100:
|
||||||
|
filtered_files.append(file)
|
||||||
|
return filtered_files
|
||||||
|
def print_files(filtered_files):
|
||||||
|
for file in filtered_files:
|
||||||
|
print(file)
|
||||||
|
|
||||||
|
def get_albums(filtered_files):
|
||||||
|
albums = []
|
||||||
|
for file in filtered_files:
|
||||||
|
album = os.path.dirname(file)
|
||||||
|
if album not in albums:
|
||||||
|
albums.append(album)
|
||||||
|
return albums
|
||||||
|
|
||||||
|
flac_files = scan_dir()
|
||||||
|
filtered_files = filter_files(flac_files)
|
||||||
|
albums = get_albums(filtered_files)
|
||||||
|
print_files(albums)
|
||||||
|
|
||||||
|
print_files(filtered_files)
|
||||||
|
with open("filtered_files.txt", "w") as f:
|
||||||
|
for file in filtered_files:
|
||||||
|
f.write(file + "\n")
|
||||||
|
|
||||||
|
with open("albums.txt", "w") as f:
|
||||||
|
for album in albums:
|
||||||
|
f.write(album + "\n")
|
78
hq2cd-conv/hq2cd.py
Normal file
78
hq2cd-conv/hq2cd.py
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
# Recursivly scan from the currenct directory and add every flac file to an array
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
import json
|
||||||
|
import subprocess
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
# TODO: Rewrite using ffmpeg-python probe functionality
|
||||||
|
def _ffprobe(file_path):
|
||||||
|
command = (
|
||||||
|
'ffprobe -v quiet -print_format json -show_streams -select_streams a "'f'{file_path}"'
|
||||||
|
)
|
||||||
|
result = subprocess.run(command, capture_output=True)
|
||||||
|
if result.returncode == 0:
|
||||||
|
return json.loads(result.stdout)
|
||||||
|
raise RuntimeError(
|
||||||
|
f'FFProbe failed for {file_path}, output: {result.stderr}'
|
||||||
|
)
|
||||||
|
|
||||||
|
def scan_dir():
|
||||||
|
flac_files = []
|
||||||
|
for root, dirs, files in os.walk(os.getcwd()):
|
||||||
|
for file in files:
|
||||||
|
if file.endswith(".flac"):
|
||||||
|
flac_files.append(os.path.join(root, file))
|
||||||
|
return flac_files
|
||||||
|
|
||||||
|
|
||||||
|
# Filter the array of flac files to only include files with a bit depth higher than 16, and a sample rate higher than 44.1kHz
|
||||||
|
def filter_files(flac_files):
|
||||||
|
filtered_files = []
|
||||||
|
counter = 0
|
||||||
|
max_counter = len(flac_files)
|
||||||
|
for file in flac_files:
|
||||||
|
counter += 1
|
||||||
|
print("Progress: " + str(counter) + "/" + str(max_counter))
|
||||||
|
metadata = _ffprobe(file)
|
||||||
|
if int(metadata['streams'][0]['bits_per_raw_sample']) > 16 and int(
|
||||||
|
metadata['streams'][0]['sample_rate']) > 44100:
|
||||||
|
filtered_files.append(file)
|
||||||
|
return filtered_files
|
||||||
|
|
||||||
|
|
||||||
|
# Print the filtered files to the console
|
||||||
|
|
||||||
|
def print_files(filtered_files):
|
||||||
|
for file in filtered_files:
|
||||||
|
print(file)
|
||||||
|
|
||||||
|
|
||||||
|
def get_relative_path(file):
|
||||||
|
return os.path.relpath(file, os.getcwd())
|
||||||
|
|
||||||
|
def get_root_path(file):
|
||||||
|
return os.path.dirname(file)
|
||||||
|
|
||||||
|
|
||||||
|
def convert_files(filtered_files):
|
||||||
|
for file in filtered_files:
|
||||||
|
output = ".\\Output\\" + get_relative_path(file)
|
||||||
|
|
||||||
|
output_no_basename = os.path.dirname(output)
|
||||||
|
os.makedirs(output_no_basename, exist_ok=True)
|
||||||
|
|
||||||
|
stream = ffmpeg.input(file)
|
||||||
|
stream = ffmpeg.output(stream, output, sample_fmt="s16", ar='44100')
|
||||||
|
stream = ffmpeg.overwrite_output(stream)
|
||||||
|
ffmpeg.run(stream)
|
||||||
|
|
||||||
|
# Run the functions
|
||||||
|
|
||||||
|
flac_files = scan_dir()
|
||||||
|
print_files(flac_files)
|
||||||
|
filtered_files = filter_files(flac_files)
|
||||||
|
print_files(filtered_files)
|
||||||
|
convert_files(filtered_files)
|
||||||
|
|
151
hq2cd-conv/poetry.lock
generated
Normal file
151
hq2cd-conv/poetry.lock
generated
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand.
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ffmpeg-python"
|
||||||
|
version = "0.2.0"
|
||||||
|
description = "Python bindings for FFmpeg - with complex filtering support"
|
||||||
|
optional = false
|
||||||
|
python-versions = "*"
|
||||||
|
files = [
|
||||||
|
{file = "ffmpeg-python-0.2.0.tar.gz", hash = "sha256:65225db34627c578ef0e11c8b1eb528bb35e024752f6f10b78c011f6f64c4127"},
|
||||||
|
{file = "ffmpeg_python-0.2.0-py3-none-any.whl", hash = "sha256:ac441a0404e053f8b6a1113a77c0f452f1cfc62f6344a769475ffdc0f56c23c5"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
future = "*"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
dev = ["Sphinx (==2.1.0)", "future (==0.17.1)", "numpy (==1.16.4)", "pytest (==4.6.1)", "pytest-mock (==1.10.4)", "tox (==3.12.1)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ffprobe-python"
|
||||||
|
version = "1.0.3"
|
||||||
|
description = " A wrapper around ffprobe command to extract metadata from media files."
|
||||||
|
optional = false
|
||||||
|
python-versions = "*"
|
||||||
|
files = [
|
||||||
|
{file = "ffprobe-python-1.0.3.tar.gz", hash = "sha256:b1d3e69e65e0814e28575f63a47b836a0b7cc8f1ffedd62d27152d9e4488214a"},
|
||||||
|
{file = "ffprobe_python-1.0.3-py3-none-any.whl", hash = "sha256:b02576228f6da0b0bb973e15e5dadb132013a4ded202dabb89ac77779e9634d6"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "future"
|
||||||
|
version = "0.18.3"
|
||||||
|
description = "Clean single-source support for Python 3 and 2"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
||||||
|
files = [
|
||||||
|
{file = "future-0.18.3.tar.gz", hash = "sha256:34a17436ed1e96697a86f9de3d15a3b0be01d8bc8de9c1dffd59fb8234ed5307"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "llvmlite"
|
||||||
|
version = "0.40.0"
|
||||||
|
description = "lightweight wrapper around basic LLVM functionality"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
files = [
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90a46db1ed219d93ef05245ec17cf243074ec2b2687209cb310a803a2c2510dc"},
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b9d742b66023298532d0e7beddd3d9f04334c046df7a02a1ec2ba8b4046a978c"},
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ff38c309dc758b996d556e599e00647e6b8dbd21125c06b2d0584a9984a2288"},
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66ecb8cdee35bbbdad9b331f446641977645de1973f6270bf4194307a1753666"},
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-win32.whl", hash = "sha256:83dd5148f6ddd4d35585b69ebaa50605fdf8011a5b7259a0463afd4aefc62414"},
|
||||||
|
{file = "llvmlite-0.40.0-cp310-cp310-win_amd64.whl", hash = "sha256:f72d6ccbfd9cc7da43098fcef23ffbe173ce2d986215072dbb2e7929412f9ff8"},
|
||||||
|
{file = "llvmlite-0.40.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bbf19077144e159406ef222348d5330d5061177fb79d3f7f82abf2cf29b77c0b"},
|
||||||
|
{file = "llvmlite-0.40.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a4732d6c981f658f014dd2ab2b682ac631cd12a6695e77c2d460cc68dc767868"},
|
||||||
|
{file = "llvmlite-0.40.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2754c4d2b6f027ab45425abd94dee4cbd228b598531b1e9e1fc15f3298265d88"},
|
||||||
|
{file = "llvmlite-0.40.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb79b992bdc2e62c5f5f86263d5546b5298d498e7c1a9d64b3a6f0d31f46ba5b"},
|
||||||
|
{file = "llvmlite-0.40.0-cp311-cp311-win_amd64.whl", hash = "sha256:be0ff5b68a86e47a7ec6cd5389bb17b4b8f020b981628c9e714dc2cfdbe89c86"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f5d4445eccd9c9c5639b35cb6279231f97cbd77a1c49fb41c05081ff96e041db"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:060f00611d8e65d6db80cabba17fbefde9ebefbfb6937fe5677f06cd3e7bbe3c"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58f5ba5febb2372418a3d37bd76d51bb987276a6fd979c2f2772b60b9061e575"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d1622237e6ce543ac185751f782c7e10cabe45abf2de802cd5dca8023805a5c"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-win32.whl", hash = "sha256:06803a1a38f911576bbe63a4082334d6661c59f2080e4681de1c66ec4924b0ac"},
|
||||||
|
{file = "llvmlite-0.40.0-cp38-cp38-win_amd64.whl", hash = "sha256:87c2114567f95c715ae35b03d82caa0df66a978c93a1ff752964949e9ce596d5"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a3382d81fcda57f5502f45a9ca62e0c9103fabd5f817c9820c7e61b9375f3d7"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:260b0241c17a1ec585020e1df58ed30b9975c3573c619fa1724ceb4cd53cbe42"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f980992b6c9dfee20a1608c5a4d875f8a52d76353ca02470550a85be6e5d3680"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52eee9e245ef6eb911d6c2a3a1a66378745a40c637284386031b0915754f457e"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-win32.whl", hash = "sha256:d27c2ec699b820296659dfd36ead1c527eb190c6d5cb3de24bfbee1024bdc20a"},
|
||||||
|
{file = "llvmlite-0.40.0-cp39-cp39-win_amd64.whl", hash = "sha256:6cf84141d1793c69285b88acf4216370cb831eab99778546a2a9002fadac932d"},
|
||||||
|
{file = "llvmlite-0.40.0.tar.gz", hash = "sha256:c910b8fbfd67b8e9d0b10ebc012b23cd67cbecef1b96f00d391ddd298d71671c"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "numba"
|
||||||
|
version = "0.57.0"
|
||||||
|
description = "compiling Python code using LLVM"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
files = [
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2e2c14c411545e80bf0f1a33232fb0bd6aa3368f86e56eeffc7f6d3ac16ea3fd"},
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6b3382c56d805ffcdc7b46eb69a906be733dd35b84be14abba8e5fd27d7916b2"},
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:133cba9b5002bf67f6f73d9b3050d919c1be91326bbdcccfdf3259bcfb1cec0e"},
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d92a17ee849574665c5d94e9c9b862e469e1231d3dbb9e58e58b30b4bb0cbce9"},
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-win32.whl", hash = "sha256:abc90c3d303a67ae5194770a6f0d0a83edf076683b8a426349a27b91d98e00d1"},
|
||||||
|
{file = "numba-0.57.0-cp310-cp310-win_amd64.whl", hash = "sha256:430f43c96f866ca4fe6008d8aa28bb608911d908ff94f879e0dbad7768ef9869"},
|
||||||
|
{file = "numba-0.57.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:069f7d8fddad4c0eb1d7534c2a18098fe50473dc77832b409176002e9011b96f"},
|
||||||
|
{file = "numba-0.57.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:79daa130fc9e4ebd1eea0a594d1de86d8a4366989f5fab93c482246b502520db"},
|
||||||
|
{file = "numba-0.57.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:274f4db4814ebd5ec81697acfc36df04a865b86610d7714905185b753f3f9baf"},
|
||||||
|
{file = "numba-0.57.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0106ee441e3f69cc6f17cb470c4fcccd592e0606567d43245635d72b071ab88e"},
|
||||||
|
{file = "numba-0.57.0-cp311-cp311-win_amd64.whl", hash = "sha256:a5d31b4d95000d86ffa9652ab5bcfa0ea30e6c3fc40e610147d4f2f00116703d"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3e0b8de39bf17519435937b53276dfb02e2eb8bc27cd211c8eeb01ffed1cab6b"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:18d90fa6fcd5b796999392a8ea67f2fbccecf8dabcea726e2e721c79f40566a6"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4f62528c7c8c5f97e9689fd788e420b68c67ee0a1a9a7715a57fd584b7aef1e"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fd12cf0b431676c08057685e229ea5daaa1ec8efba2506c38671734ace49c2d7"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-win32.whl", hash = "sha256:e5f11b1d435fb4d1d1b68fa68ff456d632dc4bfd40b18825ff80d6081d1afb26"},
|
||||||
|
{file = "numba-0.57.0-cp38-cp38-win_amd64.whl", hash = "sha256:5810ed2d6d22eb3c48bedfac2187fc44bb90e05f02d47fd31059e69207ae4106"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eddba74493d4003a42cd61ff7feca4928a94a45553d1fddac77a5cc339f6f4f9"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:110be5e1213d0a3d5fc691e921a000779500620196d99cee9908fce83d1e48df"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f949018ab9c467d38f14fe17db4df0d4a1c664be802189e2d6c5a434d9ffd4f6"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9fc0cd4ec93a1e3877985e10ed5837ed2991c83aa4b7ca574caae5c8b448cc4b"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-win32.whl", hash = "sha256:83d4f21c98eed3001e9896a43a1ce9c825999c03f7eb39ddd1c2d07a76708392"},
|
||||||
|
{file = "numba-0.57.0-cp39-cp39-win_amd64.whl", hash = "sha256:9173d00c6753212b68e4fd319cfa96c21b2263949452c97b034e78ce09539dee"},
|
||||||
|
{file = "numba-0.57.0.tar.gz", hash = "sha256:2af6d81067a5bdc13960c6d2519dbabbf4d5d597cf75d640c5aeaefd48c6420a"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
llvmlite = "==0.40.*"
|
||||||
|
numpy = ">=1.21,<1.25"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "numpy"
|
||||||
|
version = "1.24.3"
|
||||||
|
description = "Fundamental package for array computing in Python"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
files = [
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c1104d3c036fb81ab923f507536daedc718d0ad5a8707c6061cdfd6d184e570"},
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:202de8f38fc4a45a3eea4b63e2f376e5f2dc64ef0fa692838e31a808520efaf7"},
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8535303847b89aa6b0f00aa1dc62867b5a32923e4d1681a35b5eef2d9591a463"},
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d926b52ba1367f9acb76b0df6ed21f0b16a1ad87c6720a1121674e5cf63e2b6"},
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-win32.whl", hash = "sha256:f21c442fdd2805e91799fbe044a7b999b8571bb0ab0f7850d0cb9641a687092b"},
|
||||||
|
{file = "numpy-1.24.3-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f23af8c16022663a652d3b25dcdc272ac3f83c3af4c02eb8b824e6b3ab9d7"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9a7721ec204d3a237225db3e194c25268faf92e19338a35f3a224469cb6039a3"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d6cc757de514c00b24ae8cf5c876af2a7c3df189028d68c0cb4eaa9cd5afc2bf"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76e3f4e85fc5d4fd311f6e9b794d0c00e7002ec122be271f2019d63376f1d385"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1d3c026f57ceaad42f8231305d4653d5f05dc6332a730ae5c0bea3513de0950"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-win32.whl", hash = "sha256:c91c4afd8abc3908e00a44b2672718905b8611503f7ff87390cc0ac3423fb096"},
|
||||||
|
{file = "numpy-1.24.3-cp311-cp311-win_amd64.whl", hash = "sha256:5342cf6aad47943286afa6f1609cad9b4266a05e7f2ec408e2cf7aea7ff69d80"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7776ea65423ca6a15255ba1872d82d207bd1e09f6d0894ee4a64678dd2204078"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ae8d0be48d1b6ed82588934aaaa179875e7dc4f3d84da18d7eae6eb3f06c242c"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecde0f8adef7dfdec993fd54b0f78183051b6580f606111a6d789cd14c61ea0c"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4749e053a29364d3452c034827102ee100986903263e89884922ef01a0a6fd2f"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-win32.whl", hash = "sha256:d933fabd8f6a319e8530d0de4fcc2e6a61917e0b0c271fded460032db42a0fe4"},
|
||||||
|
{file = "numpy-1.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:56e48aec79ae238f6e4395886b5eaed058abb7231fb3361ddd7bfdf4eed54289"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4719d5aefb5189f50887773699eaf94e7d1e02bf36c1a9d353d9f46703758ca4"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ec87a7084caa559c36e0a2309e4ecb1baa03b687201d0a847c8b0ed476a7187"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea8282b9bcfe2b5e7d491d0bf7f3e2da29700cec05b49e64d6246923329f2b02"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210461d87fb02a84ef243cac5e814aad2b7f4be953b32cb53327bb49fd77fbb4"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-win32.whl", hash = "sha256:784c6da1a07818491b0ffd63c6bbe5a33deaa0e25a20e1b3ea20cf0e43f8046c"},
|
||||||
|
{file = "numpy-1.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:d5036197ecae68d7f491fcdb4df90082b0d4960ca6599ba2659957aafced7c17"},
|
||||||
|
{file = "numpy-1.24.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:352ee00c7f8387b44d19f4cada524586f07379c0d49270f87233983bc5087ca0"},
|
||||||
|
{file = "numpy-1.24.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7d6acc2e7524c9955e5c903160aa4ea083736fde7e91276b0e5d98e6332812"},
|
||||||
|
{file = "numpy-1.24.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:35400e6a8d102fd07c71ed7dcadd9eb62ee9a6e84ec159bd48c28235bbb0f8e4"},
|
||||||
|
{file = "numpy-1.24.3.tar.gz", hash = "sha256:ab344f1bf21f140adab8e47fdbc7c35a477dc01408791f8ba00d018dd0bc5155"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[metadata]
|
||||||
|
lock-version = "2.0"
|
||||||
|
python-versions = "^3.11"
|
||||||
|
content-hash = "fd5cf3d70b85e0381cfa9c3c45544d5016a7f58b100057f4be2bb378e583455b"
|
18
hq2cd-conv/pyproject.toml
Normal file
18
hq2cd-conv/pyproject.toml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
[tool.poetry]
|
||||||
|
name = "hq2cd-conv"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["Isaac Shoebottom <ir.shoebottom@gmail.com>"]
|
||||||
|
readme = "README.md"
|
||||||
|
packages = [{include = "hq2cd_conv"}]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.11"
|
||||||
|
ffprobe-python = "^1.0.3"
|
||||||
|
ffmpeg-python = "^0.2.0"
|
||||||
|
numba = "^0.57.0"
|
||||||
|
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
1
hq2cd-conv/test.json
Normal file
1
hq2cd-conv/test.json
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user