aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: c1c4c9807ce3326c7adf91eb18370b4a45f30039 (plain)
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
Viper Player for hICN

====================================================

This application is designed to provide a tool to test the adaptation video streaming using the hICN protocol stack.

Dependencies
------------

- ffmpeg
- libparc
- libhicntransport-dev
- Qt5.9
- QtAV

Build the dependencies
-----------------

- QtAV
For building and install the library, from the root folder of the projet:

```bash
 $ git clone https://github.com/wang-bin/QtAV
 $ cd QtAV
 $ mkdir build && cd build 
 $ qmake ../QtAV.pro
 $ make
 $ sh sdk_install.sh
``` 

- libdash
For building the player, from the root folder of the project:

```bash
 $ git clone -b viper/master https://gerrit.fd.io/r/cicn viper
 $ cd viper/libdash
 $ mkdir build && cd build 
 $ cmake ../
 $ make
 $ make install
``` 


Build the player
-----------------

For building the player, from the root folder of the project:
 
```bash
 $ cd viper
 $ mkdir build && cd build 
 $ qmake ../viper.pro "TRANSPORT_LIBRARY = HICNET"
 $ make
 $ ./viper
```


Platforms
---------

Viper has been tested in:

    - Ubuntu 18.04 (x86_64)