Cock Hero - Randomiser

Discussion about Cock Hero and other sexy videos.

Moderator: andyp

User avatar
THC_Hero
Curious Newbie
Curious Newbie
Posts: 2
Joined: Tue Aug 20, 2013 3:08 pm

Re: Cock Hero - Randomiser

Post by THC_Hero »

Awesome, thanks for posting the time codes kell42
User avatar
kell42
Explorer
Explorer
Posts: 35
Joined: Wed Sep 07, 2011 8:42 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Cock Hero - Randomiser

Post by kell42 »

Here are the time codes for Heavenly Bodies 2. Copy and paste into your CHDB.xml file, and enjoy!
Spoiler: show
<VIDEO>
<Filename>Cock Hero - Heavenly Bodies 2.mp4</Filename>
<Round>
<StartTime>00:01:09</StartTime>
<EndTime>00:06:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:06:13</StartTime>
<EndTime>00:10:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:10:14</StartTime>
<EndTime>00:14:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:49</StartTime>
<EndTime>00:19:07</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:08</StartTime>
<EndTime>00:24:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:24:13</StartTime>
<EndTime>00:28:01</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:02</StartTime>
<EndTime>00:31:50</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:31:51</StartTime>
<EndTime>00:35:51</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
User avatar
kell42
Explorer
Explorer
Posts: 35
Joined: Wed Sep 07, 2011 8:42 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Cock Hero - Randomiser

Post by kell42 »

Radically Restorative Randomizer Re-up!
(now with alliteration)

http://www27.zippyshare.com/v/43791979/file.html
User avatar
kell42
Explorer
Explorer
Posts: 35
Joined: Wed Sep 07, 2011 8:42 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Cock Hero - Randomiser

Post by kell42 »

Notepad works just fine for editing xml files. The problem is that you have to be extremely careful about formatting; a single < or / missing or in the wrong place, and the randomiser program simply won't run.

I use two programs; XML Notepad 2007 for troubleshooting, and Notepad++ for editing.

If the CHDB file isn't formatted correctly, XML Notepad 2007 will tell you what line the problem is on.

Notepad++ color codes bracketed sections to help you separate them, and the color codes change when a set of brackets is opened or closed. It also shows line numbers, which is extremely useful for fixing the problems you've identified with the other program.

I'd also like to point out that until I started messing around with this, my knowledge of xml coding was precisely zero. Everything I'm telling you, I figured out by copying other people's code, and trial and error.

Links to the programs I mentioned.

Notepad++
http://notepad-plus-plus.org/

XML Notepad 2007
http://www.microsoft.com/en-us/download ... px?id=7973
User avatar
kell42
Explorer
Explorer
Posts: 35
Joined: Wed Sep 07, 2011 8:42 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Cock Hero - Randomiser

Post by kell42 »

Ok, so to begin with, the a CHDB.xml file, at it's most basic looks like this.
Spoiler: show
<?xml version="1.0" encoding="utf-8" ?>
<CH>

</CH>
In XML, <> denotes the beginning of something, while </> signifies the end. What that means for us is that in the CHDB file, all of the rounds go in between <CH> and </CH>.

So, if I add a video (like Heavenly Bodies 2) I get something that looks like this.
Spoiler: show
<?xml version="1.0" encoding="utf-8" ?>
<CH>
<VIDEO>
<Filename>Cock Hero - Heavenly Bodies 2.mp4</Filename>
<Round>
<StartTime>00:01:09</StartTime>
<EndTime>00:06:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:06:13</StartTime>
<EndTime>00:10:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:10:14</StartTime>
<EndTime>00:14:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:49</StartTime>
<EndTime>00:19:07</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:08</StartTime>
<EndTime>00:24:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:24:13</StartTime>
<EndTime>00:28:01</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:02</StartTime>
<EndTime>00:31:50</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:31:51</StartTime>
<EndTime>00:35:51</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
</CH>
If I wanted to add another video, I would simply paste the time codes for it in between the </VIDEO> that shows the end of the Heavenly Bodies 2, and the </CH> that shows the end of the CHDB file.

Like This
Spoiler: show
<?xml version="1.0" encoding="utf-8" ?>
<CH>
<VIDEO>
<Filename>Cock Hero - Heavenly Bodies 2.mp4</Filename>
<Round>
<StartTime>00:01:09</StartTime>
<EndTime>00:06:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:06:13</StartTime>
<EndTime>00:10:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:10:14</StartTime>
<EndTime>00:14:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:49</StartTime>
<EndTime>00:19:07</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:08</StartTime>
<EndTime>00:24:12</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:24:13</StartTime>
<EndTime>00:28:01</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:02</StartTime>
<EndTime>00:31:50</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:31:51</StartTime>
<EndTime>00:35:51</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
<VIDEO>
<Filename>Cock Hero - Digital Playground 1 - Riley Steele.mp4</Filename>
<Round>
<StartTime>00:01:57</StartTime>
<EndTime>00:08:05</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:09:14</StartTime>
<EndTime>00:15:25</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:16:05</StartTime>
<EndTime>00:20:30</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:21:18</StartTime>
<EndTime>00:25:04</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:25:55</StartTime>
<EndTime>00:30:17</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:31:05</StartTime>
<EndTime>00:35:27</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
</CH>
And that is the extent of my knowledge regarding XML. If that doesn't work for you, your difficulty is most likely somewhere in the syntax of your CHDB file. It will not work unless your spelling, punctuation, spacing, and capitalization are all exactly correct. No question that checking all of those is a time-consuming pain in the ass, but every time I've had a problem, that has been the culprit.
craftytouch
Explorer At Heart
Explorer At Heart
Posts: 195
Joined: Thu Apr 04, 2013 4:58 am

Re: Cock Hero - Randomiser

Post by craftytouch »

Here is Cock Hero Curves for the Randomizer. I did it a while ago and it didn't work, but it works now.

<VIDEO>
<Filename>Cock Hero Curves Edition.mp4</Filename>
<Round>
<StartTime>00:00:33</StartTime>
<EndTime>00:04:53</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:26</StartTime>
<EndTime>00:08:54</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:09:33</StartTime>
<EndTime>00:15:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:15:54</StartTime>
<EndTime>00:20:36</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:21:17</StartTime>
<EndTime>00:27:17</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:27:56</StartTime>
<EndTime>00:35:52</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
craftytouch
Explorer At Heart
Explorer At Heart
Posts: 195
Joined: Thu Apr 04, 2013 4:58 am

Re: Cock Hero - Randomiser

Post by craftytouch »

Here is Cock Hero Curves for the Randomizer. I did it a while ago and it didn't work, but it works now.

<VIDEO>
<Filename>Cock Hero Curves Edition.mp4</Filename>
<Round>
<StartTime>00:00:33</StartTime>
<EndTime>00:04:53</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:26</StartTime>
<EndTime>00:08:54</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:09:33</StartTime>
<EndTime>00:15:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:15:54</StartTime>
<EndTime>00:20:36</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:21:17</StartTime>
<EndTime>00:27:17</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:27:56</StartTime>
<EndTime>00:35:52</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>

Just remember to space it out like the rest of the file.
User avatar
kell42
Explorer
Explorer
Posts: 35
Joined: Wed Sep 07, 2011 8:42 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Cock Hero - Randomiser

Post by kell42 »

noerthboerg wrote: First off, thanks very much for your help!
I understand all you tell me, the thing is, that i simply paste your Timecodes and it doesn't work, why wouldn't it ?
I don't know. If you're following the guidelines I posted, I am reasonably certain that your problem is not in the CHDB file.

Beyond that I simply don't have enough information to speculate. Long-distance troubleshooting is not my forte, and even if it was, I don't actually have any idea how the randomiser program functions, so my understanding of potential failure modes is inadequate, to say the least.

Ultimately, this sums up pretty much everything I know about fixing computer problems.

http://xkcd.com/627/
User avatar
Azureballs
Explorer At Heart
Explorer At Heart
Posts: 115
Joined: Sat Oct 28, 2006 5:30 pm
Gender: Transsexual/Transgender
Sexual Orientation: Open to new ideas!
I am a: Submissive
Location: USA

Re: Cock Hero - Randomiser

Post by Azureballs »

For Flux Dance 2

With Breaks
Spoiler: show
<VIDEO>
<Filename>Flux Dance 2.mp4</Filename>
<Round>
<StartTime>00:00:18</StartTime>
<EndTime>00:04:59</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:05</StartTime>
<EndTime>00:08:28</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:08:59</StartTime>
<EndTime>00:12:35</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:12:36</StartTime>
<EndTime>00:14:30</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:35</StartTime>
<EndTime>00:18:09</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:18:12</StartTime>
<EndTime>00:19:52</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:54</StartTime>
<EndTime>00:26:18</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:26:20</StartTime>
<EndTime>00:28:06</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:09</StartTime>
<EndTime>00:32:47</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:32:48</StartTime>
<EndTime>00:34:43</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:34:51</StartTime>
<EndTime>00:40:59</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:41:00</StartTime>
<EndTime>00:42:55</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:43:06</StartTime>
<EndTime>00:47:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:47:49</StartTime>
<EndTime>00:51:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:51:14</StartTime>
<EndTime>00:57:41</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Without Breaks
Spoiler: show
<VIDEO>
<Filename>Flux Dance 2.mp4</Filename>
<Round>
<StartTime>00:00:18</StartTime>
<EndTime>00:04:59</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:05</StartTime>
<EndTime>00:08:28</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:08:59</StartTime>
<EndTime>00:12:35</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:35</StartTime>
<EndTime>00:18:09</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:54</StartTime>
<EndTime>00:26:18</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:09</StartTime>
<EndTime>00:32:47</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:34:51</StartTime>
<EndTime>00:40:59</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:43:06</StartTime>
<EndTime>00:47:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:51:14</StartTime>
<EndTime>00:57:41</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Hope they work. I will be making others for the various shemale cock hero sometime tomorrow for those who are interested.
User avatar
Azureballs
Explorer At Heart
Explorer At Heart
Posts: 115
Joined: Sat Oct 28, 2006 5:30 pm
Gender: Transsexual/Transgender
Sexual Orientation: Open to new ideas!
I am a: Submissive
Location: USA

Re: Cock Hero - Randomiser

Post by Azureballs »

Heres all the time codes for the shemale videos I have. Enjoy!

Cock Hero Shemale Edition
Spoiler: show
<VIDEO>
<Filename>CH Shemale Edition v1.mp4</Filename>
<Round>
<StartTime>00:01:00</StartTime>
<EndTime>00:04:49</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:04:54</StartTime>
<EndTime>00:08:24</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:08:28</StartTime>
<EndTime>00:10:52</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:12:10</StartTime>
<EndTime>00:15:43</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:15:49</StartTime>
<EndTime>00:21:55</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:22:02</StartTime>
<EndTime>00:26:01</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:27:19</StartTime>
<EndTime>00:31:24</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:31:31</StartTime>
<EndTime>00:37:34</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Shemale Starlets 1
Spoiler: show
<VIDEO>
<Filename>CH_Shemale_Starlets.mp4</Filename>
<Round>
<StartTime>00:00:48</StartTime>
<EndTime>00:04:43</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:22</StartTime>
<EndTime>00:08:57</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:09:33</StartTime>
<EndTime>00:13:27</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:02</StartTime>
<EndTime>00:17:56</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:18:32</StartTime>
<EndTime>00:23:18</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:23:54</StartTime>
<EndTime>00:28:07</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:43</StartTime>
<EndTime>00:32:24</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:33:00</StartTime>
<EndTime>00:36:48</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:37:25</StartTime>
<EndTime>00:42:32</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Shemale Starlets 2
Spoiler: show
<VIDEO>
<Filename>Shemale_Starlets_2.mov</Filename>
<Round>
<StartTime>00:00:56</StartTime>
<EndTime>00:05:34</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:06:13</StartTime>
<EndTime>00:10:21</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:10:59</StartTime>
<EndTime>00:16:01</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:16:39</StartTime>
<EndTime>00:22:20</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:22:59</StartTime>
<EndTime>00:27:21</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:27:59</StartTime>
<EndTime>00:35:28</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:36:06</StartTime>
<EndTime>00:41:20</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:41:57</StartTime>
<EndTime>00:45:47</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:46:24</StartTime>
<EndTime>00:51:02</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:51:40</StartTime>
<EndTime>00:55:20</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:55:58</StartTime>
<EndTime>01:03:40</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Shemale Starlets 3
Spoiler: show
<VIDEO>
<Filename>SS3.mov</Filename>
<Round>
<StartTime>00:00:57</StartTime>
<EndTime>00:06:06</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:06:45</StartTime>
<EndTime>00:12:35</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:13:17</StartTime>
<EndTime>00:17:08</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:17:50</StartTime>
<EndTime>00:21:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:21:52</StartTime>
<EndTime>00:27:49</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:28:28</StartTime>
<EndTime>00:32:45</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:33:24</StartTime>
<EndTime>00:37:14</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:37:53</StartTime>
<EndTime>00:41:40</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:42:19</StartTime>
<EndTime>00:47:05</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:47:44</StartTime>
<EndTime>00:52:13</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:52:52</StartTime>
<EndTime>01:01:54</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
Shemale Starlets Girls Edition
Spoiler: show
<VIDEO>
<Filename>CH GE.wmv</Filename>
<Round>
<StartTime>00:01:06</StartTime>
<EndTime>00:05:02</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:05:19</StartTime>
<EndTime>00:09:14</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:09:52</StartTime>
<EndTime>00:14:16</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:14:51</StartTime>
<EndTime>00:18:35</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:19:09</StartTime>
<EndTime>00:23:03</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:23:38</StartTime>
<EndTime>00:28:53</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:29:27</StartTime>
<EndTime>00:32:59</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
<Round>
<StartTime>00:33:33</StartTime>
<EndTime>00:40:02</EndTime>
<SkillRaiting>1</SkillRaiting>
</Round>
</VIDEO>
blondie88
Explorer At Heart
Explorer At Heart
Posts: 320
Joined: Mon Jan 07, 2013 4:51 pm

