Skip to main content
Skip table of contents

Howto remove scrolling title from the Exstreamer 110 display

Howto remove scrolling title from the Exstreamer 110 display:

To remove the scrolling stream and song title it is necessary to edit the ex110.ddf file. Please remove the following entries and keep the rest of the file as it is.

CODE
T(!p(s1));G(31);
# radio station name is present
F31:S(0,1,2,16,s1,3); 

Here the original file:

CODE
# print song name/channel nr/URL
F30:S(0,1,2,16,"",0);P("\033[1;0H");B(16);P("\033[1;0H");T(!p(s1));G(31);T(z(i6));G(34);T(m("channels.ini",i5));G(32);G(33);
# radio station name is present
F31:S(0,1,2,16,s1,3);
# channel number: channels.ini record exists -> print channel name
F32:M("channels.ini",i5);
# channel number (record does not exist)
F33:P("Channel ");I("03",i5);
# not channel based URL: print simply URL 1/2/3
F34:P("URL ");I("",i7);

The result should look like this:

CODE
# print channel nr or URL
F30:S(0,1,2,16,"",0);P("\033[1;0H");B(16);P("\033[1;0H");T(z(i6));G(34);T(m("channels.ini",i5));G(32);G(33);
# channel number: channels.ini record exists -> print channel name
F32:M("channels.ini",i5);
# channel number (record does not exist)
F33:P("Channel ");I("03",i5);
# not channel based URL: print simply URL 1/2/3
F34:P("URL ");I("",i7);

























JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.