Madsonic - Mashup Mod [ANNOUNCEMENTS]

Madsonic Mashup Mod is a fork of the Subsonic 4.7 Server Build 3090 with some Subsonic Data schema modifications!

Moderator: moderators

Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby MadEvil » Thu Oct 11, 2012 1:29 am

Last edited by MadEvil on Fri Mar 08, 2013 3:21 am, edited 11 times in total.
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby Mnlmnv » Thu Oct 11, 2012 7:30 pm

thank you Madsonic, I am testing out the software, and it works great.
User avatar
Mnlmnv
 
Posts: 15
Joined: Thu Oct 11, 2012 4:06 pm

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby Mnlmnv » Fri Oct 12, 2012 1:57 am

OP,

It would be wonderful to have Video Subtitle added such as .srt format...

wonderful mods so far.
User avatar
Mnlmnv
 
Posts: 15
Joined: Thu Oct 11, 2012 4:06 pm


Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby jonnymnemo » Tue Oct 16, 2012 8:48 am

Hi Madevil !
Flac still doesn't work for me ! :cry:
I had to revert to the previous deb.
I would be happy to help if you need more details.
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby Ghizmo » Tue Oct 16, 2012 10:13 am

Hi Mad,

Sadly, my Flac files doesn't work anymore on this version...
Ghizmo
 
Posts: 9
Joined: Sat Jun 26, 2010 12:11 pm

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby MadEvil » Tue Oct 16, 2012 12:54 pm

jonnymnemo wrote:Hi Madevil !
Flac still doesn't work for me ! :cry:
I had to revert to the previous deb.
I would be happy to help if you need more details.


i hope i found the bug, because the dependency beetween transcoding and player is broken.

to fix this go to your db.view and insert the query below.

Code: Select all
delete from player_transcoding2;
insert into player_transcoding2(player_id, transcoding_id)
select distinct p.id, t.id from player p, transcoding2 t where t.name <> 'SubWiji';


After this all player/user should have there transcoding selection active and the transcoding should work.

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby GJ51 » Tue Oct 16, 2012 1:20 pm

I just dropped in 3158 and tested my flac album. Works fine on my setup.

Version 4.7 (build 3158) – October 16, 2012 – (Moded by MadEvil)
Server Apache Tomcat/6.0.35, java 1.7.0_05, Windows Server 2008 (167.5 MB / 237.9 MB)

http://webserver.subsonic.org/share/iMjWu
Gary J

http://bios-mods.com
http://www.maplegrovepartners.com
http://theaverageguy.tv/category/tagpodcasts/cyberfrontiers/
User avatar
GJ51
 
Posts: 3492
Joined: Wed Oct 20, 2010 11:58 pm
Location: Western New York

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby jonnymnemo » Tue Oct 16, 2012 2:07 pm

Works fine now, but I had to update the transcoding settings manually.
A sql script to update the settings would be awesome !
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby MadEvil » Tue Oct 16, 2012 2:43 pm

jonnymnemo wrote:Works fine now, but I had to update the transcoding settings manually.
A sql script to update the settings would be awesome !

Hi, sure its possible! Insert this SQL Script into db.view and execute it.

With this query you reset the transcoding incl. Player/transcoding-mapping to the madsonic B3158 Default!

Code: Select all
delete from transcoding2;
delete from player_transcoding2;
insert into transcoding2(name, source_formats, target_format, step1) values('mp3 audio','ogg oga aac m4a flac wav wma aif aiff ape mpc shn', 'mp3', 'Audioffmpeg -i %s -ab %bk -v 0 -f mp3 -');
insert into transcoding2(name, source_formats, target_format, step1) values('flv/h264 video', 'avi mpg mpeg mp4 m4v mkv mov wmv ogv divx m2ts', 'flv', '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 -');
insert into transcoding2(name, source_formats, target_format, step1) values('wtv video', 'wtv', 'flv', 'ffmpeg -ss %o -i %s -async 30 -b %bk -r 23-.976 -s %wx%h -ar 44100 -ac 2 -v 0 -f flv -vcodec libx264 -preset fast -threads 0 -');
insert into transcoding2(name, source_formats, target_format, step1) values('m4a/FLAC audio', 'm4a flac', 'mp3', 'Audioffmpeg -i %s -ab 320k -ar 44100 -ac 2 -v 0 -f mp3 -');
insert into transcoding2(name, source_formats, target_format, step1, default_active) values('SubWiji', 'mp3', 'mp3', 'Audioffmpeg -f mp3 -i %s -ab %bk -v 0 -f mp3 -', false);
insert into player_transcoding2(player_id, transcoding_id) select distinct p.id, t.id from player p, transcoding2 t where t.name <> 'SubWiji';


best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby Ghizmo » Tue Oct 16, 2012 3:02 pm

Hi,

Can i ask you where is the db.view file on Debian OS ?

Oups, sorry... DB query on Subsonic interface...
Ghizmo
 
Posts: 9
Joined: Sat Jun 26, 2010 12:11 pm

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby gurutech » Wed Oct 17, 2012 4:15 am

Holding off on the 3158 update, as I just upgraded (a few hours ago!) to 3155. The bug fixes and enhancements don't really apply to how I have my system set up, so I may just wait until the next release... Keep up the good work!
Image
gurutech
 
Posts: 492
Joined: Sun Jan 15, 2012 9:56 pm

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby Mnlmnv » Wed Oct 17, 2012 11:03 pm

hi MadEvil,

I see two tables: transcoding, player_transcoding, do I need these tables?
User avatar
Mnlmnv
 
Posts: 15
Joined: Thu Oct 11, 2012 4:06 pm

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby MadEvil » Thu Oct 18, 2012 10:33 am

Mnlmnv wrote:hi MadEvil,

I see two tables: transcoding, player_transcoding, do I need these tables?


Hi this comes from an older version

http://subsonic.svn.sourceforge.net/vie ... iew=markup

since Version 4.6 this 2 tables are upgraded to transcoding2, player_transcoding2

http://subsonic.svn.sourceforge.net/vie ... threv=3061

you dont need this 2 tables anymore.

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]

Postby MadEvil » Thu Oct 18, 2012 11:18 am

Mnlmnv wrote:OP,
It would be wonderful to have Video Subtitle added such as .srt format...
wonderful mods so far.


comes with the next builds. need more testing

Image

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Next

Return to Madsonic

Who is online

Users browsing this forum: No registered users and 23 guests