Page 1 of 1
wma transcoding Ubuntu 10.04 & 9.10
Posted:
Tue Apr 20, 2010 11:02 am
by daniell
Running Ubuntu 10.04-9.10 /Tomcat6 /subsonic war, and still have problems to transcode wma and play files. Have tried absolute everything within this forum suggestions. It seems that the files is streams to the webplayer, but it don't starts play. Anybody have a solution !!
Posted:
Tue Apr 20, 2010 8:28 pm
by drifter
I got a similar setup and had the same problem and after going thru' most of the threads i got it working.
This is what I did. Unfortunately I can't find the original thread.
In /var/subsonic/transcode create a script called wma2mp3 and make it executable.
- Code: Select all
#!/bin/bash
ffmpeg -i "$1" -f wav -ab "$2" - 2>/dev/null | /var/subsonic/transcode/lame -b "$2" - -
#
copy
ffmpeg and
lame from /usr/bin to /var/subsonic/transcode
In Settings>Transcoding
wma > mp3 - wma - mp3 - wma2mp3 %s %b
wma & mpc, SKALLEBAAAAANK !!!!
Posted:
Wed Apr 21, 2010 5:50 am
by daniell
Thank's drifter. Your scrip work for some of the wma files, well, it's better than notting.. Thnks.
It seem that wma files with 160 Kbps and up will not play, maybe some more tuning needed ??
Same actual goes for the mpc files. It load's the file, but don't starts to play.. Anybody please!!
Posted:
Fri Apr 23, 2010 7:43 am
by daniell
Seem like most of my wma songs was corrupted,. I was not able to play them in any player at all.. Very strange, they where ok before..
Posted:
Mon May 03, 2010 8:20 pm
by drifter
I had similar issue with few of my wav files, but I can play them in other players. But subsonic plays my newly converted wav files. I got few wma files but all are in 128kbps. Mean time where did you get this wma files, I am not sure is it possible that they are protected some how?.
Posted:
Fri May 07, 2010 8:23 am
by daniell
I'll rip't them from Cd's with WMP. They are not playable in ANY player. It's only for the 160 kbps files who don't play..
Posted:
Mon May 24, 2010 7:55 am
by daniell
Seems like a wma license is missing, when i play the wma files with wmp, it says "Need to download license to play the file".. After that the files plays. But not in Subsonic.. Anybody pls.
Posted:
Sat Jul 31, 2010 10:59 am
by serond
drifter wrote:I got a similar setup and had the same problem and after going thru' most of the threads i got it working.
This is what I did. Unfortunately I can't find the original thread.
In /var/subsonic/transcode create a script called wma2mp3 and make it executable.
- Code: Select all
#!/bin/bash
ffmpeg -i "$1" -f wav -ab "$2" - 2>/dev/null | /var/subsonic/transcode/lame -b "$2" - -
#
copy
ffmpeg and
lame from /usr/bin to /var/subsonic/transcode
In Settings>Transcoding
wma > mp3 - wma - mp3 - wma2mp3 %s %b
This worked like a charm! Thanks