Jump to content



Photo

TinyMp3Downloader v1.0.5.6 Update of 04 April 2013

youtube mp3 download

  • Please log in to reply
37 replies to this topic

#1 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 09 September 2011 - 10:53 AM

TinyMp3Downloader : New version, new Topic !

Get mp3 from YouTube easily...and no, you can not phone call with it ! :D

Posted Image

Previous Downloads : 729

Update of 04 April 2013

Source : Attached File  TinyMp3Downloader v1.0.5.6.au3   45.77KB   65 downloads

Compiled executable : TinyMp3Downloader v1.0.5.6.exe

For simplify next updates i don't upload this script or executable with full embeded files.

More fast and Stable !
As usual, external files are downloaded at first execution.
Tested on Xp 32 bit, and Seven 64 bit.

Look at the Tray menu for more options.

Hope you like it ! ;)

Edited by wakillon, 04 April 2013 - 01:08 PM.

  • kylomas likes this

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 








#2 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 20 September 2011 - 09:43 AM

Updated.

Among changes, have added this function for decode URI Component.

AutoIt         
  ; ConsoleWrite ( _UriComponentDecode ( 'http%3A%2F%2Fwww.autoitscript.com%2Fforum%2Fforum%2F9-example-scripts%2F' ) & @Crlf )     ; #FUNCTION# ==================================================================================================================== ; Name...........: _UriComponentDecode ; Description ...: Returns the unencoded version of an encoded component of a Uniform Resource Identifier (URI) ;                  by replacing each UTF-8 escape sequence with the character that it represents. ;                  The JavaScript decodeURIComponent function can be used to decode special reserved characters ;                  and other non-ASCII characters such as letters with diacritics or from the Cyrillic alphabet. ; Syntax.........: _UriComponentDecode ( $_EncodedUriComponent ) ; Parameters ....: $_EncodedUriComponent - String to decode ; Return value ..: Decoded String ; Author ........: wakillon ; Remarks .......: Replace also Java Unicode escape sequences like \uxxxx ; Related .......: _UriComponentEncode ; Example .......: yes ; Link ..........: <a href='http://msdn.microsoft.com/en-us/library/91b80x6x.aspx' class='bbc_url' title='External link' rel='nofollow external'>http://msdn.microsoft.com/en-us/library/91b80x6x.aspx</a> ; =============================================================================================================================== Func _UriComponentDecode ( $_EncodedUriComponent )     Local $oSC = ObjCreate ( "ScriptControl" )     If Not IsObj ( $oSC ) Then Return SetError ( 1, 0, 0 )     $oSC.language = "JavaScript"     Do         $_EncodedUriComponent = $oSC.eval ( "decodeURIComponent('" & $_EncodedUriComponent & "');" )     Until Not StringInStr ( $_EncodedUriComponent, '%' )     Return $_EncodedUriComponent EndFunc ;==> _UriComponentDecode ( )  

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#3 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 26 October 2011 - 11:22 AM

Skin and Include Updated.

I forgot to precise : Do a double click on Tray icon for Restore or Minimize it.

As you know, Youtube changes periodically his webpages source code, so don't hesitate to say me if script doesn't work anymore ! :D

Edited by wakillon, 13 November 2011 - 06:15 PM.

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#4 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 12 November 2011 - 11:56 AM

What's happen ?

137 downloads and not even a little comment ! :D

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#5 lorenkinzel

lorenkinzel

    Wayfarer

  • Active Members
  • Pip
  • 88 posts

Posted 12 November 2011 - 10:35 PM

After 99% progress I get "The application failed to initialize properly (0xc0000135). Click on OK to terminate the application".
Very nice presentation. From the way it looks, I'd guess that you spent lots of time in testing. Any idea why it fails for me but not you?

#6 lorenkinzel

lorenkinzel

    Wayfarer

  • Active Members
  • Pip
  • 88 posts

Posted 12 November 2011 - 10:46 PM

It's the FLVExtract.exe that is failing to initialize. All else is working great.

#7 lorenkinzel

lorenkinzel

    Wayfarer

  • Active Members
  • Pip
  • 88 posts

Posted 12 November 2011 - 11:30 PM

It seems to be a problem between FLVExtractCL.exe and my computer.
For my own use, I'll remove FLVExtractCL.exe related items in the script and just use the .flv files with VLC portable.
Really nice script, though.

#8 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 13 November 2011 - 07:40 AM

It seems to be a problem between FLVExtractCL.exe and my computer.
For my own use, I'll remove FLVExtractCL.exe related items in the script and just use the .flv files with VLC portable.
Really nice script, though.


Thanks ! :oops:

Take a look to flvextract web site.

Important: Most of the programs here require the .NET Framework 2.0 (x86, x64). You may already have it, so there's no need to download it unless you get an error when you try to run the programs.

May be you didn't have it installed ? :D

