Page 1 of 4
Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Thu Oct 11, 2012 1:29 am
by MadEvil
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Thu Oct 11, 2012 7:30 pm
by Mnlmnv
thank you Madsonic, I am testing out the software, and it works great.
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Fri Oct 12, 2012 1:57 am
by Mnlmnv
OP,
It would be wonderful to have Video Subtitle added such as .srt format...
wonderful mods so far.
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 8:18 am
by MadEvil
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 8:48 am
by jonnymnemo
Hi Madevil !
Flac still doesn't work for me !
I had to revert to the previous deb.
I would be happy to help if you need more details.
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 10:13 am
by Ghizmo
Hi Mad,
Sadly, my Flac files doesn't work anymore on this version...
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 12:54 pm
by MadEvil
jonnymnemo wrote:Hi Madevil !
Flac still doesn't work for me !
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
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 1:20 pm
by GJ51
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
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 2:07 pm
by jonnymnemo
Works fine now, but I had to update the transcoding settings manually.
A sql script to update the settings would be awesome !
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 2:43 pm
by MadEvil
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
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Tue Oct 16, 2012 3:02 pm
by Ghizmo
Hi,
Can i ask you where is the db.view file on Debian OS ?
Oups, sorry... DB query on Subsonic interface...
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Wed Oct 17, 2012 4:15 am
by gurutech
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!
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Wed Oct 17, 2012 11:03 pm
by Mnlmnv
hi MadEvil,
I see two tables: transcoding, player_transcoding, do I need these tables?
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Thu Oct 18, 2012 10:33 am
by MadEvil
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=markupsince Version 4.6 this 2 tables are upgraded to
transcoding2,
player_transcoding2http://subsonic.svn.sourceforge.net/vie ... threv=3061you dont need this 2 tables anymore.
best regards
Re: Madsonic - Mashup Mod [ANNOUNCEMENTS]
Posted:
Thu Oct 18, 2012 11:18 am
by MadEvil
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
best regards