AutoHotkey Community

It is currently May 27th, 2012, 1:39 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject:
PostPosted: October 16th, 2009, 5:08 pm 
I always simply mute when there is an ad playing anyway. Sometimes I forget to unmute and miss part of the song, but I never listen to ads. This just does it automatically. Turn it into an EXE and start selling it? No, that would be wrong. Use a script within a very tight group of AutoHotkeyers to benefit their computing experience? Seems okay to me.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 17th, 2009, 11:02 pm 
Check this AdBlocker for Spotify

http://www.elotrolado.net/hilo_simpliti ... -0_1296501

:wink:

Its working 100%


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 15th, 2009, 4:50 pm 
I listen to the ads, in as much as it takes less effort to 'listen but not hear' rather than muting your PC, which is frankly just a statement to no one.

Who mutes ads on TV when they come on?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 18th, 2009, 1:22 pm 
I do, pretty much always. I can't stand being bombarded by the same inane jingles and unfunny rubbish. It's especially bad around Christmas. There's too much advertising in this world and not enough artistic/meaningful communication. Imagine walking down the street and not seeing hundreds of posters and billboards urging you to buy and consume. There are a few places like that, where your mind can breathe and you can contemplate the more important things in life. I think it's a similar feeling to being lost in music you love, that is until you're rudely interrupted by some insincere salesperson : )

ukdomi wrote:
Who mutes ads on TV when they come on?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 9th, 2010, 5:09 am 
Offline

Joined: January 9th, 2010, 4:47 am
Posts: 6
Tyr708 wrote:
Really hope someone gets the time to mix these two together. I like would really love to use a mixed version.

But thx for both the versions. I use the first one right now sonce I am kind of lazy :P
i made a script based on something completely different, so anyone interested check it out


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: Spotify without ads
PostPosted: January 10th, 2010, 7:10 pm 
Where the heck do i put this script??????


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 25th, 2010, 10:07 pm 
make a script to play next song a split second before the previous one finishes? ads would never start?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 21st, 2010, 3:12 am 
Offline

Joined: October 3rd, 2007, 9:32 pm
Posts: 157
Location: UK
Quote:
make a script to play next song a split second before the previous one finishes? ads would never start?

Sound idea, so done a quick script - can't get the ClassNN of Spotify controls so detecting the end of a track is left to the user via hotkeys.
Set as many hotkeys as you like to control Spotify in the background.

Code:
#Persistent
DetectHiddenWindows, On
SetBatchLines, -1
SetWinDelay, -1

;Hotkeys must be named sequentially and consecutively like so:
hotkey1              = ^+d            ; previous
hotkey1Send          = {UP}{ENTER}
hotkey2              = ^+c            ; next
hotkey2Send          = {DOWN}{ENTER}
hotkey3              = ^+x            ; pause
hotkey3Send          = {SPACE}
hotkey4             = ^+r             ; repeat
hotkey4Send          = {ENTER}
winTitle             = ahk_class SpotifyMainWindow

Loop {
   If !hotkey%A_Index%
      Break
   Hotkey, % hotkey%A_Index%, winSend
   hashCurr := "hash" . hashFunction(hotkey%A_Index%)
   %hashCurr% := hotkey%A_Index%Send
}
Return

winSend:
hotkeyHash := "hash" . hashFunction(A_ThisHotkey)
ControlSend, , % %hotkeyHash%, %winTitle%
Return



hashFunction(str) {
   SetFormat, IntegerFast, H
   str := hashFunctionTransform(str)
   SetFormat, IntegerFast, D
   Return str
}

hashFunctionTransform(str) {
   Return Substr((Asc(Str) + 0), 3) . (StrLen(Str) > 1 ? hashFunction(SubStr(Str, 2)) : "")
}


Last edited by tuna on April 21st, 2010, 10:57 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 21st, 2010, 10:23 pm 
Offline

Joined: July 6th, 2009, 9:58 pm
Posts: 678
daorc wrote:
Muting the spotify ads is morally equivalent to illegally downloading the music in the first place, so why bother getting Spotify if you're going to do that?!


I think it's more morally equivalent to turning your eyes away from a billboard.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 21st, 2010, 10:25 pm 
Offline

Joined: July 6th, 2009, 9:58 pm
Posts: 678
ukdomi wrote:
I listen to the ads, in as much as it takes less effort to 'listen but not hear' rather than muting your PC, which is frankly just a statement to no one.

Who mutes ads on TV when they come on?


Better yet, who doesn't fast forward through commercials? Are the DVR companies taking the advertisers money? All the DMCA stuff still smacks of the VHS war to me.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 24th, 2010, 2:55 pm 
Anyone know how to extend the streaming limit?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 24th, 2010, 3:41 pm 
Offline

Joined: March 18th, 2008, 12:31 am
Posts: 63
Location: Barcelona, Catalonia
daorc wrote:
Muting the spotify ads is morally equivalent to illegally downloading the music in the first place, so why bother getting Spotify if you're going to do that?!

because some users can't be bothered with ads neither downloading music.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 2nd, 2011, 2:04 am 
Offline

Joined: October 3rd, 2007, 9:32 pm
Posts: 157
Location: UK
Hi, I've decided to try my hand at writing a more comprehensive no-ads solution - I've posted it in a new topic here
tuna wrote:
Features
> Skips Spotify's audio ads without any user intervention
> Spotify playback controls available through unobtrusive (and draggable) mini UI
> Control master volume via mouse
> Detects Spotify window closure, opening, minimisation etc and handles in all those situations
> Automatic software updates
> Portable - put it on a flash drive and run it on any computer


Image

...for more see http://www.autohotkey.com/forum/viewtopic.php?p=411058#411058


Thanks


Last edited by tuna on January 6th, 2011, 1:57 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 2nd, 2011, 4:58 pm 
to all complaining about this, it's not doing anything illegal or "immoral" - it's not cracking anything, redistributing anything, interfering with the Spotify web site or deterring people from using it. It's a legitimate use of a computer with mutable volume and scripting software to control the user's personal computer usage. I suppose you also lecture people for switching the tv channel during ads or fast forwarding recordings? How about just covering your ears with your hands, wow, really immoral stuff LOL.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 2nd, 2011, 5:20 pm 
ukdomi wrote:
Who mutes ads on TV when they come on?


This is a joke post, right? I think most people do, or they switch over. Not everyone has become numb sheeple who's happy to wallow in bullshit (most of which isn't even the right demographic for them fwiw) which regardless of political/economic viewpoint is 99% irritating. Why put up with being irritated when you don't have to? Why have a mute button at all? That's two minutes i could be checking my mail, the listings, whatever.

It's not about making a statement, it's about using the same discretion that intelligent people use to not watch any old crap tv show "just because it's there" or has the latest zeleb sensation or is mind numbing reality crap.

You might as well say people who don't own a tv or buy glossy ad packed mags are bad because they opt out of any advertising target and are denying firms a profit. :roll:

I wouldn't worry though, there will always be enough sheeple who buy into anything (literally) to compensate for the "immoral" people who don't. Plus if it it was all about a useless statement, then there's no effectiveness in avoidance to worry about in the first place and means the argument comes back to people's personal discretion to not be forced to watch/listen to something they don't want to.

Next up from some boarders: why people should quit whining about the banks and IMF etc and be a good citizen and take out more central banking economy supporting debt. ;)


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Google [Bot] and 20 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group