Go Back   Flash Flash Revolution > Gaming > Other Forum Games
Register FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Display Modes
Old 06-22-2004, 09:49 PM   #1181
Moogy
嗚呼
FFR Simfile Author
 
Join Date: Aug 2003
Age: 36
Posts: 10,303
Send a message via AIM to Moogy
Default

testicle
__________________
Plz visit my blog

^^^ vintage signature from like 2006 preserved
Moogy is offline  
Old 06-22-2004, 11:02 PM   #1182
Chrissi
FFR Player
 
Chrissi's Avatar
 
Join Date: Mar 2004
Location: The Game
Age: 39
Posts: 3,019
Send a message via MSN to Chrissi
Default

You suck at this game, Moogy.
__________________
C is for Charisma, it's why people think I'm great! I make my friends all laugh and smile and never want to hate!
Chrissi is offline  
Old 07-1-2004, 11:04 PM   #1183
lightdarkness
Summer!!
Retired StaffFFR Veteran
 
lightdarkness's Avatar
 
Join Date: Jul 2003
Location: New York
Age: 37
Posts: 11,308
Send a message via AIM to lightdarkness Send a message via MSN to lightdarkness Send a message via Yahoo to lightdarkness Send a message via Skype™ to lightdarkness
Default

starting from soup

poop
__________________
lightdarkness is offline  
Old 07-22-2004, 01:11 PM   #1184
newkidusa
FFR Player
 
Join Date: Apr 2003
Posts: 30
Default

puberty
newkidusa is offline  
Old 07-22-2004, 06:19 PM   #1185
deposition
FFR Player
 
deposition's Avatar
 
Join Date: Feb 2004
Location: Indianapolis, IN
Posts: 1,115
Send a message via MSN to deposition
Default

Public Shared Function GetAttributes( _
ByVal filename As String) As MusicFileInfo
Dim mfi As New MusicFileInfo()

