{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "2" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "1 + 1" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "all_filelists_path = \"embeddings/all_filelists.txt\"\n", "\n", "with open(all_filelists_path, \"r\", encoding=\"utf-8\") as f:\n", " all_filelists = f.readlines()\n", "\n", "all_filelists = [x.strip() for x in all_filelists]" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "\"audio_files\\\\Aino+Links_Sousaku_Kanojo_no_Ren'ai_Koushiki\\\\ちなみ\\\\tin_0000.ogg\"" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "all_filelists[0]" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# Make all suffice to \".ogg\"\n", "from pathlib import Path\n", "\n", "all_filelists = [str(Path(x).with_suffix(\".ogg\")) for x in all_filelists]" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "# Write\n", "\n", "all_filelists_path = \"embeddings/all_filelists_ogg.txt\"\n", "\n", "with open(all_filelists_path, \"w\", encoding=\"utf-8\") as f:\n", " f.write(\"\\n\".join(all_filelists))" ] } ], "metadata": { "kernelspec": { "display_name": ".venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.10" } }, "nbformat": 4, "nbformat_minor": 2 }