AuToItItAlIaNlOv3R Posted March 7, 2010 Posted March 7, 2010 (edited) Hi, i made a program that allow to play web radio, now i would like to calculate bitrate of .asx file. For example i've this code : #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Test", 145, 97, 302, 69) $Button1 = GUICtrlCreateButton("Play", 8, 8, 131, 25, $WS_GROUP) $Button2 = GUICtrlCreateButton("Stop", 8, 40, 131, 25, $WS_GROUP) $Label1 = GUICtrlCreateLabel("Kb/s", 104, 72, 27, 17) $Label2 = GUICtrlCreateLabel("", 56, 72, 4, 4) $Label3 = GUICtrlCreateLabel("Bitrate", 8, 72, 34, 17) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### $gMediaObject = _CreateWMPlayer() While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 $gMediaObject.URL = "http://xxxx/xxxx.asx" ; i would like to send in $Label2 the bitrate how can i do this? EndSwitch WEnd Func _CreateWMPlayer() $Object = ObjCreate("WMPlayer.OCX.7") $Object.URL = "" Return $Object EndFunc ;==>_CreateWMPlayer Now i would like to send in $Label2 the bitrate how can i do this? Thank's a lot! Edited March 9, 2010 by AuToItItAlIaNlOv3R
kaotkbliss Posted March 9, 2010 Posted March 9, 2010 I don't know how to get the bitrate, but if you can figure that out, then use can use GuiCtrlSetData to update label2 with your bitrate. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
doudou Posted March 10, 2010 Posted March 10, 2010 Please help!I answered your post in ActiveX/COM Help and Support (AutoItX). If you do doublepostings then check them all at least. UDFS & Apps: Spoiler DDEML.au3 - DDE Client + ServerLocalization.au3 - localize your scriptsTLI.au3 - type information on COM objects (TLBINF emulation)TLBAutoEnum.au3 - auto-import of COM constants (enums)AU3Automation - export AU3 scripts via COM interfacesTypeLibInspector - OleView was yesterday Coder's last words before final release: WE APOLOGIZE FOR INCONVENIENCEĀ
BrettF Posted March 13, 2010 Posted March 13, 2010 I donsn't matter that it didn't work. One thread, one topic. Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now