nicovideo-translator: Nico Nico Douga (ニコニコ動画) Comment Translator

[ agpl, library, program, translation ] [ Propose Tags ]

Translate comments (written in Japanese) on Nico Nico Douga (ニコニコ動画) to your language.

See also README.md for more details.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.2.0.0, 0.3.0.0
Dependencies aeson (>=0.11.2.1 && <1.1.0.0), async (>=2.1.0 && <2.2.0), base (>=4.9.0.0 && <4.10.0.0), bytestring (>=0.10.4.0 && <0.11.0.0), case-insensitive (>=1.2.0.0 && <1.3.0.0), cmdargs (>=0.10.12 && <0.11.0), containers, dns (>=2.0.0 && <2.1.0), http-client (>=0.5.6.1 && <0.6.0), http-types (>=0.9.0 && <0.10.0), iso639, lens (>=4.15 && <4.16), lens-aeson (>=1.0.0.5 && <1.1.0.0), nicovideo-translator, setlocale (>=1.0.0.2 && <1.1.0.0), text (>=1.1.0.0 && <1.3.0.0), text-format (>=0.3.1.1 && <0.4.0.0), unordered-containers, wai (>=3.2.1.1 && <3.3.0.0), warp (>=3.2.8 && <3.3.0), wreq (>=0.5.0.1 && <0.6.0.0), xml-conduit (>=1.4.0.3 && <1.5.0) [details]
License AGPL-3.0-only
Copyright (c) 2015–2016 Hong Minhee
Author Hong Minhee
Maintainer hong.minhee@gmail.com
Category Translation
Home page https://github.com/dahlia/nicovideo-translator
Bug tracker https://github.com/dahlia/nicovideo-translator/issues
Source repo head: git clone git://github.com/dahlia/nicovideo-translator.git
Uploaded by hongminhee at 2017-04-15T21:10:01Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables nicovideo-translator
Downloads 3153 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-04-15 [all 1 reports]

Readme for nicovideo-translator-0.3.0.0

[back to package description]

Nico Nico Douga (ニコニコ動画) Comment Translator

Build Status Docker Automated Build Hackage

Quick start using Docker

The official Docker image is provided:

$ docker pull dahlia/nicovideo-translator

You need to provide a required environment variable GOOGLE_TRANSLATE_API_KEY to use Google Translate API, and may want to set an optional environment variable LANG which means the target language. The exposed port number is 8080:

$ docker run \
    -e GOOGLE_TRANSLATE_API_KEY=EiP3NSgLid81OjSwpOMkgV0rzD9SLHRqwqUwx2r \
    -e LANG=ko \
    -p 80:8080 \
    dahlia/nicovideo-translator

Installation

You can install it using cabal:

$ cabal install nicovideo-translator

Aliasing nmsg.nicovideo.jp to localhost

To make the translator to intercept comments from Nico Nico comment server, you have to alias Nico Nico comment server domain (nmsg.nicovideo.jp) to your localhost (127.0.0.1). Open your hosts file using text editor (you probably need administrator permission), and then add the following line:

127.0.0.1    nmsg.nicovideo.jp

Proxy server

The translator behaves as a proxy server, so it has to be running while you watch Nico Nico videos. You can invoke the proxy server using CLI (you probably need administrator permission to listen 80 port):

$ nicovideo-translator EiP3NSgLid81OjSwpOMkgV0rzD9SLHRqwqUwx2r
Running on http://0.0.0.0:80/ (Press ^C to quit)
Upstream: nmsg.nicovideo.jp (202.248.110.173)

Note that it takes a Google Translate API key as its first argument.

You can terminate the server by pressing Ctrl-C.

It can optionally take the target language which is a two-letter e.g. en, ko through -l/--lang/--language option:

$ nicovideo-translator -l ko

Open source

It's written by Hong Minhee, and distributed under AGPLv3. You can find the source code from the Git repository:

$ git clone git://github.com/dahlia/nicovideo-translator

Please report bugs to the issue tracker if you find. Pull requests welcome!