Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - donpaul3

Pages: [1]
1
I'm very interested Andrew.

2
Developers / Re: First test of Dianemo 10.10 to Dianemo 11.04 upgrade
« on: August 25, 2011, 08:06:50 pm »
We have no plans in that area at all.

However we do offer Dianemo S10.10 which is an affordable install/support option for your own hardware. See the link in my footer below for details.

All the best

Andrew

And it's worth every penny! Great support and great communication.

3
Users / Re: lmce-autotagger ?
« on: August 18, 2011, 10:22:54 pm »
I creating my own auto-tag script for TV shows that has been working great. Metadata from TV episodes is in an NFO file and I parse that for details. When I tag shows, I put the show name and the episode as the title and it works out perfectly (Dexter - s02e06).

Code: [Select]
#!/bin/bash

for each in public user_2 user_1 user_5
do

cd "/home/$each/data/videos/TV"

find . -mtime -1| egrep -e 'avi|mkv|xvid|ts|m2ts' | grep -v id3 | while read "files"
do
file=`echo "$files" | cut -f2 -d"/"`
name=`echo "$files" | cut -f4 -d"/" | cut -f1 -d"."`
nfo=`echo "$files" | cut -f1-2 -d"."`
title=`cat "$nfo.nfo" | grep title | cut -f2 -d">" | cut -f1 -d"<"`
aired=`cat "$nfo.nfo" | grep aired | cut -f2 -d">" | cut -f1 -d"<"`
rm "$files.id3"
touch "$files.id3"
id3v2 --TIT2 "$name - $title" "$files.id3"
id3v2 --TYER "$aired" "$files.id3"
eyeD3 --add-image="./$file/folder.jpg":OTHER "$files.id3"
done

done

I used your autotagger to tag a new series of shows, and I loved the result. The only problem is that I have no idea in which order to watch the shows!

4
Users / Re: lmce-autotagger ?
« on: August 18, 2011, 03:52:46 pm »
Is it possible to put the episode number (s03e11) in the title of the shows? It is difficult to look at the list of shows and know which episode is next.

5
Users / Re: lmce-autotagger ?
« on: August 18, 2011, 03:21:04 pm »
Would the lmce-autotagger work with Dianemo 10.10? I am using Dianemo which currently doesn't have IMDB tagging or functional Amazon. Would love to use autotagger.

I will answer my own question - YES, autotagger works on Dianemo 10.10. First try and flawless. Great job! PM me a Paypal address for donation!

6
Users / Re: 710,810,1004 or what?
« on: August 18, 2011, 02:58:36 pm »
I'll jump in here... we will have updated MythTV & FreePBX/Asterisk packages in coming weeks that will allow users of Dianemo S10.10 to replicate what they can on LinuxMCE while still delivering the unique Dianemo features like uPnP etc. We are also hoping to have the Gyration support re-instated too in the same time frame.

I think the above are the main areas where we have some work to do to if you want to match LinuxMCE features.

All the best


Andrew

That's correct, and I have been extremely impressed with the Andrew's support and knowledge! I can't wait for the new features (neither can the wife and kids!). The only other biggies I see lacking is VDPAU and media tagging (only Amazon is available and it isn't returning any results at the moment).

I will add that the Dianemo install and update process is flawless, and Dianemo is very stable. I have yet to use the uPnP features of Dianemo but am very much looking forward to it.

7
Users / Re: lmce-autotagger ?
« on: August 18, 2011, 02:52:52 pm »
Would the lmce-autotagger work with Dianemo 10.10? I am using Dianemo which currently doesn't have IMDB tagging or functional Amazon. Would love to use autotagger.

8
Users / Re: 710,810,1004 or what?
« on: August 13, 2011, 09:31:20 pm »
Dianemo S10.10, but I do miss a lot of the LinuxMCE features that are not implemented in Dianemo yet. Keep up the great work!

9
Users / Re: Gyration remote doesn't work properly after update
« on: August 13, 2011, 09:30:08 pm »
I actually installed Dianemo S10.10, and there is no Gyration support there yet :(

Thanks for the quick fix anyway, Thom! Appreciated!

10
Users / Re: Gyration remote doesn't work properly after update
« on: August 07, 2011, 06:26:16 am »
I will try to fix this, this weekend.

-Thom

Thanks Thom! I just did a fresh install with the latest snapshot, and I'm looking forward to a remote again!

11
Users / Re: Gyration remote doesn't work properly after update
« on: August 05, 2011, 05:58:34 pm »
Another thing to check is /etc/X11/xorg.conf under the section "ServerFlags" to see if the option "AutoAddDevices" is set to "False". I've included my xorg file for reference - see the last line.

John

I actually had about 30 of those options. I removed all but 1.

12
Users / Gyration remote doesn't work properly after update
« on: July 31, 2011, 10:36:48 pm »
I updated my core, updated my MD, and now my gyration remote does not work properly. The only working functions are the mouse, the direction buttons, and the green button. I can use the stop button to turn the volume down, and the rewind button the turn volume up, but I can't bring up the menu or use any media controls. I have been working on it all day. Anyone have any ideas?

Pages: [1]