Re: Cock Hero - Randomiser

Post by blondie88 »

Still no Randomiser for mac?
cockherolover
Explorer At Heart
Explorer At Heart
Posts: 309
Joined: Fri Oct 19, 2012 9:45 am

Re: Cock Hero - Randomiser

Post by cockherolover »

nihlus wrote:
blondie88 wrote:still no mac version?
Afraid not sadly, I've been kept busy with my current workload from my responsibilities IRL.

I've been thinking though, the main issue I had was the UI refusing to play nice due to inconsistencies in aspect ratios on rescale, I could probably see if there's a web based alternative for handling video. I imagine there's a few HTML5 based solutions, coupled with jquery for UI it'd probably be a lot smoother than the current one.

As to when I'll have time again I can't see it happening any time soon, apologies.
nihlus wrote:Would anyone be willing to start development on a CH-Randomiser like project again? / does anyone know if there's plans for that kind of functionality on the streaming site?
Nihilus, I don't know how far you have tested it without offline player dependability (VLC), but perhaps I could try to host it on Google App Engine (it's Java enabled). This way hopefully we could inspire some people to join in with code development. It would also solve the cross platform problem, as it would be available via web interface.
zingg
Explorer At Heart
Explorer At Heart
Posts: 126
Joined: Sun Dec 08, 2013 8:07 am
Gender: Male
Sexual Orientation: Straight
I am a: None of the above

Re: Cock Hero - Randomiser

Post by zingg »

cockherolover wrote:
nihlus wrote:
blondie88 wrote:still no mac version?
Afraid not sadly, I've been kept busy with my current workload from my responsibilities IRL.

I've been thinking though, the main issue I had was the UI refusing to play nice due to inconsistencies in aspect ratios on rescale, I could probably see if there's a web based alternative for handling video. I imagine there's a few HTML5 based solutions, coupled with jquery for UI it'd probably be a lot smoother than the current one.

As to when I'll have time again I can't see it happening any time soon, apologies.
nihlus wrote:Would anyone be willing to start development on a CH-Randomiser like project again? / does anyone know if there's plans for that kind of functionality on the streaming site?
Nihilus, I don't know how far you have tested it without offline player dependability (VLC), but perhaps I could try to host it on Google App Engine (it's Java enabled). This way hopefully we could inspire some people to join in with code development. It would also solve the cross platform problem, as it would be available via web interface.
While I probably shouldn't commit too much to helping out with the streaming site, I would feel pretty confident saying that adding a Javascript-based randomiser would be easy with the existing Google player (not sure about the videos hosted on PornHub, etc).
nihlus
Explorer
Explorer
Posts: 74
Joined: Thu Nov 03, 2011 12:33 pm

Re: Cock Hero - Randomiser

Post by nihlus »

cockherolover wrote:
nihlus wrote:Would anyone be willing to start development on a CH-Randomiser like project again? / does anyone know if there's plans for that kind of functionality on the streaming site?
Nihilus, I don't know how far you have tested it without offline player dependability (VLC), but perhaps I could try to host it on Google App Engine (it's Java enabled). This way hopefully we could inspire some people to join in with code development. It would also solve the cross platform problem, as it would be available via web interface.
The reason I had halted development of the desktop version is because I'd a project coming up, which is on-going until around May of this year.

Outside of it I won't really be able to invest any significant portion of time programming until after then.

The desktop version was never finished due to UI issues with Java that I never got round fixing, the only reason it was tied to Java was because at the time we'd no server around.

With your site, would it be possible to have a server-side database containing time codes for the randomiser?

If this project was going to switch to web I'd advise just leaving Java behind and coding it in JS/PHP as it'd be much more lightweight for what it needs to do.

Read values, point at correct video page with a &t-XmXs variable tagged on the end, then it's just a matter of repeating this at the end of each round - for a basic randomiser at least, then its a matter of adding the features like custom lists and break times etc...
Last edited by nihlus on Sat Jan 04, 2014 1:23 pm, edited 1 time in total.
cockherolover
Explorer At Heart
Explorer At Heart
Posts: 309
Joined: Fri Oct 19, 2012 9:45 am

Re: Cock Hero - Randomiser

Post by cockherolover »

nihlus wrote:With your site, would it be possible to have a server-side database containing time codes for the randomiser?
Yes. I recommend trying out the NoSQL database (natively supported by GAE). This should be faster than MySQL.
Post Reply

Who is online

Users browsing this forum: adictoris and 82 guests