Skip to content

Torrent TV with ACE Stream using

Volodymyr Huz edited this page Dec 16, 2019 · 3 revisions

Install and Configure ACE Stream service to watch torrent TV on any device in your home network.

sudo tar -C /opt -xzf acestream_3.1.50_Py2.7.16+_LinaroNDK_webUI_ARMv7.tar.gz

Optionally you can enter your Ace Stream account settings

sudo nano /opt/acestream.engine/androidfs/acestream.engine/acestream.conf

--login
enter your email hear
--password
enter your password here
--access-token
anytoken

Configure Ace Stream work as daemon service and start on boot

sudo nano /etc/systemd/system/acestream.service

[Unit]
Description=Acestream Service
After=network.target

[Service]
Type=simple
ExecStart=/opt/acestream.engine/acestream.start
ExecStop=/opt/acestream.engine/acestream.stop
Restart=on-abort

[Install]
WantedBy=multi-user.target
sudo systemctl enable acestream
sudo systemctl start acestream
sudo systemctl status acestream

AceStream Web Interface url - http://192.168.1.100:6878/webui/app/ReplaceMe/server, my Raspberry Pi has 192.168.1.100 local network address, you need to use your own.

Clone this wiki locally