So here's my problem...
Currently I'm using the default transcoding for jwplayer & flash:
ffmpeg -ss %o -i %s -async 1 -b %bk -s %wx%h -ar 44100 -ac 2 -v 0 -f flv -vcodec libx264 -preset superfast -threads 0 -
Using the above I can stream over IE9 and Chrome no problem.... but it doesn't work on my Android using DSUB app....
So I switch to this transcoding:
ffmpeg -ss %o -t %d -i %s -async 1 -vf lutyuv=y=val*1.3 -b %bk -s %wx%h -ar 44100 -ac 2 -v 0 -f webm -vcodec libvpx -preset superfast -acodec libvorbis -threads 0 -
Well now it works for DSUB beautifully, but I get an error in IE9 and Chrome "access denied or file not found"
Other things you should know:
Windows 7 / Windows version of subsonic 4.8
My goal is to be able to support BOTH sides of this, in a browser (IE9 chrome / both) and as well be able to stream to my Android devices.
Thank you in advance for any help accomplishing this, it's greatly appreciated!
I"m not the sharpest on this topic, but I can follow directions well <grin>