Samo Gabrovec
Samo Gabrovec
It looks like it's related to the pipe file / and reading it with ffmpeg. Since it runs (bmdcapture) into /dev/null for quite some time now. CPU is not a...
I'll test it tomorrow at work, @home it doest work since there's a bug in php 5.3.10 - stream_get_line(); And thanks for quick answer.
Do you know how tuples are sent to an php bolt ? Is it like tail -f file | php bolt.php ? Since when I'm trying to debug the bolt...
**.withIsOngoing(true)** ``` MediaPlaylist mediaPlaylist = new MediaPlaylist.Builder() .withMediaSequenceNumber(this.seqnum) .withTargetDuration((int)Math.ceil(maxDuration)) .withTracks(tracks) .withIsOngoing(true) .build(); ```
Ok, so .. keyformat and keyformatversion as default values work, I just had from media sequence and IV was wrong. but the question remains on how to have multiple keys...
@tagesjump bump
When i started the hdfs framework it makes 3 journal nodes. In my case it happened that one of those nodes could not download the tgz package (network issue) and...
Martin, I know it isn’t but all I wanted was some suggestions on how to achieve this. > On 22 Oct 2014, at 10:55, Martin Bonnin [email protected] wrote: > >...
Christian, exactly that. I know how to change the duration even if the current playlist is only holding X chunks (in my case 5). This can be done in PlayerControl.java...
What i did right now (in FullPlayerActivity) is when seek is called I releasePlayer(); and call preparePlayer() with different url. It works but's ugly.