├── .vs
├── ProjectSettings.json
├── slnx.sqlite
└── streamIt
│ └── config
│ └── applicationhost.config
├── .vscode
└── settings.json
├── README.md
├── about.html
├── contact.html
├── css
└── style.css
├── img
├── about
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ └── 4.jpg
├── header-bg.jpg
├── landingPage.png
├── latestMovies.png
├── logos
│ ├── creative-market.jpg
│ ├── designmodo.jpg
│ ├── envato.jpg
│ └── themeforest.jpg
├── map-image.png
├── no-poster.gif
├── portfolio
│ ├── 01-full.jpg
│ ├── 01-thumbnail.jpg
│ ├── 02-full.jpg
│ ├── 02-thumbnail.jpg
│ ├── 03-full.jpg
│ ├── 03-thumbnail.jpg
│ ├── 04-full.jpg
│ ├── 04-thumbnail.jpg
│ ├── 05-full.jpg
│ ├── 05-thumbnail.jpg
│ ├── 06-full.jpg
│ └── 06-thumbnail.jpg
├── searchMovie.png
└── team
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ └── myImage.jpg
├── index.html
├── index.php
├── js
├── indexMovies.js
├── movie.js
├── searchMovie.js
├── searchTv.js
└── tv.js
├── movies.html
├── nonsencefolder
├── nonsencefile
└── searchMoviebck.js
├── singleMovie.html
├── singleTv.html
├── tv.html
└── wp-content
└── themes
└── Dooplay
└── inc
└── parts
└── single
└── player_videospider.php
/.vs/ProjectSettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "CurrentProjectSetting": null
3 | }
--------------------------------------------------------------------------------
/.vs/slnx.sqlite:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/.vs/slnx.sqlite
--------------------------------------------------------------------------------
/.vs/streamIt/config/applicationhost.config:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 |
526 |
527 |
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 |
544 |
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 |
562 |
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
571 |
572 |
573 |
574 |
575 |
576 |
577 |
578 |
579 |
580 |
581 |
582 |
583 |
584 |
585 |
586 |
587 |
588 |
589 |
590 |
591 |
592 |
593 |
594 |
595 |
596 |
597 |
598 |
599 |
600 |
601 |
602 |
603 |
604 |
605 |
606 |
607 |
608 |
609 |
610 |
611 |
612 |
613 |
614 |
615 |
616 |
617 |
618 |
619 |
620 |
621 |
622 |
623 |
624 |
625 |
626 |
627 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 |
644 |
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
653 |
654 |
655 |
656 |
657 |
658 |
659 |
660 |
661 |
662 |
663 |
664 |
665 |
666 |
667 |
668 |
669 |
670 |
671 |
672 |
673 |
674 |
675 |
676 |
677 |
678 |
679 |
680 |
681 |
682 |
683 |
684 |
685 |
686 |
687 |
688 |
689 |
690 |
691 |
692 |
693 |
694 |
695 |
696 |
697 |
698 |
699 |
700 |
701 |
702 |
703 |
704 |
705 |
706 |
707 |
708 |
709 |
710 |
711 |
712 |
713 |
714 |
715 |
716 |
717 |
718 |
719 |
720 |
721 |
722 |
723 |
724 |
725 |
726 |
727 |
728 |
729 |
730 |
731 |
732 |
733 |
734 |
735 |
736 |
737 |
738 |
739 |
740 |
741 |
742 |
743 |
744 |
745 |
746 |
747 |
748 |
749 |
750 |
751 |
752 |
753 |
754 |
755 |
756 |
757 |
758 |
759 |
760 |
761 |
762 |
763 |
764 |
765 |
766 |
767 |
768 |
769 |
770 |
771 |
772 |
773 |
774 |
775 |
776 |
777 |
778 |
779 |
780 |
781 |
782 |
783 |
784 |
785 |
786 |
787 |
788 |
789 |
790 |
791 |
792 |
793 |
794 |
795 |
796 |
797 |
798 |
799 |
800 |
801 |
802 |
803 |
804 |
805 |
806 |
807 |
808 |
809 |
810 |
811 |
812 |
813 |
814 |
815 |
816 |
817 |
818 |
819 |
820 |
821 |
822 |
823 |
824 |
825 |
826 |
827 |
828 |
829 |
830 |
831 |
832 |
833 |
834 |
835 |
836 |
837 |
838 |
839 |
840 |
841 |
842 |
843 |
844 |
845 |
846 |
847 |
848 |
849 |
850 |
851 |
852 |
853 |
854 |
855 |
856 |
857 |
858 |
859 |
860 |
861 |
862 |
863 |
864 |
865 |
866 |
867 |
868 |
869 |
870 |
871 |
872 |
873 |
874 |
875 |
876 |
877 |
878 |
879 |
880 |
881 |
882 |
883 |
884 |
885 |
886 |
887 |
888 |
889 |
890 |
891 |
892 |
893 |
894 |
895 |
896 |
897 |
898 |
899 |
900 |
901 |
902 |
903 |
904 |
905 |
906 |
907 |
908 |
909 |
910 |
911 |
912 |
913 |
914 |
915 |
916 |
917 |
918 |
919 |
920 |
921 |
922 |
923 |
924 |
925 |
926 |
927 |
928 |
929 |
930 |
931 |
932 |
933 |
934 |
935 |
936 |
937 |
938 |
939 |
940 |
941 |
942 |
943 |
944 |
945 |
946 |
947 |
948 |
949 |
950 |
951 |
952 |
953 |
954 |
955 |
956 |
957 |
958 |
959 |
960 |
961 |
962 |
963 |
964 |
965 |
966 |
967 |
968 |
969 |
970 |
971 |
972 |
973 |
974 |
975 |
976 |
977 |
978 |
979 |
980 |
981 |
982 |
983 |
984 |
985 |
986 |
987 |
988 |
989 |
990 |
991 |
992 |
993 |
994 |
995 |
996 |
997 |
998 |
999 |
1000 |
1001 |
1002 |
1003 |
1004 |
1005 |
1006 |
1007 |
1008 |
1009 |
1010 |
1011 |
1012 |
1013 |
1014 |
1015 |
1016 |
1017 |
1018 |
1019 |
1020 |
1021 |
1022 |
1023 |
1024 |
1025 |
1026 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "liveServer.settings.port": 5501
3 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
12 | let output = '';
13 | $.each(movies, (index, movie) => {
14 | output += `
15 |
25 |
26 | `;
27 | });
28 | $("#home-movies").html(output);
29 | })
30 | .catch((err) => {
31 | console.log(err);
32 | });
33 | });
34 |
35 | //function to display navbar background-color on scroll
36 | window.onscroll = function () {
37 | scrollFunction();
38 | };
39 | function scrollFunction() {
40 | if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10) {
41 | document.getElementById("mainNav").style.backgroundColor = "#323033";
42 | } else {
43 | document.getElementById("mainNav").style.backgroundColor = "transparent";
44 | }
45 | }
46 | $('#home-movies').html(output);
47 |
48 | //function to display navbar background-color on scroll
49 | $(window).scroll(function () {
50 | if (
51 | document.body.scrollTop > 20 ||
52 | document.documentElement.scrollTop > 20
53 | ) {
54 | $('#mainNav').css({ 'background-color': '#323033' });
55 | $('#gtp').css({ transform: 'scale(100%)' });
56 | } else {
57 | $('#mainNav').css({ 'background-color': 'transparent' });
58 | $('#gtp').css({ transform: 'scale(0)' });
59 | }
60 | });
61 |
62 | //function to scroll to the top when the user clicks the "goToTop" button
63 | $('#gtp').click(function () {
64 | document.body.scrollTop = 0;
65 | document.documentElement.scrollTop = 0;
66 | });
67 | })
68 | .catch((err) => {
69 | console.log(err);
70 | });
71 | });
72 |
--------------------------------------------------------------------------------
/js/movie.js:
--------------------------------------------------------------------------------
1 | const notAvailable = "N/A";
2 |
3 | function movieSelected(id) {
4 | sessionStorage.setItem("movieId", id);
5 | window.location = "singleMovie.html";
6 | return false;
7 | }
8 |
9 | function getMovie() {
10 | let movieId = sessionStorage.getItem("movieId");
11 |
12 | axios
13 | .get(
14 | "https://api.themoviedb.org/3/movie/" +
15 | movieId +
16 | "?api_key=ca5d667528ca51e527d9e4f7830d97d2&include_adult=false"
17 | )
18 | .then(response => {
19 | console.log(response);
20 | let movie = response.data;
21 | let output = `
22 |
23 |
24 | ${
25 | !movie.poster_path
26 | ? `
27 |
28 |
29 |
30 |
31 | `
32 | : `
33 |
34 |
37 |
38 | `
39 | }
40 |
41 |
${movie.original_title}
42 |
43 | ${
44 | !movie.release_date
45 | ? `
46 | Released On: ${notAvailable}
47 | `
48 | : `
49 | Released On: ${
50 | movie.release_date
51 | }
52 | `
53 | }
54 | ${
55 | !movie.vote_average
56 | ? `
57 | Rated: ${notAvailable}
58 | `
59 | : `
60 | Rated: ${
61 | movie.vote_average
62 | }
63 | `
64 | }
65 | ${
66 | !movie.tagline
67 | ? `
68 | Tagline: ${notAvailable}
69 | `
70 | : `
71 | Tagline: ${
72 | movie.tagline
73 | }
74 | `
75 | }
76 | ${
77 | !movie.production_companies[0]
78 | ? `
79 | production Companies: ${notAvailable}
80 | `
81 | : `
82 | production Companies: ${
83 | movie.production_companies[0].name
84 | }
85 | `
86 | }
87 | ${
88 | !movie.production_countries[0]
89 | ? `
90 | production Country: ${notAvailable}
91 | `
92 | : `
93 | production Country: ${
94 | movie.production_countries[0].name
95 | }
96 | `
97 | }
98 |
99 |
100 |
101 |
102 |
103 |
104 |
Plot
105 | ${
106 | !movie.overview
107 | ? `
108 | ${notAvailable}
109 | `
110 | : `
111 | ${movie.overview}
112 | `
113 | }
114 |
115 |
View Imdb
118 |
Go back to search
119 |
120 |
121 |
122 |
129 |
130 |
131 | `;
132 | $("#movie").html(output);
133 | })
134 | .catch(err => {
135 | console.log(err);
136 | });
137 | }
138 |
139 | let mybutton = document.getElementById("myBtn");
140 |
141 | // When the user scrolls down 20px from the top of the document, show the button
142 | window.onscroll = function() {scrollFunction()};
143 |
144 | function scrollFunction() {
145 | if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
146 | mybutton.style.display = "block";
147 | } else {
148 | mybutton.style.display = "none";
149 | }
150 | }
151 |
152 | // When the user clicks on the button, scroll to the top of the document
153 | function topFunction() {
154 | document.body.scrollTop = 0; // For Safari
155 | document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
156 | }
--------------------------------------------------------------------------------
/js/searchMovie.js:
--------------------------------------------------------------------------------
1 | let adultFlag = false;
2 | $(document).ready(() => {
3 | $("#searchForm").on("submit", e => {
4 | let searchText = $("#searchText").val();
5 | //adultFlag = $('#adult').value();
6 | adultFlag = $("input[name=adult]:checked").val();
7 | getMovies(searchText);
8 | e.preventDefault();
9 | });
10 | });
11 |
12 | function getMovies(searchText) {
13 | axios
14 | .get(
15 | "https://api.themoviedb.org/3/search/movie?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&query=" +
16 | searchText +
17 | "&page=1&include_adult=" +
18 | adultFlag
19 | )
20 | .then(response => {
21 | let movies = response.data.results;
22 |
23 | let output = "";
24 | if (movies.length > 0) {
25 | $.each(movies, (index, movie) => {
26 | output += `
27 |
28 | ${
29 | !movie.poster_path
30 | ? `
31 |
34 |
35 |
36 |
37 | `
38 | : `
39 |
42 |
45 |
46 | `
47 | }
48 |
49 |
${movie.title}
50 |
Released On ${movie.release_date}
51 |
Movie Details
54 |
55 |
56 |
57 |
58 | `;
59 | });
60 | $("#movies").html(output);
61 | } else {
62 | output =
63 | '
No Movie Available with this Name!! Please Try Another Name ';
64 | $("#movies").html(output);
65 | }
66 | })
67 | .catch(err => {
68 | console.log(err);
69 | });
70 | }
71 |
--------------------------------------------------------------------------------
/js/searchTv.js:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(document).ready(() => {
5 | $('#searchForm').on('submit', (e) => {
6 | let searchText = $('#searchText').val();
7 | getMovies(searchText);
8 | e.preventDefault();
9 |
10 | });
11 | });
12 |
13 |
14 | function getMovies(searchText){
15 | axios.get('https://api.themoviedb.org/3/search/tv?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&query='+searchText+'&page=1')
16 | .then((response) =>{
17 | let movies = response.data.results;
18 | console.log(response);
19 | let output ='';
20 | if(movies.length>0){
21 | $.each(movies, (index, movie) =>{
22 | output += `
23 |
24 | ${!movie.poster_path ?
25 |
26 | `
27 |
28 |
29 |
30 |
31 | `:`
32 |
33 |
34 |
35 | `
36 | }
37 |
38 |
${movie.name}
39 |
Released On ${movie.first_air_date}
40 |
View Details
41 |
42 |
43 |
44 |
45 | `;
46 | });
47 | $('#movies').html(output);
48 | }
49 | else {
50 | output ='
No Tv Series Available with this Name!! Please Try Another Name '
51 | $('#movies').html(output);
52 | }
53 | })
54 | .catch((err) =>{
55 | console.log(err);
56 | });
57 | }
58 |
--------------------------------------------------------------------------------
/js/tv.js:
--------------------------------------------------------------------------------
1 |
2 | const notAvailable = 'N/A';
3 | let title='';
4 | let searchTitle ='';
5 |
6 | function movieSelected(id){
7 | sessionStorage.setItem('movieId', id);
8 | window.location = 'singleTv.html';
9 | return false;
10 | }
11 |
12 |
13 |
14 | function getMovie(){
15 | let movieId = sessionStorage.getItem('movieId');
16 |
17 | axios.get('https://api.themoviedb.org/3/tv/'+movieId+'?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US')
18 | .then((response) =>{
19 | console.log(response);
20 | let movie = response.data;
21 | let output =`
22 |
23 | ${!movie.poster_path ?
24 |
25 | `
26 |
27 |
28 |
29 |
30 | `:`
31 |
32 |
33 |
34 | `
35 | }
36 |
37 |
38 |
${movie.original_name}
39 |
40 | ${!movie.first_air_date?
41 | `
42 | Released On: ${notAvailable}
43 | `:`
44 | Released On: ${movie.first_air_date}
45 | `
46 | }
47 | ${!movie.genres[0].name?
48 | `
49 | Rated: ${notAvailable}
50 | `:`
51 | Rated: ${movie.genres[0].name}
52 | `
53 | }
54 | ${!movie.created_by[0].name?
55 | `
56 | Tagline: ${notAvailable}
57 | `:`
58 | Tagline: ${movie.created_by[0].name}
59 | `
60 | }
61 | ${!movie.production_companies[0].name?
62 | `
63 | production Companies: ${notAvailable}
64 | `:`
65 | production Companies: ${movie.production_companies[0].name}
66 | `
67 | }
68 | ${!movie.origin_country[0]?
69 | `
70 | production Country: ${notAvailable}
71 | `:`
72 | production Country: ${movie.origin_country[0]}
73 | `
74 | }
75 |
76 |
77 |
78 |
79 |
90 |
91 |
92 |
93 |
94 | `;
95 | $('#movie').html(output);
96 | })
97 | .catch((err) =>{
98 | console.log(err);
99 | });
100 |
101 | }
102 |
--------------------------------------------------------------------------------
/movies.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
StreamIt
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
StreamIt
36 |
39 | Menu
40 |
41 |
60 |
61 |
62 |
63 |
73 |
74 |
75 |
76 |
77 |
78 |
Search for any Movie
79 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 | Copyright © StreamIt Developed By
101 | Hrishikesh Baidya in 2018
102 |
103 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
--------------------------------------------------------------------------------
/nonsencefolder/nonsencefile:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
Are you Adult?
6 |
7 | Select option
8 | Yes
9 | No
10 |
11 |
12 |
13 |
14 |
15 | /*
production Companies: ${
16 | !movie.production_companies[0].name?:movie.production_companies[0].name
17 | }
18 |
19 |
20 |
production Country: ${movie.production_countries[0].name}
21 | let title = encodeURIComponent(movie.original_name).replace(/%20/g, "-");
22 |
--------------------------------------------------------------------------------
/nonsencefolder/searchMoviebck.js:
--------------------------------------------------------------------------------
1 | $(document).ready(() => {
2 | $('#searchForm').on('submit', (e) => {
3 | let searchText = $('#searchText').val();
4 | //let encodedSearchText = encodeURIComponent(searchText);
5 | //console.log(encodedSearchText);
6 | getMovies(searchText);
7 | e.preventDefault();
8 | });
9 | });
10 |
11 | function getMovies(searchText){
12 | axios.get('https://api.themoviedb.org/3/discover/movie?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&sort_by=popularity.desc&include_adult=false')
13 | .then((response) =>{
14 | let movies = response.data.results;
15 | console.log(response);
16 | let output ='';
17 | $.each(movies, (index, movie) =>{
18 | output += `
19 |
29 |
30 | `;
31 | });
32 | $('#movies').html(output);
33 | })
34 | .catch((err) =>{
35 | console.log(err);
36 | });
37 | }
38 |
39 |
40 | function movieSelected(id){
41 | sessionStorage.setItem('movieId', id);
42 | window.location = 'singleMovie.html';
43 | return false;
44 | }
45 |
46 |
47 |
48 | function getMovie(){
49 | let movieId = sessionStorage.getItem('movieId');
50 |
51 | axios.get('https://api.themoviedb.org/3/movie/'+movieId+'?api_key=ca5d667528ca51e527d9e4f7830d97d2&include_adult=false')
52 | .then((response) =>{
53 | console.log(response);
54 | let movie = response.data;
55 | let output =`
56 |
57 |
58 |
59 |
60 |
61 |
62 |
${movie.original_title}
63 |
64 |
65 | Released: ${movie.release_date}
66 | Rated: ${movie.vote_average} / 10
67 | Tagline: ${movie.tagline}
68 |
69 |
70 |
71 |
72 |
81 |
82 |
87 |
88 |
89 | `;
90 | $('#movie').html(output);
91 | })
92 | .catch((err) =>{
93 | console.log(err);
94 | });
95 |
96 | }
97 |
--------------------------------------------------------------------------------
/singleMovie.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
StreamIt
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
StreamIt
34 |
35 | Menu
36 |
37 |
38 |
57 |
58 |
59 |
60 |
61 |
66 |
67 |
68 |
69 |
70 |
71 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018
72 |
73 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/singleTv.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
StreamIt
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
StreamIt
36 |
37 | Menu
38 |
39 |
40 |
59 |
60 |
61 |
62 |
63 |
68 |
69 |
70 |
71 |
72 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018
73 |
74 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
102 |
103 |
104 |
--------------------------------------------------------------------------------
/tv.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
StreamIt
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
StreamIt
34 |
35 | Menu
36 |
37 |
38 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
Search for any Show
66 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018
89 |
90 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/wp-content/themes/Dooplay/inc/parts/single/player_videospider.php:
--------------------------------------------------------------------------------
1 | ID, 'repeatable_fields', true);
17 | $reports = get_post_meta($post->ID, 'numreport', true);
18 | $views = dt_get_meta('dt_views_count');
19 | $light = get_option('dt_player_luces','true');
20 | $report = get_option('dt_player_report','true');
21 | $ads = get_option('dt_player_ads','not');
22 | $qual = get_option('dt_player_quality','true');
23 | $viewsc = get_option('dt_player_views','true');
24 | $clic = get_option('dt_player_ads_hide_clic','true');
25 | $time = get_option('dt_player_ads_time','20');
26 | $ads_300 = get_option('dt_player_ads_300');
27 | $page = get_option('dt_jwplayer_page');
28 | $gdrivepage = get_option('dt_jwplayer_page_gdrive');
29 | // Player
30 | ?>
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | '. stripslashes($ads_300). '
'; endif; ?>
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | < class="metaframe rptss" src="" frameborder="0" scrolling="no" allowfullscreen>
53 |
54 |
55 |
56 | < class="metaframe rptss" src="ID; ?>" frameborder="0" scrolling="no" allowfullscreen>
57 |
58 |
59 |
60 | < class="metaframe rptss" src="ID; ?>" frameborder="0" scrolling="no" allowfullscreen>
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
89 |
90 | ID, 'dtquality'))) { ?>
91 | ID, 'dtquality'))) { ?>
92 |
93 |
'. comvert_number($views) .' '. __d('Views') .''; } endif; ?>
94 |
95 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------