Skip to content

Commit 2e17e53

Browse files
author
Coder2100
committed
Final Submission
1 parent e917a97 commit 2e17e53

37 files changed

+16
-4
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CS50 Web Final-Project - Music, Video and Podcast Streaming Platform like YouTube
22

3-
The App is built with Python's django Framework, Javascript.VideoJS is used for Multimedia files.
3+
The App is built with Python's django Framework, Javascript.VideoJS,SqlLite3, CSS,Bootstrap,HTML,SVG,JQuery.
44

55
#About The App
66

@@ -32,5 +32,17 @@ The user uploads get featured at the buttom of the main website.
3232
3.Ads
3333
The Ads app contain the ability for the site owner to add slide shows into a home page and in community content video section.
3434

35-
#Disclaimer
35+
# There are are folders
36+
37+
38+
A. iStream (name of the website)
39+
is the main application's folder that contains settings and main urls
40+
41+
42+
B.media
43+
This is where all the files get stores from videos to podcast, audio etc.
44+
It has subfolders to specify the type of multimedia included.The application does have the file validations.You will see on the YouTube video and its embarrassing me there where it cant accept the image from Google. see... https://youtu.be/zvlyYOUlFmU
45+
46+
# Disclaimer
3647
All the image files, and videos are there for demonstration and i do not promote them or own their material.
48+
# Youtube demonstration: https://youtu.be/zvlyYOUlFmU
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.

ads/__pycache__/admin.cpython-37.pyc

21 Bytes
Binary file not shown.

ads/__pycache__/apps.cpython-37.pyc

21 Bytes
Binary file not shown.

ads/__pycache__/models.cpython-37.pyc

21 Bytes
Binary file not shown.

ads/__pycache__/urls.cpython-37.pyc

21 Bytes
Binary file not shown.

ads/__pycache__/views.cpython-37.pyc

21 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

ads/templates/ads/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1>More Music Videos</h1>
5656
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img"><rect width="100%" height="100%" fill="#fe9095"/></svg>
5757
<div class="container">
5858
<div class="carousel-caption">
59-
<h1>Select Your Plan.</h1>
59+
<h1>Join a Free Movie Streaming Platform.</h1>
6060
<p>No hidden fees, equipment rentals or installation appointments.</p>
6161
<p><a class="btn btn-lg btn-primary" href="{% url 'entertainments:community' %}" role="button">TRY ITS FREE!</a></p>
6262
</div>

db.sqlite3

0 Bytes
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

entertainments/validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
def image_validation_extension(value):
44
from django.core.exceptions import ValidationError
55
img_extention = os.path.splitext(value.name)[1]#return path file name
6-
valid_img_extentions = ['.jpg', '.png', 'gif']
6+
valid_img_extentions = ['.jpg', '.png', 'gif','jpeg']
77
if not img_extention.lower() in valid_img_extentions:
88
raise ValidationError(u'Unsupported file extention.')
99

21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
770 KB
Binary file not shown.
Loading

0 commit comments

Comments
 (0)