i'm looking few day for a solution to delay the stream to a higher value (such as 3 seconds)
But no luck.
If i look to the enigma2 source i see a file named filepush.cpp in /lib/base.
I found the code that delays the stream.
if (m_stream_mode) { eDebug("reached EOF, but we are in stream mode. delaying 1 second."); sleep(1); continue; } break;
I need to change it like this.
if (m_stream_mode) { eDebug("reached EOF, but we are in stream mode. delaying 3 second."); sleep(3); continue; } break;
Is it possible to change it inside the Dreambox or must i compile a new Enigma2
Kind regards,
Xerius