doku-tagger

Tag german media library documentaries with country data.


Keywords
german, deutsche, welle, tv, srf, swr, mdr, arte, das, erste, ard, documentary, dokumentation, doku, countries, tag, media, library, mediathek, api-client, documentaries, germany, television
License
MIT
Install
npm install doku-tagger@1.1.1

Documentation

doku-tagger

Try to match meta data from documentaries fetched using the dokus module with country data.

npm version Build Status dependency status dev dependency status license chat on gitter

Usage

The module has a method all and a method for each media library supported by the dokus module like arte, mdr, etc… Each method returns a Promise which resolves in a list of objects representing single documentaries:

const dokus = require('doku-tagger')

dokus.all().then(…)

will resolve in a list of objects which look like this:

{
	title: '',
	description: '',
	tags: […],
	countries: [ 'eg' ], // list tagged countries (never empty)
	link: '', // media library url
	image: '', // thumbnail
	network: 'arte'
}

Similar Projects

  • dokus - Fetch documentary meta data from multiple german media libraries.
  • doku-karte - "German documentaries sorted by country and displayed on a map."
  • match-country-german - "Try to match given german country name with its ISO code."

Contributing

If you found a bug, want to propose a feature or feel the urge to complain about your life, feel free to visit the issues page.