PHP code example of hsnfirdaus / subscene-sdk
1. Go to this page and download the library: Download hsnfirdaus/subscene-sdk library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hsnfirdaus / subscene-sdk example snippets
$subscene = new Hsnfirdaus\Subscene();
$search = $subscene->search($query);
print_r($search->getArray());
Array
(
[type] => SEARCH
[info] => Array
(
[search_query] => ncis
)
[result] => Array
(
[0] => Array
(
[permalink] => ncis-los-angeles-twelfth-season
[title] => NCIS: Los Angeles - Twelfth Season
[year] =>
[count] => 27
[in_heading] => TV-Series
[season] => 12
)
[1] => Array
(
[permalink] => ncis-new-orleans-seventh-season
[title] => NCIS: New Orleans - Seventh Season
[year] =>
[count] => 11
[in_heading] => TV-Series
[season] => 7
)
[2] => Array
(
[permalink] => ncis-eighteenth-season
[title] => NCIS: Naval Criminal Investigative Service (Navy CIS) - Eighteenth Season
[year] =>
[count] => 37
[in_heading] => TV-Series
[season] => 18
)
)
)
$subscene = new Hsnfirdaus\Subscene();
$listSubtitle = $subscene->listSubtitle($permalink);
print_r($listSubtitle->getArray());
Array
(
[type] => LIST_SUBTITLE
[info] => Array
(
[permalink] => ncis-eighteenth-season
[title] => NCIS: Naval Criminal Investigative Service (Navy CIS) - Eighteenth Season
[year] => 2020
[poster] => https://i.jeded.com/i/ncis-eighteenth-season.196526.jpg
[imdb_id] => tt0364845
)
[result] => Array
(
[0] => Array
(
[id] => 2391386
[language] => Array
(
[code] => english
[name] => English
)
[rate] => positive
[name] => NCIS.S18E07.WEBRip.x264-ION10
[hearing_impaired] => 1
[user] => Array
(
[id] => 1068258
[name] => M_I_S
)
[comment] => Hi:WebRip/WebDl:Duration : 43 min 14 s
)
[1] => Array
(
[id] => 2391385
[language] => Array
(
[code] => english
[name] => English
)
[rate] => positive
[name] => NCIS.S18E07.WEBRip.x264-ION10
[hearing_impaired] =>
[user] => Array
(
[id] => 1068258
[name] => M_I_S
)
[comment] => Non Hi:WebRip/WebDl:Duration : 43 min 14 s
)
[2] => Array
(
[id] => 2391412
[language] => Array
(
[code] => english
[name] => English
)
[rate] => neutral
[name] => NCIS.S18E07.The.First.Day.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb
[hearing_impaired] =>
[user] => Array
(
[id] => 1358973
[name] => SoftSpotForBoobies
)
[comment] => A Amazon Original Subtitle
)
[3] => Array
(
[id] => 2391412
[language] => Array
(
[code] => english
[name] => English
)
[rate] => neutral
[name] => NCIS.S18E07.The.First.Day.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb
[hearing_impaired] =>
[user] => Array
(
[id] => 1358973
[name] => SoftSpotForBoobies
)
[comment] => A Amazon Original Subtitle
)
)
)
$subscene = new Hsnfirdaus\Subscene();
$getSubtitle = $subscene->getSubtitle($permalink,$lang_code,$id)
print_r($getSubtitle->getArray());
Array
(
[type] => GET_SUBTITLE
[info] => Array
(
[permalink] => ncis-eighteenth-season
[language] => Array
(
[code] => english
[name] => English
)
[id] => 2391412
[poster] => https://i.jeded.com/i/ncis-eighteenth-season.196526.jpg
[title] => NCIS: Naval Criminal Investigative Service (Navy CIS) - Eighteenth Season
[imdb_id] => tt0364845
[release_list] => Array
(
[0] => NCIS.S18E07.The.First.Day.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb
[1] => NCIS.S18E07.The.First.Day.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb
)
[user] => Array
(
[id] => 0
[name] => Anonymous
)
[comment] => A Amazon Original Subtitle
)
[result] => Array
(
[preview] => 1<br />00:00:05,135 --> 00:00:08,269<br />You know what 4:00 a.m.<br />in February feels like, Ronnie?<br /><br />2<br />00:00:08,312 --> 00:00:11,924<br />And I'm out here chasing a cat<br />in a coal mine.<br /><br />3<br />00:00:11,968 --> 00:00:14,144<br />RONNIE:<br />All I do is take the info down,<br />pass it along.<br /><br />4<br />00:00:14,188 --> 00:00:17,234<br />Well, next time, verify the GPS.<br /><br />5<br />00:00:17,278 --> 00:00:20,759<br />
[details] => Array
(
[online] => 2/10/2021 8:16 AM 1 days ago
[hearing_impaired] => No
[foreign_parts] => No
[framerate] => Not available
[files] => 1 (26,329 bytes)
[production_type] => From retail
[release_type] => Web
[ratings] => Array
(
[score] => 0
[of] => 0
[total_user] => 0
)
[total_download] => 156
)
[download_link] => https://subscene.com/subtitles/english-text/eEahuEBLjo_jAxOXb7uqIn-HDlNNckpyomovJYazgItv0-TbEJV0AwOdhVnI6NAAGwpKKQV7E1miRitP2gZSPwa9_WM8qD0dd9SgZ53iud-8nZfvXYMEPdFuZcot43gw0
)
)
$subscene = new Hsnfirdaus\Subscene();
$listSubtitle=$subscene->listSubtitle('ncis-eighteenth-season');
$filter = $listSubtitle->smartFilterSeries($language,$primary_type,$option);
print_r($search->getArray());
$listSubtitle=$subscene->listSubtitle('ncis-eighteenth-season');
$filter=$listSubtitle->smartFilterSeries('english',['amzn','web'],[
'start_episode'=>1,
'end_episode'=>3,
'hearing_impaired'=>FALSE
]);
print_r($filter->getArray());
Array
(
[type] => SMART_FILTER_SERIES
[info] => Array
(
[permalink] => ncis-eighteenth-season
[title] => NCIS: Naval Criminal Investigative Service (Navy CIS) - Eighteenth Season
[year] => 2020
[poster] => https://i.jeded.com/i/ncis-eighteenth-season.196526.jpg
[imdb_id] => tt0364845
[season] => 18
[total_episode] => 2
[language] => english
[primary_type] => Array
(
[0] => amzn
[1] => web
)
[missing_episode] => Array
(
)
)
[result] => Array
(
[1] => Array
(
[id] => 2335928
[language] => Array
(
[code] => english
[name] => English
)
[rate] => positive
[name] => NCIS.S18E01.Sturgeon.Season.720p.AMZN.WEBRip.DDP5.1.x264-NTb.41 min 28
[hearing_impaired] =>
[user] => Array
(
[id] => 1068258
[name] => M_I_S
)
[comment] => Hi MRD :Official:WebRip&webDl:41:28
[season] => 18
[episode] => 01
)
[2] => Array
(
[id] => 2340604
[language] => Array
(
[code] => english
[name] => English
)
[rate] => positive
[name] => ncis.s18e02.1080p.web.h264-ggwp
[hearing_impaired] =>
[user] => Array
(
[id] => 1221159
[name] => class123
)
[comment] => class123
[season] => 18
[episode] => 02
)
[3] => Array
(
[id] => 2351225
[language] => Array
(
[code] => english
[name] => English
)
[rate] => neutral
[name] => NCIS.S18E03.iNTERNAL.1080p.WEB.h264-KOGi
[hearing_impaired] =>
[user] => Array
(
[id] => 1221159
[name] => class123
)
[comment] => class123
[season] => 18
[episode] => 03
)
)
)
$subscene = new Hsnfirdaus\Subscene();
$listSubtitle=$subscene->listSubtitle('ncis-eighteenth-season');
$filter=$listSubtitle->smartFilterSeries('english',['amzn','web'],[
'start_episode'=>1,
'end_episode'=>3,
'hearing_impaired'=>FALSE
]);
$download=$filter->smartDownloadSeries($folder_target,$name_format);
print_r($download->getArray());
$listSubtitle=$subscene->listSubtitle('ncis-eighteenth-season');
$filter=$listSubtitle->smartFilterSeries('english',['amzn','web'],[
'start_episode'=>1,
'end_episode'=>3,
'hearing_impaired'=>FALSE
]);
$download=$filter->smartDownloadSeries(__DIR__,'NCIS - S%sE%s');
print_r($filter->getArray());
Array
(
[type] => SMART_DOWNLOAD_SERIES
[info] => Array
(
[permalink] => ncis-eighteenth-season
[title] => NCIS: Naval Criminal Investigative Service (Navy CIS) - Eighteenth Season
[year] => 2020
[poster] => https://i.jeded.com/i/ncis-eighteenth-season.196526.jpg
[imdb_id] => tt0364845
[season] => 18
[total_episode] => 2
[language] => english
[primary_type] => Array
(
[0] => amzn
[1] => web
)
[missing_episode] => Array
(
)
)
[result] => Array
(
[folder_target] => /htdocs/subtitle
[file_failed] => Array
(
)
[file_saved] => Array
(
[0] => NCIS - S18E01.srt
[1] => NCIS - S18E02.srt
[2] => NCIS - S18E03.srt
)
)
)