https://medium.com/@prabhu_irl/getting-started-with-dlib-on-ios-5e66d77380d
brew install --cask xquartz
brew install cmake
| from pydub import AudioSegment | |
| from pydub.silence import split_on_silence | |
| import time | |
| def remove_silence_add_delay(input_path, output_path, silence_thresh=-40, min_silence_len=2000, delay=200): | |
| # Load the separated vocal track | |
| vocal_track = AudioSegment.from_file(input_path) | |
| # Split the vocal track on silence with the specified threshold | |
| non_silent_vocals = split_on_silence(vocal_track, silence_thresh=silence_thresh, min_silence_len=min_silence_len) |
| openapi: 3.0.0 | |
| info: | |
| title: Audiobook Recommendation API | |
| version: 1.0.0 | |
| description: An API of content-based recommendations for Audiobooks. | |
| servers: | |
| - url: http://localhost:3000 | |
| paths: | |
| /api/books: | |
| get: |
https://medium.com/@prabhu_irl/getting-started-with-dlib-on-ios-5e66d77380d
brew install --cask xquartz
brew install cmake
| import socket | |
| from _thread import * | |
| import threading | |
| import os, zipfile | |
| from pip._vendor.rich.console import Console | |
| from pip._vendor.rich.progress import ( | |
| Progress, | |
| TextColumn, | |
| BarColumn, | |
| TransferSpeedColumn, |
| import os | |
| import lz4.frame | |
| def compression(files): | |
| with open('archive.lz4', 'wb') as archive: | |
| for file_name in files: | |
| # Write file metadata as length-prefixed string to the archive | |
| archive.write(len(file_name).to_bytes(2, byteorder='big')) | |
| archive.write(file_name.encode("utf-8")) | |