1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
# QNapi [](https://travis-ci.org/QNapi/qnapi) [](https://ci.appveyor.com/project/krzemin/qnapi/branch/master) [](https://github.com/QNapi/qnapi/releases) [](https://qnapi.github.io/#download)
QNapi is free software for automatic fetching subtitles for given movie file.
It uses online databases such as NapiProjekt, OpenSubtitles and Napisy24.
It is based on Qt5 library, so it can be launched on any supported operating
system, including Windows, OSX and Linux.
## Binary packages
Latest binary packages are available at http://qnapi.github.io/#download
## Building from source
#### Prerequisites
* C++ compiler with c++11 support installed (`clang++`, `g++` or *MinGW* for Windows), present in `PATH`
* Qt 5.2+ (most recent 5.x recommended) installed with `qmake` present in `PATH` (you can find one at http://www.qt.io/download-open-source/)
#### Binary prerequisites
QNapi requires these binary dependencies:
* p7zip (7z, 7za) - to unpack subtitles, which are commonly compressed with 7zip
* libmediainfo - to retrieve movie info such as dimensions, duration and frame rate
Linux/UNIX users can find these dependencies in separate packages.
Statically compiled **p7zip** binaries are provided in this repository for Windows/OSX
users at `win32/content/7za.exe` and `macx/content/7za`, respectively. Similarly,
compiled **libmediainfo** libraries are provided for Windows/OSX in
`deps/libmediainfo/`.
> **WARNING!** Precompiled binaries are stripped from the source archive!
#### Cloning the source code
First, you have to clone project source code using git client:
`$ git clone --recursive https://github.com/QNapi/qnapi.git`
#### Compiling
To compile the application, you have to execute two following commands in `qnapi` root directory:
`$ qmake`
This will produce `Makefile`.
`$ make` (or `mingw32-make` on Windows)
This will compile the sources and build executable binary (or app bundle on OSX).
> **Important!** Windows users have to execute one more command:
>
> `$ make install` (or `mingw32-make install`)
>
> This one will copy all binaries, libraries and other dependencies to `win32/out` directory.
#### Running
By default, output binaries are placed by `make` in different locations, depending on your operating system:
* Linux - `qnapi` in root project directory
* OSX - `macx/QNapi.app` bundle
* Windows - `win32/out/qnapi.exe` executable
After you locate your binaries, you can run the application.
> ##### 7zip note #####
> For proper subtitle extraction after download, *7zip* executable is required to be passed in application's settings.
> Linux users have to install 7zip binary package from distribution repositories or compile on its own.
> For Windows and OSX there are pre-built binaries included in this repository, in `win32` and `macx` directories appropriately and should be automatically detected by the application.
## Making redistributable package
### OSX
#### Prerequisites
You need `appdmg` script installed. You can found it at https://github.com/LinusU/node-appdmg
#### Building .dmg image
To build .dmg image for OSX with nice, drag&drop installer, you have to execute:
`$ make appdmg`
`QNapi-x.y.z.dmg` will appear in `macx` directory when command is completed.
### Windows
#### Prerequisites
You need to have **NSIS** 2.x installed. You can found it at http://nsis.sourceforge.net
Also, you will need to manually install NSIS plugin **nsProcess**. It can be found at
http://nsis.sourceforge.net/NsProcess_plugin
#### Building Windows installer
Installer script is placed at `win32/QNapi-setup.nsi`. You can build binary exe package using NSIS user interface (by `right mouse button -> compile NSIS script`) or from command line:
`$ C:\Path\To\makensis.exe QNapi-setup.nsi`
After a while, `QNapi-x.y.z-setup.exe` file will appear in `win32` directory.
|