Web based use of Ipod (5g)

Hello,
I've got an old iPod (5g) that I until recently used as a music player at work.
We've just gotten new computers, which is nice, but we've also become restricted users, meaning I can no longer install itunes. Bummer.
The support guys from my job says that its intentional, and we are not allowed to install itunes. However, listening to music isn't a problem.
Are there any browser based applications/plugins/sites that allows me to play music from my iPod?. (Firefox is installed).
I've searched high and low, but am only finding install-based software.
(I know about online music players, but would still like access to my iPod)
Message was edited by: Reffi

If you only use it at work, you could use it as an external drive. If you enable disk use, you can use it as a traditional USB drive and listen to files directly from the folders. I'd bet your work computer has windows media player. The downside of this is that you won't have the iTunes interface you have been using, and your play counts won't be counted. Keep this in mind...if you have disk use enabled and you use 75% of its capacity as a disk, then you would only have the remaining 25% that could be used as an iPod with iTunes.
You might be better off getting an external drive and just copying everything over and using WMP. This will allow you to use the iPod as you normally would.
Another option, which I've never tried, is to copy all your music and install iTunes in an external drive and run it from there. I've searched that topic and found some good ideas on that, just haven't tried it.

Similar Messages

  • Building Web Based VoIP Phone using Flex

    Hi, all.
    I want to build a sip client web based using Adobe Flex. Anyone can tell me how I start?
    By the way, I use Asterisk as communication server.
    In other discussion, I find the google alchemy, but I still don't know what it is.
    Please your answer, all flex master.
    Thanks.

    I'll move this to off-topic since you've been correctly pointed to forums.asp.net.  I just want to mention that whatever that article was demonstrating is probably irrelevant in today's web development ecosystem.  For example, an event calendar
    is likely to be its own web control that you can just drop onto a web form (or otherwise instantiate in a web page).  I know of a couple retail components that can do it and there are probably free ones available too.  Even if you build your own
    it will likely be little more than an existing calendar control with perhaps some custom rendering code.
    Reed Kimble - "When you do things right, people won't be sure you've done anything at all"

  • I need Firefox 3.6. How can I go back? I need it for a web-based software application that I use at work.

    At work (University of Texas at Arlington), I use a vendor-provided web-based application that requires Firefox 3.6. I've uninstalled Firefox and tried to install 3.6, but I got Firefox 6.0. When I start Firefox now, it sometimes automatically updates so that at this point I'm using 7.0. I've lost some functionality in the application, and the vendor's tech support is not able to help with some things such as printing pages, user preferences, etc.

    You can get firefox 3.6.23 here
    * http://www.mozilla.org/en-US/firefox/all-older.html
    * see also [[installing a previous version of firefox]]
    You may consider seeing if there is a firefox 3.6.23 portable version available if you are using it for one particular application only, you could then use firefox 7 for other browsing.
    * see http://portableapps.com/apps/internet/firefox_portable

  • WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER

    Dear Sir,
    please any one can answer me as soon as possible its very urgent
    WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER
    I     As oracle mapviewer Chapter 8 (Oracle Maps) says generating our own Web based mapping application we are trying to generate our own maps for our own data contains in our layers like example boundary lines and roads and etc. and we are following complete example as described in Oracle Mapviewer Document Chapter 8.
    Before this step we tried with demo data downloaded from OTN mvdemo. And we downloaded latest demo today itself from the OTN and imported into our database schema called mvdemo. And we copied all three jar files mvclient and mvconnection and mvpalette into our jdeveloper .
    II.     We created a jsp to execute the following code from oracle mapviewer chapter 8 documents
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/customizable" prefix="cust"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jwcache.tld"
    prefix="jwcache"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/fileaccess.tld"
    prefix="fileaccess"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jesitaglib.tld"
    prefix="JESI"%>
    <f:view>
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html" charset=UTF-8>
    <TITLE>A sample Oracle Maps Application</TITLE>
    <script language="Javascript" src="jslib/loadscript.js"></script>
    <script language=javascript>
    var themebasedfoi=null
    function on_load_mapview()
    var baseURL = " http://localhost:8888/mapviewer/omserver";
    // Create an MVMapView instance to display the map
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    // Add a base map layer as background
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    // Add a theme-based FOI layer to display customers on the map
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','mvdemo.customers');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    // Set the initial map center and zoom level
    mapview.setCenter(MVSdoGeometry.createPoint(-122.45,37.7706,8307));
    mapview.setZoomLevel(4);
    // Add a navigation panel on the right side of the map
    mapview.addNavigationPanel('east');
    // Add a scale bar
    mapview.addScaleBar();
    // Display the map.
    mapview.display();
    function setLayerVisible(checkBox){
    // Show the theme-based FOI layer if the check box is checked and
    // hide the theme-based FOI layer otherwise.
    if(checkBox.checked)
    themebasedfoi.setVisible(true) ;
    else
    themebasedfoi.setVisible(false);
    </script>
    </head>
    <body onload= javascript:on_load_mapview() >
    <h2> A sample Oracle Maps Application</h2>
    <INPUT TYPE="checkbox" onclick="setLayerVisible(this)" checked/>Show customers
    <div id="map" style="width: 600px; height: 500px"></div>
    </body>
    </html>
    </f:view>
    <!--
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>mapPage</title>
    </head>
    <body><h:form binding="#{backing_mapPage.form1}" id="form1"></h:form></body>
    </html>
    -->
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_mapPage--%>
    III.     When we run this jsp it’s giving us following Two errors
    1     Error:     ‘MVMapView’ is undefined
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    2     Error:     ‘themebasedfoi’ is null or not an object
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    Please let us know what could be problem as soon as possible. Very urgent
    Please let us know where we can find Mapviewer AJAX API’s for Jdeveloper Extention
    Thanks
    Kabeer

    I currently use parameters, and they are passed from the form to the report. Report is then generated based on a function returning ‘strongly typed’ cursor. The ‘strongly typed’ cursor in my case returns a record consisting of an orderly collection of fields.
    This collection of fields is returned by another function that relies on the IF … THEN logic.
    However, the number of IF ... THEN statements is quite large (currently 64 covering all possible combinations of 6 parameters available in the form).
    I would like to avoid the large number of IF … THEN statements, and hope that there is a way of passing a string to a query, where the Dynamic SQL would in Select close and Where close reflect parameters passed by the form.
    In addition to this I would like to avoid creating and populating a table or a view dedicated to the report, because this may lead to a conflict in case of multiple users concurrently generating reports with different choice of parameters.
    Edited by: user6883574 on May 28, 2009 9:16 PM

  • We are evaluating the use of iPod touch devices to record best practice videos on our manufacturing floor and to post to an internal Moodle web site. How can you upload a video from the iPod touch to a site other than YouTube?

    We are evaluating the use of iPod touch devices to record best practice videos on our manufacturing floor and to post to an internal Moodle web site. How can you upload a video from the iPod touch to a site other than YouTube? The Moodle upload interface is expecting a file selection dialog box like windows or OSX. I do not want to have to go through an intermediary step of messing with a pc.
    Thanks!

    It should be around 7 and a half gigs. In iTunes, across the bottom there should be a bar that show how much storage is being used and by what. (music, movies, apps, etc.) To make music take up less room, you can check the box to make it convert the music to 128kbps AAC. This lowers the quality, but with most earbuds and speakers, you can't even tell the difference.
    The iPod touch has parental controls built in. You'll find them in Settings. I think they only work for enabling/disabling Safari, Mail, YouTube, and App Store. Here's an app that does more: http://www.mobicip.com/online_safety/ipod_touch

  • I use a web based PO system for work. It should let me see an image of scanned Invoice attached, but I can't seem to be able to from my home PC (e-Finance).

    HI,
    I use E-Finance as a web based application for managing company purchase orders.
    It allows to drill into our Finance system and view Invoice documents that have been previously scanned.
    I can do this using Internet explorer, but I don't seem to be able to in Firefox. I believe it to be linked to the Internet Security settings on the PC, but I cannot find in FIrefox similar options to those in the Advanced tab in Internet explorer.

    It seems no one here is familiar with this application.
    Which IE settings need to be changed? While Firefox doesn't have the same approach to security (e.g., by "zone") there may be some parallels.
    In case the problem is the built-in PDF viewer introduced in Firefox 19, try the steps in this article: [[How to disable the built-in PDF viewer and use another viewer]].
    Does that make any difference?

  • After using my iPod classic in my infinity G35 a few weeks ago, I took it out of the car and it no longer works.  Just a white screen with the web address for Apple iPod support.  Worked fine when hooked up to iPod jack in car.  But wont work anywhere now

    After using my iPod classic in my infinity G35 a for the last few weeks, I took it out of the car and it no longer works.  Just a white screen with the web address for Apple iPod support.  Worked fine when hooked up to iPod jack in car.  But won't work anywhere now.  I tried re-setting but has not worked.  Any ideas would be appreciated.

    I finally resolved my problem after spending way too much time on it. I simply handed my 160GB iPod to my husband to put his fav Stones & Beatles songs on and I went back to my 80GB Microsoft Zune which has never disappointed me.
    After spending so much time trying to figure this out I did finally take it back to Apple Store who performed a diagnostic and found there was a problem with the device. They replaced it with a refurbished one which has similar issues. All I wanted to do was listen to my music. Was that too much to ask? So I am happy to be free of this problematic device. No more Apple for me!!

  • Using project libraries for both web-based and AIR applications

    I need to develop substantial code to build both web-based and AIR applications.  Yes, they will have different features, especially when it comes to accessing files on the local file system.
    However, 98% of the code can be shared.
    I want to use a project library that can be used for both types of applications. Maybe using conditional compile when required to not use AIR API's in a web-based application.
    I found this (somewhat old) warning:
    Include Adobe AIR libraries Select this option if your library must use AIR features, such as access to the AIR APIs. Flex Builder then changes the library path of this new Flex Library project so that it includes airglobal.swc and airframework.swc. Web-based Flex projects cannot use this library.
    Do not select this option if you are writing a generic library intended to be used only in a web-based Flex application, or in either a web-based or AIR-based application.
    Does this apply to Flash Builder 4.5?

    I have found a workaround, but it's quite clumsy, involving a transfer vector (in old-fashioned terms) in the main application for each function in the AIR library.
    I have created a library for AIR classes only (fourdtext.fileOperations is there). 
    The AIR application provides "Function" values that any other code in the general-purpose libraries can use.
    It works, but it's nasty.
    In Main.mxml:
    import com.fourdtext.fileOperations.AxFiles;
    // this gets a list of native path strings, from and array of "File" objects
    public var AxGetListFunction:Function = AxGetListRedirect;
    private function AxGetListRedirect(list:Array):Vector.<String>{
        return AxFiles.AxGetList(list);
    In general-purpose code:
    var list:Array = event.dragSource.dataForFormat("air:file list") as Array;
    var AxGetList:Function = FlexGlobals.topLevelApplication.AxGetListFunction;
    listFiles = AxGetList(list);

  • How can I video chat with someone who uses web based yahoo?

    Not long ago I purchased my first Mac (New MacBook Pro 2.53GHZ); last Summer I also purchased a MacBook Pro for my daughter. Everything works great (like driving a formula one Porsche after grappling with a battered pick-up truck (meaning Windows) for many decades; cannot imagine ever going back. But, there is one issue that I have not been able to solve and for which I would greatly appreciate any suggestions or advice. I am familiar with ichat and with AIM (my daughter uses it all the time). However, the vast majority of people with whom I communicate via IM live in parts of the world where very few people have even a computer at home much less residential internet access. As a result, near all of the folks I would be chatting with have to use public computers (internet cafes, libraries, etc) and obviously they cannot install AIM or anything else on those public computers. About 90% of them use the web based yahoo messenger which can be accessed from any computer with an internet connection (most of the rest use MSN). My question is this: I know how to do video chat in ichat but ichat does not support yahoo. How can I do video chat with someone who is using web based yahoo on a public computer that has a USB web cam? I was able to do this on my old PC which had a plug in web cam but do not know how it might work on a Mac. Should I install yahoo messenger on my MacBook Pro and will that work for me?. I know about some other Mac compatible chat clients such as Admiun but as far as I can tell none of them support video chat or in some cases yahoo. Perhaps I am overlooking something. I would be very grateful for any suggestions or advice in this matter. Thanks to anyone who reads this post and has any helpful info.

    Zurich,
    I don't think the web-based Yahoo Messenger supports video, so nothing you can do with that.
    http://messenger.yahoo.com/features/
    I think there are Mac compatible MSN clients that will do video, (i.e. aMSN) Also, Microsoft plans on releasing an updated version of Messenger for Mac soon.
    http://www.officeformac.com/blog/An-Update-on-Messenger-for-Mac
    GoogleTalk does have a browser based video chat, but your friends would need to install a browser plug-in. (which I would assume that can't do either)
    The best option is Skype, but also requires an install on their end (I would think that the internet cafes would/should have this available)
    Good Luck,
    Double_A

  • How can I add a different web-based email program to use as my default 'mailto:' function?

    When I go to Settings -> Applications and click on 'mailto', I see 'Use Yahoo mail, Use Gmail, and Use other...'. I want to use the Go Daddy Workspace Webmail application, which like Yahoo & Gmail, is a web based program, but don't see any way to add that option. The 'Use other...' option is only looking for an executable file and it won't accept a web-based command.

    I found an old thread about the same type of issue. I cannot be certain whether it still works or not. Feel free to checkout the thread [https://support.mozilla.org/en-US/questions/917427 here].

  • What is Digital Signature, How to use it in web based applications?

    I am new to digital signatures. Any body can help me how to create a digital signature and how to use it in web based applications. Do we need certificates to use digital signatures?

    <link_farm_and_everything_else_removed_by_moderator>
    Edited by: Julius Bussche on Sep 3, 2008 8:59 AM

  • Insert doc/pdf/jpg into BLOB using forms (web based)

    Hi All,
    we have 81741 db on window2000(data server), forms6.0.8.20.1 on windows2000(webserver)
    & users using IE6/netscape as setup. User wants to store a pdf/doc/jpg file (stored on his PC)
    into database.
    He wants ability to view this pdf/doc/jpg later & have ability to download again to his pc. Please note
    that we have web based setup & not using HTTP server (using WebDB listener).
    I am planning to use BLOB to store the table in database, but cannot figure out what/how to force forms
    to do this.
    If someone has done this before, could you please update this thread on how to proceed.
    Thanks a lot for your input...
    Abhi.

    AS far as inserting images you can use the image item in Oracle Forms and base it on a blob column in the database.
    Regarding the other types of data you can upload them to the database using a Java function on the application server (use the java importer from Forms to call the Java class). You can use another Java function to retrieve the info from the database to the application server, and then use web.show_document to get the file from the application server to the client.
    Or you can wait a few weeks for the Webutil utility that will have this functunality built into it.

  • Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Thanks for the reply. I'll have a look at your solution.

  • Cannot connect using Accessing the Router's Web-Based

    I'm trying to update firmware, I have done all the step to access the router's web-based.. I connected DSL to the Ethernet port on the router, from the router I used another Ethernet cable to connect the router to my laptop.. I can't get an internet connection.  The reason why I'm doing the update I have been using WRT54G2 V1 with no problems, all at once I can't connect to the internet using the router.  I was told that I need to perform a firmware update.
    Thank you for the help

    What' s the ip address and the default gateway are you getting on the computer ?
    Connect the DSL modem to the Internet port of the router then use port number one on the router to connect the computer.
    Click on Start > Run > type CMD hit Enter command promt window will appear on the screen.
    In the command promt window tupe "ipconfig" hit Enter. Now you will see the ip address and the default gateway on the screen. Use the default gateway to open the setup page of the router.

  • Building a Web-based Event Calendar using VB in aspx 4.0

    Technical Article back in 2000, written by Scott Semyan (July 2000) titled "Building a Web-based Event Calendar" detailed an example of how to create a simple event calendar in asp. 
    I am new to aspx .NET codind (using VB), and I have attempted to recode to the newer framework to no avail.  Do you have an update of this article for ASPX 3.0 and up?
    And if not, is there sample code for me to use to create a web-oage using aspx with vb in 4+?
    thx
    Manuel

    I'll move this to off-topic since you've been correctly pointed to forums.asp.net.  I just want to mention that whatever that article was demonstrating is probably irrelevant in today's web development ecosystem.  For example, an event calendar
    is likely to be its own web control that you can just drop onto a web form (or otherwise instantiate in a web page).  I know of a couple retail components that can do it and there are probably free ones available too.  Even if you build your own
    it will likely be little more than an existing calendar control with perhaps some custom rendering code.
    Reed Kimble - "When you do things right, people won't be sure you've done anything at all"

Maybe you are looking for

  • PLEASE HELP MY PHONE WONT TURN ON

    Last night I was walking in the rain and a bit of water may have got inside my phone, it was working fine whilst I was in the car, but when I got to my front door I threw it into my bag so it turned off. I left it about 20 minutes before I went back

  • Google Calendar is now fully supported by Safari 2.0.3 under Mac OS X 10.4

    This change has been posted to the Google Help Center: Which browsers does Google Calendar support? Currently, Google Calendar fully supports the following browsers: - Microsoft Internet Explorer (IE) version 6.0 (for Windows) - Mozilla Firefox versi

  • Qr code idea

    Hi , i have an idea for a Qr Code, i was wondering can Qr codes be used to download images and videos? 2nd  can a Qr code be used to down load a image of a business card? if so how would that be created? 3rd. can it be used to down load a portfolio g

  • ITunes podcasts mess up Apple TV

    I like Apple TV, I really do. I also like using iTunes on my Macmini to download podcasts and then sync those podcasts to my Apple TV. That is so cool. What I do not like is the fact that Apple TV seems to crash (yes, crash) when playing content that

  • Online Code Walk-Through Wednesday on How To Build an OSMF Player Strobe Media Playback

    Wednesday November 17 at 12:00 noon PDT the OSMF User Group is hosting an online  code walk-through of the open source Strobe Media Playback video  player codebase. The code walk-through will be lead by Andrian Cucu who is  Adobe's Project Leader on