Go Back   TehSkeen.com > Nintendo GameCube > Qoob Pro / SX

Mini Skeen Menu
Main News Page Online Discussion Forums Downloads Database Console Modification Reviews IRC Chat Information Contests
Network Links
Network Links
Active Threads
225 Pong2 v0.99 Released
Last Post: Randomhero
Posted On: Today
Replies: 1
Views: 94
51 For Sale BlackBerry Storm2 9520---$250,Apple iPhone 3GS 16GB- $200
Last Post: OLLUSS
Posted On: Today
Replies: 0
Views: 8
51 For Sale BlackBerry Storm2 9520---$250,Apple iPhone 3GS 16GB- $200
Last Post: OLLUSS
Posted On: Today
Replies: 0
Views: 12
0 Boot 2 Thoughts
Last Post: hatredg0d
Posted On: Today
Replies: 8
Views: 291
52 HELP!!! Backup Channel Trouble
Last Post: cobleman
Posted On: Today
Replies: 3
Views: 86
52 NSMB Question
Last Post: cobleman
Posted On: Today
Replies: 3
Views: 94
102 Theater Room, Nintendo’s Video On Demand Service Launches Tomorrow
Last Post: R3dfaction
Posted On: Today
Replies: 13
Views: 271
102 More "Unlock Your Wii" Scam Sites
Last Post: trispin
Posted On: Today
Replies: 16
Views: 636
214 New Mario Bros - Anti-Modchip Protection
Last Post: e143slime8
Posted On: Today
Replies: 55
Views: 4,561
0 I have a problem
Last Post: cobleman
Posted On: Today
Replies: 16
Views: 425
0 SDL MAME Wii
Last Post: dantemugiwara
Posted On: Today
Replies: 238
Views: 16,443
248 StartPatch 3.2.0E Released
Last Post: raoulteeuwen
Posted On: Today
Replies: 11
Views: 792
225 BibleQuiz 0.94 Released
Last Post: googies
Posted On: Today
Replies: 1
Views: 122
102 WODE vs. NSMB
Last Post: djdynamite123
Posted On: Today
Replies: 0
Views: 117
106 Game Categories Revised v11 Released
Last Post: brakken
Posted On: Today
Replies: 0
Views: 105
203 Crap 2.4b Released
Last Post: djdynamite123
Posted On: Today
Replies: 0
Views: 108
0 NDS broke, need money to fix it :(
Last Post: SoraK05
Posted On: Today
Replies: 6
Views: 1,208
225 RedSquare 0.93 Released
Last Post: djdynamite123
Posted On: Today
Replies: 0
Views: 74
225 SpaceBubble 0.92 Released
Last Post: djdynamite123
Posted On: Today
Replies: 0
Views: 71
More...

Background Creation Guide for the Qoob PRO BiOS
  #1  
Old 07-16-2005, 09:55 AM
brakken's Avatar
brakken brakken is offline
Brakkenator
 
Join Date: Jul 2005
Location: USA
Posts: 18,096
Send a message via AIM to brakken Send a message via MSN to brakken
Background Creation Guide for the Qoob PRO BiOS

Background Creation Guide
for the
Qoob Pro BiOS

Originally Written by JohnnyTwoHats
and Edited by Brakken


- 2005 -

[ Requirements ]

Qoob Pro BiOS v1.3a (for non-transparent text) Here
Qoob Pro BiOS v1.3b+ (for transparent text) Here
TMPGEnc (free or registered version) Official Site - Alternate Site
TMPGEnc Qoob Template (below)
Text Position Templates
Photoshop, Corel Draw or MS Paint

[ General Information ]


The Text Position Templates are 640x480x32bit and the end result you're looking for is a MPEG1 I-Frame 640x480 image. So just make any image, save it as either JPEG or Bitmap (BMP) and then convert it with TMPGEnc.

[ Converting Your Image ]

Unzip TMPGEnc to an appropriate directory (it doesn't require installing) and then copy the template QoobBackground.mcf to the TMPGEnc Template directory.

(1)Start up TMPGEnc

(2) If you haven't run TMPGEnc before, a dialog box will initially come up. Select the "Do not show this dialog again at start up." checkbox and click ok.

(3) You will initially be faced with the project wizard. Cancel this to get to the main interface. If it asks you whether you want to reset the project, click ok.

(4) Click the ES (Video only) radio button.

(5) Click browse next to the "Video source" text box and select your *.bmp or *.jpg background file.

(6) Now click the "Load" button in the bottom right corner and select the QoobBackground.mcf template.

(7) If you wish, you can change the output file name and directory path, but this is not necessary (by default it just uses the path and filename of the image file and appends the extension m1v).

(8) Click the top left "Start" button and your *.m1v file will be encoded.
Attached Files
File Type: zip templates.zip (66.3 KB, 380 views)
Reply With Quote

  #2  
Old 08-04-2005, 03:57 PM
Cedy_NL's Avatar
Cedy_NL Cedy_NL is offline
masta blasta
 
Join Date: Jul 2005
Location: The Netherlands
Posts: 643
Send a message via MSN to Cedy_NL
Default

cool, i will try it soon to make one myself. I guess i can also make some changes in other backgrounds..right?
Reply With Quote

  #3  
Old 08-05-2005, 05:56 PM
poopdedoop's Avatar
poopdedoop poopdedoop is offline
baller, shot caller
 
Join Date: Jul 2005
Location: Canada
Posts: 450
Send a message via AIM to poopdedoop Send a message via MSN to poopdedoop
Default

why would you wanna change other bg's? the only thing i would do is remove any text that i didn't want on it...
__________________
Reply With Quote

  #4  
Old 08-21-2005, 09:29 AM
einstein14 einstein14 is offline
new member
 
Join Date: Jul 2005
Posts: 4
GC-Linux

thanks for this guide.
I will try to explain you how to convert a jpeg into qoob background compatible file using linux.

My ditribution (and teh best one) is gentoo so i will explain you how to install needed software under a gentoo system and you will have to adapt the text for your distribution.

you need two software:
-imagemagick (http://www.imagemagick.org/)
-mjpegtools (http://mjpeg.sourceforge.net/)

under gentoo you just have to use this commande (as root) to install them:
Code:
emerge -uv imagemagick mjpegtools
now open a new file with you favorite text editor and write:

Code:
#need imagemagick mjpegtools
#remove the extension
F=${1%.*}
#convert the jpeg picture into a ppm one with the good dimension
convert -resize 640x480! "$1" "$F.ppm"
#make the mpeg file
ppmtoy4m "$F.ppm" | mpeg2enc -o "$F.m1v"

save it has jpeg2qoob.sh

you have to add execute privilege to this script. You can dothis with this line:

Code:
chmod 755 jpeg2qoob.sh

So when you want to convert a jpeg to a qoob background just launch:

Code:
jpeg2qoob.sh /place/where/your/image/is.jpg

and you will get /place/where/your/image/is.m1v

now you can copy the .m1v file under your windows partition and reboot your computer (/me is waiting for a linux qoobflash)


All feedback is welcome
Reply With Quote

  #5  
Old 08-22-2005, 04:23 AM
Xboxmodder999's Avatar
Xboxmodder999 Xboxmodder999 is offline
masta blasta
 
Join Date: Jul 2005
Posts: 634
Default

Linux seems a little complicated for me
__________________
-


Xeno GC Review
Guide: Create a Bootable homebrew disc for the Wii or GC.(batch file), or GUI HERE. And another GUI HERE
Reply With Quote

  #6  
Old 09-06-2005, 05:34 PM
TerraChros TerraChros is offline
new member
 
Join Date: Aug 2005
Posts: 9
Default

I'll make them for anybody who needs me too, just PM me with requests
Reply With Quote

  #7  
Old 10-01-2005, 07:35 PM
pixelhub's Avatar
pixelhub pixelhub is offline
new member
 
Join Date: Oct 2005
Posts: 23
Default

How can you make the m1v file better quality, so it is like the original image?

When the m1v file is made it is fuzzy compared to the jpeg
Reply With Quote

  #8  
Old 10-03-2005, 05:44 PM
brakken's Avatar
brakken brakken is offline
Brakkenator
 
Join Date: Jul 2005
Location: USA
Posts: 18,096
Send a message via AIM to brakken Send a message via MSN to brakken
Default

Well, if you're viewing it on a tv (non-hdtv) it'll of course be a little fuzzy, but if you are viewing the image using an mpeg player (m1v = mpeg) then you're doing something wrong. Try using the older version of the app, which I will upload when I get a chance (just check it's version history).

hope that helps
Reply With Quote

  #9  
Old 11-29-2005, 10:21 PM
ochentay4 ochentay4 is offline
new member
 
Join Date: Sep 2005
Posts: 12
Smile

hi i need help with this: i have made 2 qoob background and i dont understand the procedure to post them here!
Reply With Quote

  #10  
Old 11-30-2005, 04:40 AM
brakken's Avatar
brakken brakken is offline
Brakkenator
 
Join Date: Jul 2005
Location: USA
Posts: 18,096
Send a message via AIM to brakken Send a message via MSN to brakken
Default

Upload all Skinz here -> http://nintenskinz.tehskeen.com/

Last edited by brakken; 11-01-2006 at 01:54 AM..
Reply With Quote

  #11  
Old 11-30-2005, 08:56 PM
ochentay4 ochentay4 is offline
new member
 
Join Date: Sep 2005
Posts: 12
Default

Quote:
Originally Posted by brakken
Well, you've gotten as far as registering an account and found the Qoob background instruction thread.

Once you've followed the instructions in this thread you'll end up with a jpeg and an m1v image file. Please ZIP these two files together and then go to our downloads section, pick the qoob background, pick upload, fill in a description and upload the ZIP file. When you're done you'll be presented with a page that gives a link to your file.

Next copy this link and then go to the image gallery, pick the qoob background contest and then upload. Next upload your JPEG image and in the description paste the link from your uploaded ZIP file.

Once this is done you should motivate some of your friends to register and then vote on the images.

pixelhub - JPEG -> MPEG (m1v) conversion just is that way. You could try using a TIFF or an uncompressed image format for conversion purposes and this may increase the end results. Let me know
ok ive done it but imnot sure if its ok thanks!
Reply With Quote

  #12  
Old 12-01-2005, 01:37 PM
brakken's Avatar
brakken brakken is offline
Brakkenator
 
Join Date: Jul 2005
Location: USA
Posts: 18,096
Send a message via AIM to brakken Send a message via MSN to brakken
Default

Everything in your entries looks perfect. Good luck!
Reply With Quote

edit text position
  #13  
Old 07-06-2006, 10:13 AM
phazer phazer is offline
new member
 
Join Date: Jul 2006
Posts: 1
Nervous edit text position

Hi people!
How can I edit the position of the text of the background?
I downloaded the qoob template, but how should I use the photoshop files included?
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -4. The time now is 10:34 PM.


vBulletin skins developed by: eXtremepixels
Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
All Original Content (C) 2005-2008 brakken, All Rights Reseverd