Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
14 changes: 0 additions & 14 deletions SpokenTutorial/urls.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions videomerge/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down