CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9

admin

Администратор
Команда форума
Регистрация
30.09.2022
Сообщения
462
Реакции
84
That was What I did, But was not working until I access SSH and run cinemapress update.. Then Movies start to appear to my site

So After Run Update in SSH the problem is fixed.

But I still have Question. Does "Publication Settings" have limit? Why Do I see 100% and Why it not like in demo? Thanks

Посмотреть вложение 227
The demo site has 4 films without posters or titles.
Therefore, it is written 8495 / 8495 / 8499
8495 with posters and title. If you want to publish absolutely all films, check the box here.

1678174796246.png
 

admin

Администратор
Команда форума
Регистрация
30.09.2022
Сообщения
462
Реакции
84
Or do you need this menu?
1678174890423.png
 

admin

Администратор
Команда форума
Регистрация
30.09.2022
Сообщения
462
Реакции
84
It seems to me that you have too few films for this menu to appear.
 

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
Yes I need That Menu.. so I can set some number of movies to be uploaded per hour..

How can I get it?

I have also tried to make my own simple API to list movie info and I frame from my Database it use TMDB ID

Here is the demo URL:
My API result it like this


JSON:
{
    "title": "Undergods",
    "tmdbid": "714273",
    "iframe": "https:\/\/api.9animetv.live\/movie\/714273",
    "quality": "HD",
    "year": "2020"
}

How Can I set it to the Player? and make the Quality from API appear to site too? I really tried to understand how Play section work but I ddn't understand it well. Thanks

I have tried this but it still show trailer on site

https://api.9animetv.live/movie-api.php?id=[tmdb_id] ~ "MAIN" ~ 0.iframe

UPDATE: I changed format of my API it works fine now. Thanks..

Now I use this:
Код:
https://api.9animetv.live/movie-api.php?id=[tmdb_id] ~ "MAIN" ~ result.0.iframe

My API result now it like this

JSON:
{
    "result": [
        {
            "iframe": "https:\/\/api.9animetv.live\/movie\/714273",
            "title": "Undergods",
            "tmdbid": "714273",
            "quality": "HD",
            "year": "2020"
        }
    ]
}


But the problem is How can I grab quality from my API? and make Quality appear on website?
 
Последнее редактирование:

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
Hi, @admin I have my list of Movies by TMDB ID in JSON,

JSON Movies List: https://temp.9animetv.live/api.php

Which it look like this

JSON:
  "result": [
    548915,
    505031,
    28967,
    520928,
    441762,
    381418,
    61650,
    249457,
    535995,
    550023,
      and more.. and more.. and more..
        ]
}

How Can I use it to Import Movies on site..

I have Tried: This but I think I did it wrong because it not working

Код:
1 ~ https://temp.9animetv.live/api.php ~ result.0 ~ <> custom.tmdb_id ~ https://api.themoviedb.org/3/find/[tmdb_id]?language=en&external_source=imdb_id&api_key=25ae6e919c5b9ee9058e04b9987bd921 ~ movie_results.0.title <> title_en! <> 1 ~ movie_results.0.poster_path <> poster <> 1 ~ movie_results.0.id <> custom.tmdb_id <> 1 ~ "movie" <> type ~ movie_results.0.backdrop_path <> pictures <> 1 ~ movie_results.0.release_date <> premiere <> 1 ~ movie_results.0.overview <> description <> 1 ~ movie_results.0.vote_average <> rating <> 1 ~ movie_results.0.vote_count <> vote <> 1
 

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
Thanks Tried that why.. But Am not receiving any movie. I also try to modify my API to be like in Example but still not working for me

Here is my Modified API: https://list.goseries.org/list.php

The result is like this

Код:
{
  "results": [
    {
      "id": 548915
    },
    {
      "id": 505031
    },
    {
      "id": 28967
    },
    {
      "id": 520928
    },
    and more..  and more.. and more..
    }
      ]
}

But Still no working or may be I Configure it wrong

Here is how I set on my dashboard "add movie" section

Код:
1 ~ https://list.goseries.org/list.php ~ results.0.id <> custom.tmdb_id ~ https://api.themoviedb.org/3/tv/[tmdb_id]?language=en-US&append_to_response=credits,external_ids&api_key=25ae6e919c5b9ee9058e04b9987bd921 ~ external_ids.imdb_id <> custom.imdb_id ~ "tv" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ first_air_date <> premiere! ~ name <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ origin_country.0 <> country

Dashboard Screenshot

1678386504986.png

The Main Identifier for movies is set custom.tmdb_id
 

admin

Администратор
Команда форума
Регистрация
30.09.2022
Сообщения
462
Реакции
84
Код:
0 ~ https://list.goseries.org/list.php ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=25ae6e919c5b9ee9058e04b9987bd921 ~ external_ids.imdb_id <> custom.imdb_id ~ \"movie\" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

Должно быть вот так, но почему то не работает
 

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
Код:
0 ~ https://list.goseries.org/list.php ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=25ae6e919c5b9ee9058e04b9987bd921 ~ external_ids.imdb_id <> custom.imdb_id ~ \"movie\" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

It should be like this, but for some reason it doesn't work.
I have no idea why it not working, 😞... Let me continue doing tests, If I can notice what wrong
 

admin

Администратор
Команда форума
Регистрация
30.09.2022
Сообщения
462
Реакции
84
Задача наполовину решена, но не сохраняется tmdb_id. Может вы найдёте решение.


0 ~ https://list.goseries.org/list.php ~ results.0.id ~ https://api.themoviedb.org/3/movie/..._ids&api_key=af6887753365e14160254ac7f4345dd2 ~ results.0.id <> custom.tmdb_id ~ external_ids.imdb_id <> custom.imdb_id ~ \"movie\" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country
 

Вложения

  • Screenshot_20230310_005112_com.android.chrome.jpg
    Screenshot_20230310_005112_com.android.chrome.jpg
    254,1 КБ · Просмотры: 2

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
The task is half solved, but tmdb_id is not saved. Maybe you can find a solution.


0 ~ https://list.goseries.org/list.php ~ results.0.id ~ https://api.themoviedb.org/3/movie/..._ids&api_key=af6887753365e14160254ac7f4345dd2 ~ results.0.id <> custom.tmdb_id ~ external_ids.imdb_id <> custom.imdb_id ~ \"movie\" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country
Thanks much, This way it worked.. For tmdb_id it not a problem since the result it self it list tmdb id too.. So I put this
Код:
~ id <> custom.tmdb_id

Full Code

Код:
# --------------- MY MOVIES LIST (INFO) ---------------

1 ~ https://list.goseries.org/list.php ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=25ae6e919c5b9ee9058e04b9987bd921 ~ external_ids.imdb_id <> custom.imdb_id ~ id <> custom.tmdb_id ~ "movie" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

# --------------- POPULAR MOVIES ON TMDB (INFO) ---------------

1 ~ https://api.themoviedb.org/3/movie/popular?api_key=af6887753365e14160254ac7f4345dd2 ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "movie" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

# --------------- POPULAR TV ON TMDB (INFO) ---------------

1 ~ https://api.themoviedb.org/3/tv/popular?api_key=af6887753365e14160254ac7f4345dd2 ~ results.0.id ~ https://api.themoviedb.org/3/tv/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "tv" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ first_air_date <> premiere! ~ name <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ origin_country.0 <> country

# --------------- UPCOMING MOVIES ON TMDB (INFO) ---------------

1 ~ https://api.themoviedb.org/3/movie/upcoming?api_key=af6887753365e14160254ac7f4345dd2 ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "movie" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

# --------------- LAST MODIFIED MOVIES ON TMDB (INFO) ---------------

1 ~ lastmod_movie ~ custom.imdb_id ~ https://api.themoviedb.org/3/find/tt[imdb_id]?external_source=imdb_id&api_key=af6887753365e14160254ac7f4345dd2 ~ movie_results.0.id <> custom.tmdb_id <> 1

# --------------- LAST MODIFIED TV ON TMDB (INFO) ---------------

1 ~ lastmod_tv ~ custom.imdb_id ~ https://api.themoviedb.org/3/find/tt[imdb_id]?external_source=imdb_id&api_key=af6887753365e14160254ac7f4345dd2 ~ tv_results.0.id <> custom.tmdb_id <> 1

1 ~ lastmod_tv ~ custom.tmdb_id ~ https://api.themoviedb.org/3/tv/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "tv" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ first_air_date <> premiere ~ name <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ origin_country.0 <> country

# --------------- LAST MODIFIED MOVIES ON TMDB (INFO) ---------------

1 ~ lastmod_movie ~ custom.tmdb_id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "movie" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country

# --------------- POPULAR MOVIES UPTO PAGE 27 ON TMDB (INFO) ---------------

1 ~ https://api.themoviedb.org/3/movie/popular?api_key=af6887753365e14160254ac7f4345dd2&page=[page][27] ~ results.0.id ~ https://api.themoviedb.org/3/movie/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "movie" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ release_date <> premiere! ~ title <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ production_countries.0.iso_3166_1 <> country ~ vote_average <> rating ~ vote_count <> vote

# --------------- POPULAR TV UPTO PAGE 27 ON TMDB (INFO) ---------------

1 ~ https://api.themoviedb.org/3/tv/popular?api_key=af6887753365e14160254ac7f4345dd2&page=[page][27] ~ results.0.id ~ https://api.themoviedb.org/3/tv/[id]?language=en-US&append_to_response=credits,external_ids&api_key=af6887753365e14160254ac7f4345dd2 ~ external_ids.imdb_id <> custom.imdb_id ~ "tv" <> type ~ backdrop_path <> pictures ~ poster_path <> poster! ~ first_air_date <> premiere! ~ name <> title_en ~ overview <> description ~ genres.0.name <> genre ~ credits.cast.0.name <> actor <> 5 ~ credits.crew.0.name <> director <> 5 <> job == Director ~ origin_country.0 <> country ~ vote_average <> rating ~ vote_count <> vote

1 ~ lastmod_movie ~ custom.imdb_id ~ https://api.themoviedb.org/3/find/tt[imdb_id]?external_source=imdb_id&api_key=af6887753365e14160254ac7f4345dd2 ~ movie_results.0.id <> custom.tmdb_id <> 1

1 ~ lastmod_tv ~ custom.imdb_id ~ https://api.themoviedb.org/3/find/tt[imdb_id]?external_source=imdb_id&api_key=af6887753365e14160254ac7f4345dd2 ~ tv_results.0.id <> custom.tmdb_id <> 1

1 ~ https://datasets.imdbws.com/title.ratings.tsv.gz ~ ~ ~ tconst <> custom.imdb_id ~ averageRating <> imdb_rating ~ numVotes <> imdb_vote

720 ~ https://datasets.imdbws.com/title.ratings.tsv.gz ~ ~ ~ tconst <> custom.imdb_id ~ averageRating <> imdb_rating ~ numVotes <> imdb_vote

But I have this issue, imdb rating is not showing on site all movies and tv series shows imdb rating 0. How to fix it? Thanks
 

CoolestKid

Продвинутый пользователь
Регистрация
01.03.2023
Сообщения
99
Реакции
9
UPDATE: IMDB Votes start to show. It fixed now.. Thanks
 
Верх