diff --git a/sites/tapdmv.com/readme.md b/sites/tapdmv.com/readme.md new file mode 100644 index 00000000..4a5f455f --- /dev/null +++ b/sites/tapdmv.com/readme.md @@ -0,0 +1,21 @@ +# tapdmv.com + +https://tapdmv.com/Schedule/index.html + +### Download the guide + +```sh +npm run grab -- --site=tapdmv.com +``` + +### Update channel list + +```sh +npm run channels:parse -- --config=./sites/tapdmv.com/tapdmv.com.config.js --output=./sites/tapdmv.com/tapdmv.com.channels.xml +``` + +### Test + +```sh +npm test -- tapdmv.com +``` diff --git a/sites/tapdmv.com/tapdmv.com.channels.xml b/sites/tapdmv.com/tapdmv.com.channels.xml index ec171b72..54e4b771 100644 --- a/sites/tapdmv.com/tapdmv.com.channels.xml +++ b/sites/tapdmv.com/tapdmv.com.channels.xml @@ -1,32 +1,42 @@ - - - - - - - - - - - - - - - anc + asianfoodchannel - cinemaworld - edgesport kbsworld - knowledgechannel premierfootball - premiersports1 premiersports2 - tapactionflix - tapedge - tapmovies + premiersports1 + edgesport tapsports - taptv - teleradyo diff --git a/sites/tapdmv.com/tapdmv.com.config.js b/sites/tapdmv.com/tapdmv.com.config.js index 388ac657..c6edf436 100644 --- a/sites/tapdmv.com/tapdmv.com.config.js +++ b/sites/tapdmv.com/tapdmv.com.config.js @@ -4,6 +4,9 @@ const dayjs = require('dayjs') module.exports = { site: 'tapdmv.com', days: 2, + request: { + maxContentLength: 10485760 // 10 Mb + }, url({ channel, date }) { return `https://epg.tapdmv.com/calendar/${ channel.site_id diff --git a/sites/tapdmv.com/tapdmv.com.test.js b/sites/tapdmv.com/tapdmv.com.test.js index 27f05d64..54a7f6f6 100644 --- a/sites/tapdmv.com/tapdmv.com.test.js +++ b/sites/tapdmv.com/tapdmv.com.test.js @@ -1,6 +1,3 @@ -// npm run grab -- --site=tapdmv.com -// npm run channels:parse -- --config=./sites/tapdmv.com/tapdmv.com.config.js --output=./sites/tapdmv.com/tapdmv.com.channels.xml - const { parser, url } = require('./tapdmv.com.config.js') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc')