Yep, I also tested it on Mac OSX Safari and iOS Safari, but it was locally
running for me. Strange.

2015-12-23 8:44 GMT+01:00 Maxim Solodovnik <solomax...@gmail.com>:

> I have tested it on Mac OS X Safai and iOS Safari, both was working this
> way
> Safari is very strict in such things :(
>
> On Wed, Dec 23, 2015 at 1:41 PM, Tobias Soloschenko <
> tobiassolosche...@googlemail.com> wrote:
>
> > Yep I see you also add +1 to read the stream. I did it this way which I
> > think is wrong, because the last byte is inclusive:
> >
> >
> >
> https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/request/resource/PartWriterCallback.java#L144
> >
> > boundedInputStream = new BoundedInputStream(inputStream, endbyte -
> > startbyte);
> >
> > It should be this: boundedInputStream = new
> BoundedInputStream(inputStream,
> > (endbyte - startbyte)+1); to read the stream.
> >
> >
> > kind regards
> >
> > Tobias
> >
> > 2015-12-23 8:35 GMT+01:00 Maxim Solodovnik <solomax...@gmail.com>:
> >
> > > In my old code the following formula was used:
> > >
> > >
> >
> https://github.com/apache/openmeetings/blob/3.0.x/src/web/java/org/apache/openmeetings/web/util/RecordingResourceReference.java#L80
> > >
> > >
> > > On Wed, Dec 23, 2015 at 1:30 PM, Tobias Soloschenko <
> > > tobiassolosche...@googlemail.com> wrote:
> > >
> > > > This is only a guess, but I think the BoundedInputStream used
> > > > in org.apache.wicket.request.resource.PartWriterCallback is
> calculating
> > > the
> > > > size exclusively. If I write:
> > > >
> > > > boundedInputStream = new BoundedInputStream(inputStream, (endbyte -
> > > > startbyte)+1);
> > > >
> > > > 100 bytes are returned.
> > > >
> > > > WDYT?
> > > >
> > > > kind regards
> > > >
> > > > Tobias
> > > >
> > > >
> > > >
> > > > 2015-12-23 8:23 GMT+01:00 Maxim Solodovnik <solomax...@gmail.com>:
> > > >
> > > > > Actually the only issue I had with video playing was caused by
> > > incorrect
> > > > > calculation of *Ranges* :(
> > > > >
> > > > > On Wed, Dec 23, 2015 at 1:22 PM, Tobias Soloschenko <
> > > > > tobiassolosche...@googlemail.com> wrote:
> > > > >
> > > > > > Yep, on Chrome everything is playing well.
> > > > > >
> > > > > > Yesterday I found out that:
> > > > > >
> > > > > > curl --range 0-99
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> http://examples7x.wicket.apache.org/videos/wicket/resource/org.apache.wicket.examples.media.Home/video1-ver-538557E5F248D450160FC81033930591.mp4
> > > > > > -o /dev/null
> > > > > >
> > > > > > returns 99 bytes and not 100 as expected in this document:
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/CreatingVideoforSafarioniPhone/CreatingVideoforSafarioniPhone.html#//apple_ref/doc/uid/TP40006514-SW6
> > > > > >
> > > > > > But this:
> > > > > >
> > > > > > curl --range 0-99
> http://media.w3.org/2010/05/video/movie_300.mp4
> > -o
> > > > > > /dev/null
> > > > > >
> > > > > > returns 100 bytes.
> > > > > >
> > > > > > Maybe this is causing the issue. However locally it is playing
> > > without
> > > > > any
> > > > > > issues. That is what I am wondering of.
> > > > > >
> > > > > > kind regards
> > > > > >
> > > > > > Tobias
> > > > > >
> > > > > > 2015-12-23 8:15 GMT+01:00 Maxim Solodovnik <solomax...@gmail.com
> >:
> > > > > >
> > > > > > > Is it Safari only issue? Is everything OK with Chrome?
> > > > > > >
> > > > > > > On Wed, Dec 23, 2015 at 1:12 PM, Tobias Soloschenko <
> > > > > > > tobiassolosche...@googlemail.com> wrote:
> > > > > > >
> > > > > > > > Hi all,
> > > > > > > >
> > > > > > > > I tried out the video examples with Safari:
> > > > > > > > http://examples7x.wicket.apache.org/videos/ - The videos are
> > > only
> > > > > > > playing
> > > > > > > > sound.
> > > > > > > >
> > > > > > > > However if I play them on localhost (running the examples
> > > locally):
> > > > > > > > http://127.0.0.1:8080/videos/ - they are working.
> > > > > > > >
> > > > > > > > I don't know yet whats wrong, but I try to figure out these
> > days.
> > > > > > > >
> > > > > > > > kind regards
> > > > > > > >
> > > > > > > > Tobias
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > > WBR
> > > > > > > Maxim aka solomax
> > > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > WBR
> > > > > Maxim aka solomax
> > > > >
> > > >
> > >
> > >
> > >
> > > --
> > > WBR
> > > Maxim aka solomax
> > >
> >
>
>
>
> --
> WBR
> Maxim aka solomax
>

Reply via email to