Audioscrobbler and Last.fm for Zen Vision:

I was wondering what the chances were that we'd ever see a firmware update for the Zen Vision: M that will allow Audioscrobbling (www.last.fm). The player already seems to keep track of my listening habbits. Would it really be so hard to allow that information to be accessible from my PC?
According to the people at the Audioscrobbler forum, the only reason an Audioscrobbler plugin _doesn't_ exist for Zen players is that Creative's firmware is not open enough. Would it really be terribly difficult to open up the firmware and let the relevant information be accessible? For a lot of people, the ability to use Last.fm with their MP3 player would be a huge selling point. The Zen Vision: M is an otherwise very versatile player; it would be great to see this extra feature added in an upcoming firmware upgrade.
Anybody else out there want to see this happen? Any reason why it couldn't? Please chime in.

yes sure i want this last.fm plug-in if it ever happens. i Use last.fm everyday and would love to se my track listing being displayed on there from my creative zen vision m............... it was the one thing i was hoping it would have but knowing it didnt i nearly picked the ipod. saying that im glad i didnt ;-)

Similar Messages

  • Power and Sync problems with Zen Vision:M

    )Power and Sync problems with Zen Vision:MX Lately, my Vision M is having problems that when I plug it into the USB port on any PC to charge it, it lights up for a moment and then goes blank.
    When I unplug it and reseat the usb cable, nothing happens. When I try to turn it on, it's dead. This happens even though it's not fully depleted of battery energy.
    Pressing the reset button does not do anything. The only thing that I've found that will work is to open it up and unplug the battery. But even that is starting to not work.
    This doesn't happen every time I use it, but it is happening quite a bit. It's gotten to the point today that I can't even charge the battery at all.
    Any suggestions? I don't think it's the battery, as it does charge when I don't have these issues, but I'm not really positi've of that either.

    The connector on the motherboard check it . It may need to be resoldered. The last time I ran into those symptoms that was the solution.

  • What happened to STARBUY for Zen Vision M 60 GB scheduled for today Dec 2 @10

    Hey everyone,
    I participated in Nov's starbuy, didnt manage to get anything and after it, I checked back a couple of days later and saw that Dec starbuy was scheduled for today 2 Dec at 0pm for Zen Vision M (Black) 60GB. But just logged onto Creative Online Store and didnt see the link for Starbuy. Anyone know what happened to it's? Does this mean no more starbuy from now on?

    I also was eagerly watching for the starbuy that you have referred to on Dec 2 at 0pm. I must say I'm disappointed with what Creative has done. Sure, they have every "right" to withdraw their offers but they did not bother to inform the public about it. I personally checked the website patiently from 9pm to 030pm thinking that maybe they were getting ready to upload the website with the starbuy. But NO the stupid link kept going back to the creative homepage. And they sneakily removed all the advertisements to the starbuy.
    What p**ses me off even more is that if you check today, they have sneakily changed it to some "SoundWorks 500DAB" which is a new item but nobody's ever heard of before or is probably interested, compared to the ZVM 60GB. It's quite big (it's not a mobile player, .92kg, looks more like a mini-compo) and only plays "Digital Audio Broadcast" (what's that?) and FM Stereo. Hello Creative? What era is this? Who wants to buy this only to leave it at home to listen to the radio or DAB? It's not mobile, it can't play MP3s or video or photo. Or even CDs.
    Check it out at sg.store.creative.com/starbuy
    Why they decided to pull the ZVM beats me. I have no idea. And why Creative has started selling what looks like basically an expensi've radio (ie, they are going back in time) beats me even more. As echoed by many Internet reviewers, compared to Apple Ipod, Creative's MP3 players are pretty good and they should focus their attention on that, try to make them even smaller and longer battery life, more functions, more codecs, better screens, BUT what we see is Creative di'versifying and designing/manufacturing so much new products that they may not have a market for.
    EDIT: Ok I just checked, about DAB: from Wikipedia
    Digital Audio Broadcasting or DAB is a technology for broadcasting audio programming in digital form that was designed in the late 980s but which is now being introduced in many countries. The original objecti'ves of converting to digital systems were to enable higher fidelity, more stations, less inteference, mobile services and additional information such as text, although in practice the vast majority of radio stations on DAB sound worse than on FM.
    In Singapore, MediaCorp's SmartRadio was launched on 9 November 999. Using the Eureka 47 DAB system, SmartRadio provides six digital-only stations and eight simulcast FM services, along with images and text to supplement the audio. Singapore was the first country to reach full DAB coverage.
    My response: I still think that Creative should work on their mp3 players. They could try introducing this DAB technology into their MP3 players, maybe be the first in the world to do it. Sooner or later another company's gonna do it.Message Edited by fourseven on 2-04-200602:30 AM

  • SQL Selecting the first and last entries for each day

    Hello SQL experts,
    I hope you can help with this.. I have a table (could have 1M or more rows in it) see structure below. I am looking to get the first and last date/times for each employee for each day. I also need the location GUID for the first read.
    EmployeeGUID (uniqueidentifier datatype)
    LocationGUID (uniqueidentifier datatype)
    DateTime (DateTime datatype)
    12345678-0000-0000-0000-000000000000
    11111111-0000-0000-0000-000000000000
    04/12/2014 07:00:01
    12345678-0000-0000-0000-000000000000
    22222222-0000-0000-0000-000000000000
    04/12/2014 10:40:05
    12345678-0000-0000-0000-000000000000
    22222222-0000-0000-0000-000000000000
    04/12/2014 17:04:02
    44422222-0000-0000-0000-000000000000
    22222222-0000-0000-0000-000000000000
    04/14/2014 08:00:00
    44422222-0000-0000-0000-000000000000
    22222222-0000-0000-0000-000000000000
    04/14/2014 14:00:03
    44422222-0000-0000-0000-000000000000
    33333333-0000-0000-0000-000000000000
    04/15/2014 07:49:00
    44422222-0000-0000-0000-000000000000
    11111111-0000-0000-0000-000000000000
    04/15/2014 09:00:01
    This would be the ideal output (I can do without the TotalTimeInHours):
    EmployeeGUID (uniqueidentifier datatype)
    LocationGUID (uniqueidentifier datatype)
    FirstRead (DateTime datatype)
    LastRead (DateTime datatype)
    TotalTimeInHours
    12345678-0000-0000-0000-000000000000
    11111111-0000-0000-0000-000000000000
    04/12/2014 07:00:01
    04/12/2014 17:04:02
    Total in hours between the first and last read.
    44422222-0000-0000-0000-000000000000
    22222222-0000-0000-0000-000000000000
    04/14/2014 08:00:00
    04/14/2014 14:00:03
    44422222-0000-0000-0000-000000000000
    33333333-0000-0000-0000-000000000000
    04/15/2014 07:49:00
    04/15/2014 09:00:01
    I would post what I have tried so far but I have been trying many different types of queries over the last few days. In short I need the employees first and last reads for each date. They could have many entries per date or just 1. I am certain that this
    is a trivial thing for a SQL expert but not trivial for me :).
    Thank you in advance!

    Thank you!
    This is almost what I need. The LocationGUID has to be included in the output. When I include it, I have to put it in the Group By clause. When I do that the reads are based on the LocationGUID (see below).
    ** I added a few more data entries and included the LocationGUID in the output.
    ***** SQL ***********
    CREATE TABLE test(  EmployeeGUID  uniqueidentifier, LocationGUID  uniqueidentifier, DateTimeCol  DateTime )Insert into test values
    ('12345678-0000-0000-0000-000000000000','11111111-0000-0000-0000-000000000000','04/12/2014 07:00:01')
    ,('12345678-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/12/2014 10:40:05')
    ,('12345678-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/12/2014 17:04:02')
    ,('12345678-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/12/2014 19:00:00')
    ,('44422222-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/14/2014 08:00:00')
    ,('44422222-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/14/2014 14:04:03')
    ,('44422222-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/15/2014 07:49:00')
    ,('44422222-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/15/2014 09:00:01')
    ,('12345678-0000-0000-0000-000000000000','11111111-0000-0000-0000-000000000000','04/13/2014 10:40:05')
    ,('12345678-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/13/2014 17:04:02')
    ,('12345678-0000-0000-0000-000000000000','22222222-0000-0000-0000-000000000000','04/13/2014 19:00:00')
    ;with mycte as (
    SELECT *, row_number() OVER(partition by EmployeeGUID, Cast(DateTimeCol as date)  Order by  DateTimeCol) rnASC,
     row_number() OVER (partition by EmployeeGUID, Cast(DateTimeCol as date)  Order by  DateTimeCol DESC) rnDESC
    FROM    test)
    Select EmployeeGUID ,Cast(DateTimeCol as date) dt,LocationGUID,
    Max(Case when rnASC=1 Then DateTimeCol End) minDateTimeCol
    ,Max(Case when rnDESC=1 Then DateTimeCol End ) maxDateTimeCol
    ,Datediff(minute, Max(Case when rnASC=1 Then DateTimeCol End) ,Max(Case when rnDESC=1 Then DateTimeCol End ) )/60.0  TotalTimeInHours
    from mycte
    Group by EmployeeGUID, LocationGUID,Cast(DateTimeCol as date)
    Order by dt,EmployeeGUID
    drop TABLE test
    **** OUTPUT **********
    EmployeeGUID
    dt
    LocationGUID
    minDateTimeCol
    maxDateTimeCol
    TotalTimeInHours
    12345678-0000-0000-0000-000000000000
    2014-04-12
    11111111-0000-0000-0000-000000000000
    2014-04-12 07:00:01.000
    NULL
    NULL
    12345678-0000-0000-0000-000000000000
    2014-04-12
    22222222-0000-0000-0000-000000000000
    NULL
    2014-04-12 19:00:00.000
    NULL
    12345678-0000-0000-0000-000000000000
    2014-04-13
    11111111-0000-0000-0000-000000000000
    2014-04-13 10:40:05.000
    NULL
    NULL
    12345678-0000-0000-0000-000000000000
    2014-04-13
    22222222-0000-0000-0000-000000000000
    NULL
    2014-04-13 19:00:00.000
    NULL
    44422222-0000-0000-0000-000000000000
    2014-04-14
    22222222-0000-0000-0000-000000000000
    2014-04-14 08:00:00.000
    2014-04-14 14:04:03.000
    6.066666

  • Accesories for Zen Vision

    Hi everybody. I've just bought a Zen Vision : M a couple of weeks ago. And now i want to install it in my car, ain't it possible to get a fm transmitter that charges thru the Mp3 player, and not thru the car charger?Otherwise you would have to constantly change the charges between the Zen and the fm transmitter... And another question, does anyone know when the accesories will be out in the stores in Denmark??/Aleks

    if you get a belkin fm transmitter (or alot of other company's). they usualy run through a AAA battery. the battery usualy lasts awhile. so you don't have to worry. they plug into the headphone jack and that wont power the player. the reason why some companys use the lighter port on cars is to save you from using batteries, but that just limits its usage to in vehichles.
    IF possible. check if your car stereo has a "line-in" jack. if there isnt a headphone plug on the front. it might be in the back of it. usualy newer ones do. you might want to check the players manual if you have on. or get somebody who knows what there doing to check for you. if you do that you can use a direct line (cord with female headphone plugs on both ends) to go straight from your Vision:M directly into your stereo. that will give you great sound quaulity. otherwise fm transmitters just give you around tape/stereo sound quality.
    good luck.
    no clue about the acessories. mind you, i've never seen creative accessories in stores anywhere here. they usualy only have the players in the stores. perhaps get it off creative.com

  • Will my old wall charger for Zen Vision:M will work with the (New) Z

    i bought a wall charger from amazon for my Zen Vision: M 30GB, will it work with the (New)Zen? i just bought the Zen 6 GB and it doesn't comes with an adapter, pretty bad move there, well, does it has the same plug? i hope it's compatible. thanks

    sebastiankf,
    That third party adapter from your Amazon link is hard wired specifically for the Vision:M and will not work with any other Creative player unless it has the same pin-outs using the same docking interface. The Creative AC-5V adapters will either have a coaxial power plug connection that will work with most of the Creative hard disk based players, except for the original NJB and Zen Micro, or a USB Mini-B plug that will work with all of the flash players that have a USB connection and the Zen Micro.

  • Video conversion issue for zen vision m 3

    hi all im brand new to the forum. i seem to have 2 issues.firstly i cant find any free software to convert dvd to a file format supported by my zen vision m.anyone have any ideas?secondly (and this is the big one), i am really disappointed with the video feature of my vision.i had a zen micro before and thought it was fantastic.software was great, menu system was great.so when it was time to upgrade there was no question it was going to be a creative again.but when it comes to the supposedly supported video file formats i feel i've been duped.if i use the video converter in the software (for avi from my camera to wmv)?it tells me theres no audio.it wont work with mp4 files at all.that just freezes my zen.why do they claim it supports mp4 when it doesnt ?has anyone got this problem too?i have the latest firmware upgrade so it cant be that. thanks folks

    I use AVS Video Converter from http://www.avsmedia.com/. I think it costs about $30 if I remember right. It converts practically?everything that isn't protected. They even have presets for the Zen Vision, although not for the Vision:M or Vision:W. However, it lets you easily make your own presets. The program is fast and very easy to use once you learn it. However, there is a bit of a learning curve. It has a good, simple interface but they don't hold your hand. The help is also very good. I've been using it for about 2 years and I'm glad I have it. By the way, I'm a customer of theirs and I don't get anything out of posting this. Barry?

  • Protective Cover & Transparent film for Zen Vision

    [color="#3333ff">I just purchased a Zen Vision M - black. Black shows up scratches a lot. I've only had it for a few days and already I can see the tiny surface scratches. I would like to buy a protecti've case or flexskin and a protecti've transparent film for the screen to protect it from scratches. I've found a few companies online that offer these products. Does anyone have any particular recommendations?[color="#3333ff">?[color="#3333ff">Thanks,[color="#3333ff">?[color="#3333ff">Jeff

    BSE, Bestskinsever, exact same as invisible shield for cheaper

  • Car Kit for Zen Vision

    Okay, so my previous post didnt seem to have a message..
    Is there a car kit to play music from the creative zen vision m in your car?
    I have a CD player in my dash, not a tape
    thanks!

    boltoncalling,
    If you don't have a tape player in the card, the other options would be to connect directly, or use an FM transmitter.
    Connecting directly is only possible if the stereo has that option. Some have an auxiliary input on the front, others have an input on the back, but some don't have an input at all. Check the manual for your car stereo if you can to see if it has any mention of an input. It might be on the back of the unit so you might need an adapter from the manufacturer.
    The other option is an FM transmitter, with this you use that device to essentially transmit a signal from your player, that your radio can pick up.
    Cat

  • First and Last name for a User-Id??

    Hi..
    I want to know the first and the last name of a USER-ID in SAP. Which table I should refer to to get the names.
    Thanks

    Hi,
    I think it's a bit more complicated than that
    First you would need to loook up person number (PERSNUMBER) via USER-ID in ADRP and then look for full name in USR21 via this person number.
    So solution to your problem might look something like:
    SELECT SINGLE adrp~name_text INTO name_text
      FROM usr21 JOIN adrp ON usr21~persnumber = adrp~persnumber AND
                              adrp~date_from   = '00010101'      AND
                              adrp~nation      = ''
      WHERE usr21~bname = usnam.
    Where usnam ofcourse is USER-ID for which you want to find full name.
    Regards,
    Reinis

  • Is it possible to get Bluetooth enhancement for Zen Vision M?

    hi all...
    I have a Vision 30g, and i love it. It has never given me any trouble, and i have it for two years! And i know that's a good spell...some friends i know have gone through 3 ipods in the same time. Anyhow....
    I got a nice set of bluetooth earphones for christmas, so i can use my phone and mp3 hadsfree while driving...the trouble is, my vision does not have bluetooth. Is it possible, or am i just wishing blindly, that some adjustment/download can be applied so my vision is bluetooth enabled?
    I'm reaching here folks, any help appreciated...
    Signed...A happy vision customer, that wishes to evolve!!

    ? It wasn't my intention to make you feel stupid. I had hoped the smiley would help convey that.
    Bluetooth and 802. wireless do both use a radio in the 2.4Ghz band so your question wasn't completely off the deep end (unlike other things I've seen people request "in the next firmware update" that clearly would require hardware the player doesn't have). However, there are significant differences in the frequency bands and the way they use those bands. To each one the other looks like noise to ignore. If it were at all possible to reconfigure the wireless radio of the Zen, and I doubt it since highly integrated an miniturized products rarely include anything they don't absolutely need to accomplish their intended feature set, you'd only be able to use one of the other. To simultaneously support Bluetooth and 802. wireless you'd definitely need multiple radios.

  • How to calculate start date and last date for current week

    Dear All.
    i want to calculate the start of the current week as well as the last date of the current week, our week start from Saturday and ends of Friday i.e. Saturday is the first day of the week and Friday is the last day of the week.
    How can i acheive this in universe Designer?.
    Please help...

    Hi
    the formulas in webi will be as follows
    for startdate
    =RelativeDate(LastDayOfWeek(CurrentDate());-8)
    for enddate:
    =RelativeDate(LastDayOfWeek(CurrentDate());-2)
    Regards,
    Ranganath

  • What are the minimum CPU and Memory requirements for R12 Vision instance?

    We are in the process of trying to figure out what the minimum hardware requirements are for installing the R12 Vision instance. This Vision instance would only have 5 or less concurrent users. We may have to order a new server and we are wondering what the minimum CPU and memory would be? Oracle Support will not give us this information.
    We aleady know how much disk space it will need.
    Dan

    Hi,
    See these links.
    A Primer on Hardware Sizing for Oracle E-Business Suite
    http://blogs.oracle.com/stevenChan/2010/08/ebs_sizing_primer.html
    What Are the Minimum Desktop Requirements for EBS?
    http://blogs.oracle.com/stevenChan/2010/09/ebs_pc_clients.html
    Also, please see old threads for similar discussion.
    Hardware Requirements
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Hardware+Requirements&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Benchmark
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Benchmark&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Anyway to convert m3u playlist for zen vision

    i wana convert them cause i dont wana go thru 00 items and add everything all over takes forever

    Avi is a container format, not a single compression format like mpeg. You will have to determine what compression method is used with the avi files, then find out if such a decompressor/compressor is available for QT for Windows. If you have a sample avi file that works with the Zen application then right-click on the file icon and choose Properties/Details. That should reveal the compression method used. The next step will be to do a search for an avi compressor for QT for Windows. Be aware that not all such compressors are available in a form useable for QT for Windows.
    Of couse, it may be simpler to just get in contact with the makers of this Zen application and ask them where to get the compressors needed.

  • Bought a Mac Mini.  at 18 day's old it started to lock up and not function.  Took it in and they wiped and reinstalled it.  Well at 24 day's old it's been sitting in the box not being used.  First and last Mac for me. But can I get something for the junk?

    I have pulled it out of the box and put 2 Mac approved mem sticks in it to boost it to 8 Gigs mem and it still locks up and freazes..  So many people told me Mac was the way to go...  1500 dollers could have bought me a great pc laptop.  Now I have a wirless mouse keyboard and a mac mini (aka Brick) that allowed me to donate money to a cause that is helping buildings and companies out side of the US.  While I have junk..  It's still under warranty and I reinstalled the os after the new mem sticks.  Again.. locks up and does nothing.  What can I do with this?  Toss it in the trash?  Any info on what I might do with it.. Please help!

    It would be most helpful if you updated your system information:
    Please reconcile the following
    at 18 day's old it started to lock up and not function. Took it in and they wiped and reinstalled it. Well at 24 day's old it's been sitting in the box not being used.
    ... I reinstalled the os after the new mem sticks.
    If your Mini is anything less than six months old it would be running Lion, not 10.6.1, nor would it have been necessary to "reinstall the OS". Any help that anyone can provide is predicated on your system configuration so it's important.
    If you are running Lion then boot your Mini while holding the D key. This will load Apple Hardware Test which will enable you to test your memory. "Mac approved" memory is sort of vague, and even memory that is allegedly designed to meet your Mini's specification may fail. There few reputable memory vendors.
    "Apple installed" memory is more meaningful, and indicates Apple has tested it and guarantees its function. Otherwise all bets are off with a claim of "Mac approved". You will have to verify that yourself with Apple Hardware Test.
    If your Mini was running, or ever ran OS 10.6.1 for that matter, it is close to three years old.
    You must clear up these uncertainties before anyone can help.

Maybe you are looking for