board.divers said the following, on 10.03.2008 12:39: > Duncan Webb wrote: > >> After the next release of Freevo I would like to get an idea of which >> areas in Freevo-1 need to be looked at for improvements. >> >> You can vote by following this link: >> http://www.doodle.ch/yp6maagr5kgagkk5 >> >> Looking forward to some feed back >> >> Duncan >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Freevo-users mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/freevo-users >> >> >> > I voted (nocrack) but the comments don't seems to work (java error ...) > so i post here my comment :D >
Funny worked for me... > I voted Music and Configuration. I'm quite tired to have to do all the > things with this so big config file ! The best way will be to have a > nice gui to configure all freevo. but to start, divide the config file > into some separated fies would be nice. (eg : general, music, TV, video, > ...). Like Apache, call each files on a main file would be the best way. > About the music : To my opinion, the main problem is the playlist > module. It's not realy user friendly ! To save the playlist is a good > things, but we have to choose the name of the playlist because after > that, we never remember which playlist is what. Anyway, to have a kind > of player with a add and a file search buttons instead of the actual > playlist (still with to possibility to save the playlist) would be > really great. (something like mythtv for the search button) . > Anyway, good luck to continue to improve this so nice soft :D > It's not really necessary to have a big config file, you can remove the comments: sed -i 's/#.*//' /etc/freevo/local_conf.py remove any trailing whitespace: sed -i 's/ *$//' /etc/freevo/local_conf.py remove any blank lines: sed -i '/^$/d' /etc/freevo/local_conf.py Tidy it up: /path/to/freevo/contrib/developer/reindent.py /etc/freevo/local_conf.py This should cut the file down quite a lot. The other way may be to split it into files and then in local_conf.py from audio_conf import * from audio_plugins import * from video_conf import * from video_plugins import * I haven't tried this yet but it was a suggestion on the tracker. Duncan ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