Dim editor As IWMMetadataEditor
Dim headerInfo As IWMHeaderInfo3
Dim uHR As UInt32
Dim hr As Int32
uHR = WMFSDKFunctions.WMCreateEditor(editor)
hr = Convert.ToInt32(uHR)
If hr = 0 Then
uHR = editor.Open(filename)
hr = Convert.ToInt32(uHR)
If hr = 0 Then
headerInfo = DirectCast(editor, IWMHeaderInfo3)
Dim value As Byte()
Dim pType As WMT_ATTR_DATATYPE
value = GetAttributeByName(headerInfo, _
"bitrate", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_DWORD Then
mfi.Bitrate = Convert.ToInt64( _
BitConverter.ToUInt32(value, 0))
End If
value = GetAttributeByName(headerInfo, _
"WM/AlbumTitle", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
'ConvertToString is a function to convert
'from byte array to String, taking
'unicode encoding into account
mfi.AlbumTitle = ConvertToString(value)
End If
value = GetAttributeByName(headerInfo, _
"WM/Genre", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Genre = ConvertToString(value)
End If
value = GetAttributeByName(headerInfo, _
"Author", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Authors = ConvertToString(value)
End If
value = GetAttributeByName(headerInfo, _
"WM/Track", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Track = CInt(ConvertToString(value))
End If
value = GetAttributeByName(headerInfo, _
"Title", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Title = ConvertToString(value)
End If
value = GetAttributeByName(headerInfo, _
"WM/Year", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Year = CInt(ConvertToString(value))
End If
value = GetAttributeByName(headerInfo, _
"WM/Composer", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_STRING Then
mfi.Composers = ConvertToString(value)
End If
value = GetAttributeByName(headerInfo, _
"Duration", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_QWORD Then
mfi.Duration = Convert.ToDecimal( _
BitConverter.ToUInt64(value, 0))
End If
value = GetAttributeByName(headerInfo, _
"WM/MCDI", pType)
If pType = WMT_ATTR_DATATYPE.WMT_TYPE_BINARY Then
mfi.TOC = BitConverter.ToString(value, 0)
End If
End If
End If
Return mfi
End Function

Private Shared Function GetAttributeByName( _
ByVal headerInfo As IWMHeaderInfo3, _
ByVal name As String, _
ByRef pType As WMT_ATTR_DATATYPE) As Byte()
Dim streamNum As UInt16 = Convert.ToUInt16(0)
Dim uHR As UInt32
Dim valueLength As UInt16
Dim arrLength As Int32
Dim hr As Int32
uHR = headerInfo.GetAttributeByName( _
streamNum, name, pType, Nothing, valueLength)

hr = Convert.ToInt32(uHR)
If hr = 0 Then
arrLength = Convert.ToInt32(valueLength)
Dim value(arrLength) As Byte
uHR = headerInfo.GetAttributeByName( _
streamNum, name, pType, value, valueLength)
hr = Convert.ToInt32(uHR)
If hr = 0 Then
Return value
End If
End If
End Function
__________________
deposition is offline  
Old 07-23-2004, 01:59 AM   #1186
newkidusa
FFR Player
 
Join Date: Apr 2003
Posts: 30
Default

nevermind
newkidusa is offline  
Old 08-2-2004, 01:44 AM   #1187
lightdarkness
Summer!!
Retired StaffFFR Veteran
 
lightdarkness's Avatar
 
Join Date: Jul 2003
Location: New York
Age: 37
Posts: 11,308
Send a message via AIM to lightdarkness Send a message via MSN to lightdarkness Send a message via Yahoo to lightdarkness Send a message via Skype™ to lightdarkness
Default

dumbfounded
__________________
lightdarkness is offline  
Old 08-2-2004, 02:58 PM   #1188
noviceanimeartist
FFR Player
 
noviceanimeartist's Avatar
 
Join Date: Jan 2004
Age: 37
Posts: 270
Default

Do'h!
__________________
Please point out any spelling or grammatical errors I may have missed in my post, thanks.
noviceanimeartist is offline  
Old 08-2-2004, 11:40 PM   #1189
lightdarkness
Summer!!
Retired StaffFFR Veteran
 
lightdarkness's Avatar
 
Join Date: Jul 2003
Location: New York
Age: 37
Posts: 11,308
Send a message via AIM to lightdarkness Send a message via MSN to lightdarkness Send a message via Yahoo to lightdarkness Send a message via Skype™ to lightdarkness
Default

hold on a second....
__________________
lightdarkness is offline  
Old 08-8-2004, 11:00 PM   #1190
Pooping_Panda
FFR Player
 
Pooping_Panda's Avatar
 
Join Date: Jun 2003
Location: illinizzle
Posts: 1,773
Send a message via AIM to Pooping_Panda
Default

donkey turd
Pooping_Panda is offline  
Old 08-8-2004, 11:02 PM   #1191
flypie743
FFR Player
 
flypie743's Avatar
 
Join Date: Jun 2004
Location: fairyland
Posts: 3,210
Send a message via AIM to flypie743
Default

dog
__________________

IF YOU ARE THE BOMB YOU WILL CLICK THIS and if you dont, you suck.
flypie743 is offline  
Old 08-8-2004, 11:03 PM   #1192
fusi0n
FFR Player
 
fusi0n's Avatar
 
Join Date: Nov 2003
Location: Indianapolis, IN
Age: 38
Posts: 2,158
Send a message via AIM to fusi0n
Default

sup guys lo
__________________
fusi0n is offline  
Old 08-8-2004, 11:04 PM   #1193
CypherToorima
Boss of all bosses
FFR Veteran
 
CypherToorima's Avatar
 
Join Date: Jul 2003
Location: Phone Home!
Age: 37
Posts: 2,452
Send a message via AIM to CypherToorima
Default

oh wai...
__________________
I'm a figantic gaggot
CypherToorima is offline  
Old 08-8-2004, 11:05 PM   #1194
fusi0n
FFR Player
 
fusi0n's Avatar
 
Join Date: Nov 2003
Location: Indianapolis, IN
Age: 38
Posts: 2,158
Send a message via AIM to fusi0n
Default

o i c
__________________
fusi0n is offline  
Old 08-8-2004, 11:06 PM   #1195
CypherToorima
Boss of all bosses
FFR Veteran
 
CypherToorima's Avatar
 
Join Date: Jul 2003
Location: Phone Home!
Age: 37
Posts: 2,452
Send a message via AIM to CypherToorima
Default

CYC
__________________
I'm a figantic gaggot
CypherToorima is offline  
Old 08-8-2004, 11:06 PM   #1196
fusi0n
FFR Player
 
fusi0n's Avatar
 
Join Date: Nov 2003
Location: Indianapolis, IN
Age: 38
Posts: 2,158
Send a message via AIM to fusi0n
Default

dud dont b frontin
__________________
fusi0n is offline  
Old 08-8-2004, 11:12 PM   #1197
Pooping_Panda
FFR Player
 
Pooping_Panda's Avatar
 
Join Date: Jun 2003
Location: illinizzle
Posts: 1,773
Send a message via AIM to Pooping_Panda
Default

no
Pooping_Panda is offline  
Old 08-8-2004, 11:12 PM   #1198
CypherToorima
Boss of all bosses
FFR Veteran
 
CypherToorima's Avatar
 
Join Date: Jul 2003
Location: Phone Home!
Age: 37
Posts: 2,452
Send a message via AIM to CypherToorima
Default

on
__________________
I'm a figantic gaggot
CypherToorima is offline  
Old 08-8-2004, 11:17 PM   #1199
flypie743
FFR Player
 
flypie743's Avatar
 
Join Date: Jun 2004
Location: fairyland
Posts: 3,210
Send a message via AIM to flypie743
Default

no
__________________

IF YOU ARE THE BOMB YOU WILL CLICK THIS and if you dont, you suck.
flypie743 is offline  
Old 08-8-2004, 11:22 PM   #1200
CypherToorima
Boss of all bosses
FFR Veteran
 
CypherToorima's Avatar
 
Join Date: Jul 2003
Location: Phone Home!
Age: 37
Posts: 2,452
Send a message via AIM to CypherToorima
Default

on
__________________
I'm a figantic gaggot
CypherToorima is offline  
Closed Thread


Currently Active Users Viewing This Thread: 3 (0 members and 3 guests)
 

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 -5. The time now is 12:27 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Copyright FlashFlashRevolution