From 054227d39353d797d2c302a2a3c557c69edd5ba7 Mon Sep 17 00:00:00 2001 From: Bhavya Seth Date: Mon, 3 Oct 2022 00:32:03 +0530 Subject: [PATCH] Updated the Readme File --- README.md | 30 ++++++++++++++++++++++++++++-- SpokenTutorial/urls.py | 14 -------------- videomerge/views.py | 4 ++-- 3 files changed, 30 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 2ff2d81..971e78a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,29 @@ -# SpokenTutorial -This is a python and django based web application. +# Spoken Tutorial + +Spoken Tutorial is a Python-Django based web application to Translate and to Merge Video files + + +This Project enables to deep ddive into Django concepts +How to connect APIs and how to use them effectively + +Also one can use it for their self purpose if they wish to merge videos or they wish to Translate a audio file + + +## Features + +- Beginer Friendly +- Easy Concepts +- Proper Use of APIs +- Cross platform +- Easy to use and Understand + + + +## HacktoberFest Contributions + +![App Screenshot](https://res.cloudinary.com/practicaldev/image/fetch/s--n6yDj0MN--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/12t9r8j7n9ynxbdzhs5p.png) + +One can solve issues and contribute in the Hacktober fest in Spoken Tutorials + +All good-first-issues are appreciated \ No newline at end of file diff --git a/SpokenTutorial/urls.py b/SpokenTutorial/urls.py index e8c2b9d..cf1ddfd 100644 --- a/SpokenTutorial/urls.py +++ b/SpokenTutorial/urls.py @@ -1,18 +1,4 @@ -"""VideoTutorial URL Configuration -The `urlpatterns` list routes URLs to views. For more information please see: - https://docs.djangoproject.com/en/4.0/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, include diff --git a/videomerge/views.py b/videomerge/views.py index ba8dcdb..ce197a6 100644 --- a/videomerge/views.py +++ b/videomerge/views.py @@ -3,8 +3,8 @@ from django.core.files import File from django.http import HttpResponse from django.shortcuts import render -from .func import convert_video -from .models import convertedVideo +from videomerge.func import convert_video +from videomerge.models import convertedVideo vid_ext = ['mp4', 'mov', 'wmv', 'avi', 'mkv'] # Video file extensions aud_ext = ['mp3', 'aac', 'ogg', 'wav'] # Audio file extensions