Roles

These are the roles that are needed:

  • Admin

iconik Edge Transcoder on CentOS 7

This section contains everything you need to know about installing and managing the iconik Edge Transcoder

1. Download and install the iconik Edge Transcoder

Set up the iconik Yum repository, and install the iconik Edge Transcoder RPM

cd /etc/yum.repos.d
sudo wget https://packages.iconik.io/rpm/7/iconik.repo
sudo yum install iconik_edge_transcoder

For local transcoding to work you will have to install ffmpeg, poppler and ImageMagick. Make sure they are in the path for the user running the service.

Below is one way of doing so, but please do not use on a production setup without checking compatibility with other software:

sudo yum install epel-release -y
sudo yum update -y
sudo rpm -Uvh https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
sudo yum install ffmpeg ffmpeg-devel ImageMagick poppler-utils ghostscript ufraw perl-Image-ExifTool -y

Alternatively, you can download a static build of ffmpeg which doesn't require any additional libraries. This is available from https://johnvansickle.com/ffmpeg/

To get frame accurate playback in other browsers than Safari you also need mp4mux from Bento4

You can download binaries from https://www.bento4.com/downloads/ but the latest version does not work properly on CentOS 7. Please use the version available at http://zebulon.bok.net/Bento4/binaries/Bento4-SDK-1-5-1-628.x86_64-unknown-linux.zip instead.

Unpack the correct package, and copy the mp4mux binary to /usr/local/bin

To write xmp metadata which can be used in our adobe integration to the proxy files you need Exiftool

sudo yum install perl-Image-ExifTool

2. Edit config.ini

Edit /etc/iconik/iconik_edge_transcoder/config.ini to look like this (See Setting up how to get the correct values)

[main]

app-id = 22f34c6e-268e-11e7-ac53-6c4008b85488
iconik-url = https://app.iconik.io/
auth-token = eyJhbGciOiJIUzI1NiIsImlhdCI6MTUwMTU3NjAyNCwiZXhwIjoxNTAxNjE5MjI0fQ.eyJpZCI6IjMzMjFkMjIyLTc2OTMtMTFlNy1hN2EyLTAyNDIwYTAyMTAxYSJ9.sgag4OQb19J9qT1IAdKZYAqbpIoai7oW60Mahye7o8s
sleep-time = 10
max-transcoding-jobs = 4
log-filename = /var/log/iconik/iconik_edge_transcoder/default.log
use-file-cache-proxy = true
session-timeout = 60
image-magick-config = /etc/iconik/iconik_edge_transcoder/image_magick_config

3. Start caching proxy service (Optional)

Using the caching proxy can significantly increase performance in some transcoding scenarios. To use it the service must be running.

sudo systemctl enable iconik_file_cache
sudo systemctl start iconik_file_cache   

Make sure the setting is enabled in config.ini, see Advanced options

4. Start the service

Iconik Edge Transcoder will add a system user called iconik that will be used to run systemd service. The iconik user must have permissions to read/write the storage mount point folder and it contents. You can add the iconik user to a group to manage permissions on group level instead.

After installation you can start service with:

sudo systemctl enable iconik_edge_transcoder
sudo systemctl start iconik_edge_transcoder

This will create the Transcoder in iconik the first time you start it. You have to add this transcoder to the corresponding storages in the iconik UI for it to work.

Add the Transcoder's id to the configuration file as transcoder-id attribute. You find this in the URL when you are editing the transcoder in the format 6f9c5e54-fb9f-11e7-8152-0a580a000240 or in the transcoder list as a button you can click to copy.

To check status of the service use:

sudo systemctl status iconik_edge_transcoder

For following the log file, you can use the following command:

sudo tail -f /var/log/iconik/iconik_edge_transcoder/default.log

You can run also run the systemd service from your custom user by providing an override (sudo systemctl edit iconik_edge_transcoder.service) passing your own config and log files that are accessible for your custom user. Log file location can also be set in config.

[Service]
User=john
Group=john

ExecStart=/usr/bin/iconik_edge_transcoder --config=/home/john/iconik_edge_transcoder/config.ini --log-filename=/home/john/iconik_edge_transcoder/default.log

After adding your custom user you need to restart service.

sudo systemctl daemon-reload
sudo systemctl restart iconik_edge_transcoder

Installation guides per platform:

More information for Administrators