It's not clearly notified if it works on x64 bit, and as i have no returns of x64 users, i can't confirm.
Is it your case ?

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#9 lorenkinzel

lorenkinzel

    Wayfarer

  • Active Members
  • Pip
  • 88 posts

Posted 14 November 2011 - 02:24 AM

I am on an old-fashioned x86.
The .NET FRAMEWORK 2.0 was the culprit. Now the script behaves as designed.
I am still unable to make phone calls with it, though.
(is humor)
I am torn between keeping the .mp3 or the .flv. Fortunately I can do either with this nifty script.

#10 smashly

smashly

  • Active Members
  • PipPipPipPipPipPip
  • 1,635 posts

Posted 14 November 2011 - 03:00 AM

Hi and thanks for sharing wakillon.
Just had a peek at the source code of FLVextract ...
With a bit of reading on the FLV data structure I think you could probably use just Autoit alone to extract the data streams from the FLV files.
This way it would eliminate depending on dotnet.

Cheers

#11 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 14 November 2011 - 08:04 AM

I am on an old-fashioned x86.
The .NET FRAMEWORK 2.0 was the culprit. Now the script behaves as designed.
I am still unable to make phone calls with it, though.
(is humor)
I am torn between keeping the .mp3 or the .flv. Fortunately I can do either with this nifty script.


Glad you get it working now ! :D
I will add .NET FRAMEWORK 2.0 download links to first post.

Thanks again for your feedback. :oops:

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#12 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 14 November 2011 - 08:30 AM

Hi and thanks for sharing wakillon.
Just had a peek at the source code of FLVextract ...
With a bit of reading on the FLV data structure I think you could probably use just Autoit alone to extract the data streams from the FLV files.
This way it would eliminate depending on dotnet.

Cheers


Thanks smashly !

If you know an AutoIt way for extract data streams from the FLV files, I'm very interested
because i have no idea how to do that... :D

I expect your solution with impatience :oops:

wakillon.

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#13 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 01 December 2011 - 02:40 PM

Updated.


In last version to gain speed I had limited the search in arrays ( with start and end )
but this had created some bugs, so I expanded the search field and it seems to work better.
Also some minor modifications were added.

Hope you will find and listen good music ! :D

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#14 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 21 February 2012 - 08:56 AM

Updated

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#15 ldub

ldub

    Wayfarer

  • Active Members
  • Pip
  • 57 posts

Posted 05 March 2012 - 08:54 PM

A lot of errors due to includes and global constants, despite your recent update.
What a pity !
(autoit v3.3.8.1)

#16 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 06 March 2012 - 10:25 AM

Salut le Parigo ! :bye:

WinAPIEx.au3 and APIConstants.au3 are available to : http://www.autoitscript.com/forum/topic/98712-winapiex-udf/

Update those UDF and all will work fine ! :oops:

Also you can find Compiled version link in my signature ( google code )

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#17 ldub

ldub

    Wayfarer

  • Active Members
  • Pip
  • 57 posts

Posted 06 March 2012 - 01:47 PM

Hey man, just like back in Paris ! :oops:


Thanks a lot, it works fine now.

#18 lorenkinzel

lorenkinzel

    Wayfarer

  • Active Members
  • Pip
  • 88 posts

Posted 29 May 2012 - 03:48 AM

After using this without the .net framework & only getting the video, I got to thinking:


$_InetGet = InetGet($_VideoLink, $_TempMp3Dir & '' & $_VideoTitle & '.flv', 1 + 2 + 8 + 16, 1)
;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>afterMarket insert
If GUICtrlRead($box1) = $GUI_CHECKED Then
$_InetGet = InetGet($_VideoLink, @DesktopDir & '' & $_VideoTitle & '.avi', 1 + 2 + 8 + 16, 1)
Else
EndIf
;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
If Not $_Mute Then SoundPlay(@WindowsDir & 'Mediabip8.wav')

Because I also enjoyed getting the video.
I don't really understand the GUI, so I'm playing hide-&-seek with the checkbox (it only shows on hover).
Anyway, it seems like a nice add. Of course, with a minimalist (but quite nice) program, if you add features where do you stop?

#19 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 17 June 2012 - 01:37 PM

Updated due to YouTube Video format Change.
Now, it use ffmpeg instead of flvextract.
Conversion takes 2-4 sec instead of one.

;)

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 


#20 wakillon

wakillon

    Tiny Tools Coder

  • Active Members
  • PipPipPipPipPipPip
  • 2,494 posts

Posted 18 August 2012 - 03:18 PM

Updated.

  AutoIt Version : 3.3.8.1/3.3.9.4 SciTE 3.3.0 Language:040C OS:WIN_7/ CPU:X64 OS:X64 

  Last updated Scripts and executables with full embedded files are available on : GoogleCode 






Also tagged with one or more of these keywords: youtube, mp3, download

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users