http://www.longtailvideo.com/support/jw ... at-supportAccording to JW's documentation the player should support ogg playback. I use ogg on my android phone and would love to get it to work on the desktop player so that I could use ogg instead of mp3 for both environments.
I use:
ffmpeg -v 0 -i %s -f ogg -vn -acodec libvorbis -ar 44100 -aq 3 -ac 2 -map_meta_data 0:0 -
for mobile output, which works great on Android phones, but won't play on the desktop web player.
Here's the log output from a test:
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Duration: 00:02:20.67, start: 0.000000, bitrate: 128 kb/s
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Stream #0.0: Audio: mp3, 44100 Hz, 1 channels, s16, 128 kb/s
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Output #0, ogg, to 'pipe:':
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Metadata:
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz TRM Id: d0898d61-586b-40a3-808a-9c3d551742ad
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz Artist Id: b59ac58d-036e-4bba-8112-c32a34c4575b
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz Album Id: db845e6c-35ae-473c-bd8b-d652cc164127
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz Album Type: compilation
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz Album Status: official
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) MusicBrainz Album Artist Id:
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) artist : Jerry Lee Lewis
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) album : Greatest Hits
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) TPE2 : Jerry Lee Lewis
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) title : Good Golly Miss Molly
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) track : 08
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) genre : Oldies
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Stream #0.0: Audio: vorbis, 44100 Hz, 2 channels, s16, 64 kb/s
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Stream mapping:
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Stream #0.0 -> #0.0
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Press [q] to stop encoding
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) [mp3 @ 014a91f0]Header missing
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) Error while decoding stream #0.0[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) size= 1540kB time=135.08 bitrate= 93.4kbits/s
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg)
[12/12/13 7:44:53 AM EST] DEBUG InputStreamReaderThread (c:\subsonic\transcode\ffmpeg) video:0kB audio:1350kB global headers:4kB muxing overhead 13.747113%
Currently I run a separate site just to service mobile use, otherwise a new user would get the mp3 default encoding when a new player was initiated. If I could get ogg to work on the desktop player i could consolidate to one site for both environments as I prefer ogg over mp3 anyway for it's efficiency and quality.