View Single Post
daperl's Avatar
Posts: 2,427 | Thanked: 2,986 times | Joined on Dec 2007
#101
Originally Posted by zillertal View Post
Even with the current tradeoffs with transition speed etc the music still gets interrupted sometimes (one of the worst things seems to be if you have Jabber enabled for Facebook with a lot of contacts). Music should never be interrupted. Could the process priorities be changed somehow (safely) to force this?
Haven't played with this, but like at the "nice" value for the renderer plugin in:

/etc/X11/Xsession.post/32mafw

Code:
#!/bin/sh

if test -x /usr/sbin/dsmetool; then
	for plugin in /usr/lib/mafw-plugin/*.so; do
		# For uninstall to work, we must start them using just the
		# basename without '.so'.
		plugin="${plugin##*/}";
		plugin="${plugin%.so}";
                nice="";
                if test "x$plugin" = "xmafw-gst-renderer"; then
                    # Run the renderer with a nice value
                    nice="-7";
                fi
		sudo /usr/bin/mafw.sh start "$plugin" $nice &
        done
fi
__________________
N9: Go white or go home
 

The Following User Says Thank You to daperl For This Useful Post: