From 2ee423f35f7e282824fa03d46fac850ff39d033b Mon Sep 17 00:00:00 2001 From: karthikeyan-ks Date: Mon, 6 Jan 2025 21:52:23 +0530 Subject: [PATCH 1/5] backend imtegration --- backend/backend/__init__.py | 0 backend/backend/asgi.py | 16 +++++ backend/backend/settings.py | 123 ++++++++++++++++++++++++++++++++++++ backend/backend/urls.py | 22 +++++++ backend/backend/wsgi.py | 16 +++++ backend/manage.py | 22 +++++++ 6 files changed, 199 insertions(+) create mode 100644 backend/backend/__init__.py create mode 100644 backend/backend/asgi.py create mode 100644 backend/backend/settings.py create mode 100644 backend/backend/urls.py create mode 100644 backend/backend/wsgi.py create mode 100755 backend/manage.py diff --git a/backend/backend/__init__.py b/backend/backend/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/backend/asgi.py b/backend/backend/asgi.py new file mode 100644 index 0000000..ed01e6a --- /dev/null +++ b/backend/backend/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for backend project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') + +application = get_asgi_application() diff --git a/backend/backend/settings.py b/backend/backend/settings.py new file mode 100644 index 0000000..e7e2397 --- /dev/null +++ b/backend/backend/settings.py @@ -0,0 +1,123 @@ +""" +Django settings for backend project. + +Generated by 'django-admin startproject' using Django 5.1.4. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/5.1/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-qkh9wpte((ik5#r(l+mj@5rkiy!2-4^&b%0q@7yehgc+i0t20d' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'backend.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'backend.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/5.1/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/5.1/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/5.1/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/backend/backend/urls.py b/backend/backend/urls.py new file mode 100644 index 0000000..5edb75c --- /dev/null +++ b/backend/backend/urls.py @@ -0,0 +1,22 @@ +""" +URL configuration for backend project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/5.1/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path + +urlpatterns = [ + path('admin/', admin.site.urls), +] diff --git a/backend/backend/wsgi.py b/backend/backend/wsgi.py new file mode 100644 index 0000000..07bda9d --- /dev/null +++ b/backend/backend/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for backend project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') + +application = get_wsgi_application() diff --git a/backend/manage.py b/backend/manage.py new file mode 100755 index 0000000..eb6431e --- /dev/null +++ b/backend/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() From 10181e4d176c827afaefabe79ff8b7401741795e Mon Sep 17 00:00:00 2001 From: karthikeyan-ks Date: Mon, 6 Jan 2025 22:17:09 +0530 Subject: [PATCH 2/5] changes --- backend/api/__init__.py | 0 backend/api/admin.py | 3 +++ backend/api/apps.py | 6 ++++++ backend/api/migrations/__init__.py | 0 backend/api/models.py | 3 +++ backend/api/task.py | 9 +++++++++ backend/api/tests.py | 3 +++ backend/api/views.py | 31 +++++++++++++++++++++++++++++ backend/backend/settings.py | 4 ++++ backend/backend/urls.py | 2 ++ backend/celery.py | 16 +++++++++++++++ backend/db.sqlite3 | Bin 0 -> 131072 bytes 12 files changed, 77 insertions(+) create mode 100644 backend/api/__init__.py create mode 100644 backend/api/admin.py create mode 100644 backend/api/apps.py create mode 100644 backend/api/migrations/__init__.py create mode 100644 backend/api/models.py create mode 100644 backend/api/task.py create mode 100644 backend/api/tests.py create mode 100644 backend/api/views.py create mode 100644 backend/celery.py create mode 100644 backend/db.sqlite3 diff --git a/backend/api/__init__.py b/backend/api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/api/admin.py b/backend/api/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/backend/api/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/backend/api/apps.py b/backend/api/apps.py new file mode 100644 index 0000000..66656fd --- /dev/null +++ b/backend/api/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ApiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'api' diff --git a/backend/api/migrations/__init__.py b/backend/api/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/api/models.py b/backend/api/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/backend/api/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/backend/api/task.py b/backend/api/task.py new file mode 100644 index 0000000..4973e5e --- /dev/null +++ b/backend/api/task.py @@ -0,0 +1,9 @@ +from __future__ import absolute_import, unicode_literals +from celery import shared_task +import time + +@shared_task +def process_uploaded_file(file_path): + # Simulate long-running task + time.sleep(300) # Replace with actual file processing logic + return 'File processed' diff --git a/backend/api/tests.py b/backend/api/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/backend/api/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/backend/api/views.py b/backend/api/views.py new file mode 100644 index 0000000..1753789 --- /dev/null +++ b/backend/api/views.py @@ -0,0 +1,31 @@ +from django.shortcuts import render +from django.http import JsonResponse +from .tasks import process_uploaded_file +from .forms import UploadFileForm +import os + +# Create your views here. +def handle_uploaded_file(f, file_path): + with open(file_path, 'wb+') as destination: + for chunk in f.chunks(): + destination.write(chunk) + +def upload(request): + if request.method == 'POST': + form = UploadFileForm(request.POST, request.FILES) + if form.is_valid(): + file = form.cleaned_data['file'] + file_path = os.path.join('uploads', file.name) # Change 'uploads' to your desired directory + handle_uploaded_file(file, file_path) + task = process_uploaded_file.delay(file_path) + return JsonResponse({'task_id': task.id}) + + else: + form = UploadFileForm() + return render(request, 'upload.html', {'form': form}) + +from celery.result import AsyncResult + +def check_task_status(request, task_id): + task_result = AsyncResult(task_id) + return JsonResponse({'status': task_result.status, 'result': task_result.result}) diff --git a/backend/backend/settings.py b/backend/backend/settings.py index e7e2397..f152247 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -37,6 +37,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'api' ] MIDDLEWARE = [ @@ -121,3 +122,6 @@ STATIC_URL = 'static/' # https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' +CELERY_BROKER_URL = 'redis://localhost:6379/0' +CELERY_ACCEPT_CONTENT = ['json'] +CELERY_TASK_SERIALIZER = 'json' diff --git a/backend/backend/urls.py b/backend/backend/urls.py index 5edb75c..08bda50 100644 --- a/backend/backend/urls.py +++ b/backend/backend/urls.py @@ -16,7 +16,9 @@ Including another URLconf """ from django.contrib import admin from django.urls import path +from api.views import upload urlpatterns = [ path('admin/', admin.site.urls), + path('upload/',upload) ] diff --git a/backend/celery.py b/backend/celery.py new file mode 100644 index 0000000..312fe2e --- /dev/null +++ b/backend/celery.py @@ -0,0 +1,16 @@ +from __future__ import absolute_import, unicode_literals +import os +from celery import Celery + +# set the default Django settings module for the 'celery' program. +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') + +app = Celery('backend') + +# Using a string here means the worker doesn't have to serialize +# the configuration object to child processes. +# Namespace 'CELERY' means all celery-related configs must start with 'CELERY_' +app.config_from_object('django.conf:settings', namespace='CELERY') + +# Load task modules from all registered Django app configs. +app.autodiscover_tasks() diff --git a/backend/db.sqlite3 b/backend/db.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..a594b9dd8ce1a79574b6354ec79d72b774833428 GIT binary patch literal 131072 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 literal 0 HcmV?d00001 From 889630d7f15cdbe46c2aa484e16ce83ee231baf4 Mon Sep 17 00:00:00 2001 From: karthikeyan-ks Date: Wed, 8 Jan 2025 01:09:50 +0530 Subject: [PATCH 3/5] celery added for asynchronus working of voice separation --- backend/api/forms.py | 12 ++++++++++++ backend/api/{task.py => tasks.py} | 0 backend/backend/__init__.py | 1 + backend/celery.py | 16 ---------------- backend/celery_app.py | 9 +++++++++ 5 files changed, 22 insertions(+), 16 deletions(-) create mode 100644 backend/api/forms.py rename backend/api/{task.py => tasks.py} (100%) delete mode 100644 backend/celery.py create mode 100644 backend/celery_app.py diff --git a/backend/api/forms.py b/backend/api/forms.py new file mode 100644 index 0000000..3606870 --- /dev/null +++ b/backend/api/forms.py @@ -0,0 +1,12 @@ +from django import forms + +class UploadFileForm(forms.Form): + file = forms.FileField(label='Select a file') + + # You can add custom validation if needed + def clean_file(self): + file = self.cleaned_data.get('file') + if not file: + raise forms.ValidationError("No file uploaded!") + # Additional custom validations can be added here + return file diff --git a/backend/api/task.py b/backend/api/tasks.py similarity index 100% rename from backend/api/task.py rename to backend/api/tasks.py diff --git a/backend/backend/__init__.py b/backend/backend/__init__.py index e69de29..52ffd13 100644 --- a/backend/backend/__init__.py +++ b/backend/backend/__init__.py @@ -0,0 +1 @@ +from celery_app import app as celery diff --git a/backend/celery.py b/backend/celery.py deleted file mode 100644 index 312fe2e..0000000 --- a/backend/celery.py +++ /dev/null @@ -1,16 +0,0 @@ -from __future__ import absolute_import, unicode_literals -import os -from celery import Celery - -# set the default Django settings module for the 'celery' program. -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') - -app = Celery('backend') - -# Using a string here means the worker doesn't have to serialize -# the configuration object to child processes. -# Namespace 'CELERY' means all celery-related configs must start with 'CELERY_' -app.config_from_object('django.conf:settings', namespace='CELERY') - -# Load task modules from all registered Django app configs. -app.autodiscover_tasks() diff --git a/backend/celery_app.py b/backend/celery_app.py new file mode 100644 index 0000000..12ffede --- /dev/null +++ b/backend/celery_app.py @@ -0,0 +1,9 @@ +from celery import Celery + +app = Celery('backend') + +# Load configuration from Django settings, using the CELERY namespace. +app.config_from_object('django.conf:settings', namespace='CELERY') + +# Autodiscover tasks from installed apps. +app.autodiscover_tasks() From c3f5903bd09bf535b8de316177857a1ddd65f45d Mon Sep 17 00:00:00 2001 From: karthikeyan-ks Date: Wed, 8 Jan 2025 22:15:12 +0530 Subject: [PATCH 4/5] backend it integrated with audio separation module --- backend/api/tasks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/api/tasks.py b/backend/api/tasks.py index 4973e5e..71afd05 100644 --- a/backend/api/tasks.py +++ b/backend/api/tasks.py @@ -1,9 +1,11 @@ from __future__ import absolute_import, unicode_literals from celery import shared_task +from src.input.file_reader import read_audio #export PYTHONPATH="/home/karthikeyan/code/MainProject/freq-split-enhance:$PYTHONPATH" for exporting the module + import time @shared_task def process_uploaded_file(file_path): # Simulate long-running task - time.sleep(300) # Replace with actual file processing logic + read_audio(file_path=file_path) return 'File processed' From 5ef1d66f53ad4c2100cfd1e5e0be2a6e19cb24f8 Mon Sep 17 00:00:00 2001 From: Joel Mathew Thomas <90510078+joelmathewthomas@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:17:56 +0530 Subject: [PATCH 5/5] updated dependencies: add django, redis, celery --- requirements.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/requirements.txt b/requirements.txt index 27debed..d742f3f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,25 @@ absl-py==2.1.0 +amqp==5.3.1 antlr4-python3-runtime==4.9.3 +asgiref==3.8.1 asttokens==3.0.0 astunparse==1.6.3 audioread==3.0.1 +billiard==4.2.1 +celery==5.4.0 certifi==2024.12.14 cffi==1.17.1 charset-normalizer==3.4.0 +click==8.1.8 +click-didyoumean==0.3.1 +click-plugins==1.1.1 +click-repl==0.3.0 cloudpickle==3.1.0 contourpy==1.3.1 cycler==0.12.1 decorator==5.1.1 demucs==4.0.1 +Django==5.1.4 dora_search==0.1.12 einops==0.8.0 executing==2.1.0 @@ -30,6 +39,7 @@ joblib==1.4.2 julius==0.2.7 keras==3.7.0 kiwisolver==1.4.8 +kombu==5.4.2 lameenc==1.7.0 lazy_loader==0.4 libclang==18.1.1 @@ -80,6 +90,7 @@ pyparsing==3.2.0 pytest==8.3.4 python-dateutil==2.9.0.post0 PyYAML==6.0.2 +redis==5.2.1 requests==2.32.3 retrying==1.3.4 rich==13.9.4 @@ -89,6 +100,7 @@ setuptools==75.6.0 six==1.17.0 soundfile==0.12.1 soxr==0.5.0.post1 +sqlparse==0.5.3 stack-data==0.6.3 submitit==1.5.2 sympy==1.13.1 @@ -106,7 +118,9 @@ traitlets==5.14.3 treetable==0.2.5 triton==3.1.0 typing_extensions==4.12.2 +tzdata==2024.2 urllib3==2.3.0 +vine==5.1.0 wcwidth==0.2.13 Werkzeug==3.1.3 wheel==0.45.1