Fiddling with volume slider and sound quality

In an attempt to bypass the infamous volume cap that plagues iPods sold in the EU, in the past I fiddled with the volume slider of many of my MP3 tracks, either directly or via third party applications (such as euPod). Afterwards I have changed my mind and reset the slider.
Later on, I have read a few sources claiming that the above procedure would cause a permanent modification of the MP3 file and/or affect sound quality.
I am somewhat puzzled by such claims... Am I really better off re-ripping all those tracks? Can anyone point me towards an undisputed “truth” on this matter?

The third one is a hardware issue: The earbuds jack
is very loose. Apparently, the iPod automatically
pauses playback when the headphones are disconnected.
Hence, I only have to wiggle the connector a bit and
the nano stops playing. This really would be annoying
if I were to go jogging with my iPod ...
hmmm.. that happens to my ipod too and i only got it for christmas. so i was a bit gentle with it.so hence it comes out very easily.
but whilst reading all the replys i decided to be harsher to my ipod and just push my earbuds in all the way..it worked!! that might be the same for u or i might have just been a bit too forgetfull and thought that my ipod was delicate coz its like.. so preety:)
lol im in love with my ipod ..
dont know if this helps..hope it does..
  Windows XP  

Similar Messages

  • Recording LPs with smart recorder and sound quality off.....

    Hi,
    I have X-Fi Extreme music card on my PC and trying to record some LPs with SmartRecorder. These are classical LPs and I find that when played back, the orchestra (violins, choir, etc) sound like this was recorded in a tin can. Any ideas why this would be? I connected all my cables accordingly and?am still?getting this problem.

    Which type of connection are you using there?
    Do you have preamp stage w/ RIAA there before soundcard (you have connected the PC into your stereo system just the way
    like you connect a casette recorder or you have connected your turntable w/ RIAA preamp directly into soundcard) or
    have you connected your turntable (w/o RIAA + preamp) directly into soundcard?
    If you're using the latter method, you need to have EQ w/ RIAA compensation added into signal (you need some ASIO/VST
    capable recording software which allows you add FXs into signal (Hermann Seib's VSTHost) and an EQ capable for
    compensation curve +20dB (20Hz) - -20 dB (20 kHz) (ddmf:IIEQ). It's possible that you
    can't get levels set high enough w/o adding some gain plug-in into signal path. You can use Sonalksis FreeG VST (stereo)
    for this (in VSTHost, place (route) the FreeG either after or before the EQ (try which works better for you)).
    Also, check if the recording source is set correctly (w/ "What U Hear" option you get all added effects added
    into signal (EAX, CMSS) so it's best to set input as Line-In) and turn all effects OFF.
    If you record into lossy format as mp3 or wma, check that the bitrate is set high enough (I suggest you use bitrates
    256 - 320). Also, do not use addons like Chrystalizer, etc..
    If needed some software, http://www.head-fi.org/forums/showpost.php?p=282263&postcount=7
    jutapaMessage Edited by jutapa on 05-08-200704:02 PM

  • Problem with volume handle and external SWF

    Hello I'm having 2 problems.
    The first is that when loading an external swf in my main SWF I get this in the output window:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at audio_fla::list_1/frame1()
    at flash.display::Sprite/constructChildren()
    at flash.display::Sprite()
    at flash.display::MovieClip()
    at audio_fla::MainTimeline()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at audio_fla::MainTimeline/frame1()
    But it still works. Its an mp3 player.
    The other problem is that the loaded SWF has a volume controller. When I test the external SWF by itself it works fine. When I load it on my main SWF when I start to drag the handle on my volume slider and MOUSE_UP outside the handle it still keep dragging the handle.
    The code of my main SWF is:
    import caurina.transitions.*;
    var _currentCategory:String = "";
    var percent:String = "";
    var loader = new Loader();
    loader.name="videoLoader";
    loadermc.visible=false;
    cat.addEventListener(MouseEvent.MOUSE_OVER, onOverCat);
    cat.addEventListener(MouseEvent.MOUSE_OUT, onOutCat);
    cat.addEventListener(MouseEvent.CLICK, onClickCat);
    btnback.addEventListener(MouseEvent.MOUSE_OVER, onOverCat);
    btnback.addEventListener(MouseEvent.MOUSE_OUT, onOutCat);
    btnback.addEventListener(MouseEvent.CLICK, onClickBack);
    cat.buttonMode = true;
    btnback.buttonMode = false;
    btnback.visible = false;
    function onOverCat(e:MouseEvent):void{
         Tweener.addTween(e.target, {alpha:.5 , time:.5});
    function onOutCat(e:MouseEvent):void{
         Tweener.addTween(e.target, {alpha:.25 , time:.5});
    function onClickBack(e:MouseEvent):void{
         loader.unloadAndStop();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
         lcontent.visible = false;
         cat.visible = true;
         Tweener.addTween(cat, {alpha:1, time:1});
         btnback.buttonMode = false;
         btnback.visible = false;
         cat.buttonMode = true;
         toptxt.text = "SELECCIONE UNA CATEGORIA"
    function onClickCat(e:MouseEvent):void{
         lcontent.visible=true;
         cat.buttonMode = false;
         Tweener.addTween(cat, {alpha:0, time:1, onComplete:function(){
                                  cat.visible = false;                                                       
                                  btnback.buttonMode = true;
                                  btnback.visible = true;
                                       loaderTweenIn(e.target.name);
    function loaderTweenIn (c:String):void{
         var category:String = c+".swf";
         trace(category);
         loader.load(new URLRequest(category));
         loader.contentLoaderInfo.addEventListener (Event.COMPLETE, movieLoaded);
            loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, movieProgress);
    function ioErrorHandler(e:IOErrorEvent):void{
         trace("ioErrorHanlder: "+e);
    function movieLoaded(e:Event):void{
         trace("The movie has loaded");
         lcontent.addChild(loader);
         loadermc.visible=false;
    function movieProgress(e:ProgressEvent):void{
         loadermc.visible = true;
    //     percent=String(Math.floor(e.bytesLoaded / e.bytesTotal * 100)) + "%";
         trace("The movie is loading "+Math.floor(e.bytesLoaded / e.bytesTotal * 100));
    The code on my external SWF is:
    import caurina.transitions.*;
    volume_mc.slider_mc.buttonMode = true;
    var myXML:XML;
    var thb:Thbs;
    var myThumbs:XMLList;
    var totalThumbs:Number;
    var thumbHeight:Number=50;
    var i:uint = 0;
    var preloader:LoaderAnim;
    var yCounter:Number = 0;
    var container:MovieClip;
    var musicReq:URLRequest;
    var music:Sound = new Sound();
    var sc:SoundChannel;
    var currentSound:Sound = music;
    var pos:Number;
    var songPlaying:Boolean = false;
    var songlist:XMLList;
    var currentIndex:Number = 0;
    mc_sound.mute.visible=false;
    var xmlLoader:URLLoader = new URLLoader();
    ///////////////////////////PLAYLIST//////////////////
    function initMediaPlayer(e:Event):void{
         myXML = new XML(xmlLoader.data);     
         myThumbs = myXML.*;
         totalThumbs = myThumbs.length();
         trace("The total thumbs are "+totalThumbs);
         createContainer();
         callThumbs();
    xmlLoader.load(new URLRequest("audio.xml"));
    function createContainer():void{
         container = new MovieClip();
         list.ch.addChild(container);
         container.y = 0;
         container.x = 0;
         container.buttonMode = true;
    function onOver(e:MouseEvent):void{
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:.5, time:1});
    function onOut(e:MouseEvent):void{     
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:1, time:1});
    function callThumbs():void{
              var thumbURL = myThumbs[i].@thumb;
              var thumbTitle:String = myThumbs[i].@title;
              var thumbDesc:String = myThumbs[i];
              trace("Loading "+thumbURL);
              trace("Title "+thumbTitle);
              trace("Desc "+thumbDesc);
              var thumbLoader = new Loader();
              thumbLoader.load(new URLRequest(thumbURL));
              thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
              thumbLoader.name=i;
              thumbLoader.x=5;
              thumbLoader.y=5;
              thb = new Thbs();
              container.addChild(thb);
              thb.thb_title.htmlText = thumbTitle;
              thb.thb_desc.autoSize = TextFieldAutoSize.LEFT;
              thb.thb_desc.htmlText = thumbDesc;
              thb.y = (thumbHeight+2)*yCounter;
              preloader = new LoaderAnim();
              preloader.x = thb.x + 20;
              preloader.y = thb.y+ 20;
              container.addChild(preloader);
              yCounter++;
    function thumbLoaded(e:Event):void{
         var thbx:Loader = Loader(e.target.loader);
         thb.addChild(thbx);
         thbx.addEventListener(MouseEvent.MOUSE_OVER, onOver);
         thbx.addEventListener(MouseEvent.MOUSE_OUT, onOut);
         container.removeChild(preloader);
         i++;
         if (i<totalThumbs){
              callThumbs();
         if (i==totalThumbs){
              startAudio();
    xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
    ///////////////////////////////////////AUDIO//////////////////////////
    function startAudio():void{
         songlist = myXML.*;;//this is the same as myXML.*;
         trace("This is the first song "+songlist[0].@song);
         musicReq = new URLRequest(songlist[0].@song);
         music.load(musicReq);
         sc = music.play();
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);     
    next_btn.addEventListener(MouseEvent.CLICK, nextSong);
    prev_btn.addEventListener(MouseEvent.CLICK, prevSong);
    pause_btn.addEventListener(MouseEvent.CLICK,pauseSong);
    stop_btn.addEventListener(MouseEvent.CLICK,stopSong);
    function nextSong(e:Event):void
         if (currentIndex < (songlist.length() - 1))
              currentIndex++;
         else
              currentIndex = 0;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var nextTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = nextTitle.play();
         songPlaying = true;
         currentSound = nextTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function prevSong(e:Event):void
         if (currentIndex > 0)
              currentIndex--;
         else
              currentIndex = songlist.length() - 1;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var prevTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = prevTitle.play();
         songPlaying = true;
         currentSound = prevTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function pauseSong(e:Event):void
         pos = sc.position;
         sc.stop();
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    function playSong(e:Event):void
         if(songPlaying == false)
              sc = currentSound.play(pos);
              sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
              songPlaying = true;
              play_btn.removeEventListener(MouseEvent.CLICK,playSong);
    function stopSong(e:Event):void
         sc.stop();
         pos = 0;
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    ///////////////////////////////VOLUME/////////////////////////////
    var xOffset:Number;
    var xMin:Number = 0;
    var xMax:Number = volume_mc.track.width;
    volume_mc.slider_mc.addEventListener(MouseEvent.MOUSE_DOWN, sliderDown);
    volume_mc.slider_mc.addEventListener(MouseEvent.MOUSE_UP, sliderUp);
    stage.addEventListener(MouseEvent.MOUSE_UP, sliderUp);
    function sliderDown(e:MouseEvent):void{
         stage.addEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
         xOffset = mouseX - volume_mc.slider_mc.x;
    function sliderUp(e:MouseEvent):void{
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
    function sliderMove(e:MouseEvent):void{
         volume_mc.slider_mc.x = mouseX - xOffset;
         if(volume_mc.slider_mc.x<=xMin){
              volume_mc.slider_mc.x = xMin;
         if(volume_mc.slider_mc.x>=xMax){
              volume_mc.slider_mc.x = xMax;
         var vol:Number = volume_mc.slider_mc.x*.01;
         var st:SoundTransform = new SoundTransform(vol,0);
         sc.soundTransform = st;
         trace("The volume is "+vol);
         if(vol==0){
              mc_sound.mute.visible=true;
         }else{
              mc_sound.mute.visible=false;
         e.updateAfterEvent();

    I found the solution.

  • AVAudioRecorder data usage and sound quality

    Witch is the best setting to the right mix of file size(data usage) and sound quality(ability to hear the conversation) when we work with AVAudioRecorder.
    Thanks
    Willy

    AntonBecker wrote:
    Alternatively, I can avoid the overage fees by agreeing to change my plan -- increase my monthly allowance -- but I have to pay the difference for all of the months that have already gone by all the way back to the beginning of my contract.  In other words, I have to pay for additional GBs for months that are in the past and for which I have no possible way to actually use that data allowance. This is NOT TRUE. You can have the change backdated to the BEGINNING of your CURRENT billing cycle but it WILL NOT go further back than that.
    I must say, that as a business model for raking in un-earned revenue, it's pretty impressive.  As a customer, though, I'm not terribly impressed.
    Does anyone else feel that these practices are just a wee bit unfair, to put it mildly?
    I would think that the following would be fair business practices:
    (1) If I don't use some GB data allowance, for which I've already paid, then that allowance should roll into the next month OR; Verizon doesn't have roll over minutes and they most likely will not have roll over data.
    (2) I should get a refund for data allowance that I don't use. Should you ALSO get a refund for unused minutes while you are at it? I don't watch all of the channels for which my cable company charges me. I would prefer a refund for THOSE before I get a refund for minutes/data from Verizon. I would make a considerably larger refund with that.
    (3) Alternatively, since Verizon believes it is OK to charge extremely inflated overage fees, then I feel it's only fair that they refund to me, at that inflated rate, for GBs that I don't use in any given month.
    How do the rest of you feel? I feel you should most likely look for a provider which better fits your view on how they should price their service. Good luck.
    Sincerely frustrated,
    Anton

  • How to Turn Off Pavillion DV 7 Volume Slider Clicking Sounds

    How can you turn off the annoying Audio Volume Slider clicking sounds when you increase or decrease volume on the Pavillion laptop? I couldn't find a setting in Windows 7..

    I have the same issue.  Have you ever found a solution?

  • Fluctuating volume and sound quality?

    Windows 7.  HP Pavilion Entertainment PC.  Bose speaker system.  Sound seems fine through the iPod Nano and Bose speakers, but fluctuates and seems weirdly compressed through iTunes on the laptop.  Don't remember it ever being that way.  New version of iTunes to blame?  Virus?

    Hello there,
    It sounds like your iTunes volume not functioning correctly when playing through your speakers, but your iPod Nano seems to work just fine with it. I would first check the equalizer to see if it is set to something unexpected in iTunes with this article and verify that your audio is set up correctly:
    iTunes 11 for Windows: Adjust the sound quality
    http://support.apple.com/kb/PH12334
    If the issue persists or that is not the cause of it, I would next use the folliwng to help troubleshoot audio playback in iTunes on Windows:
    iTunes and QuickTime for Windows: Audio does not play or plays incorrectly
    http://support.apple.com/kb/ts1362
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • 6500 Slide terrible sound quality

    Hello,
    i just replaced my SE k810 for a Nokia 6500 slide. The problem with the K810 was battery which only lasted for one day. So i thought i`d give Nokia a try. Compared to the SonyEricsson phone, however the sound quality in Nokia is terrible. When i dial a number and press the call button the phone starts buzzing in my ear and the buzzing continues throughout the call. The sound that i hear is metallic and some of the tones seem to be missing at all.
    Is this a common problem with this phone? I already returned the phone back to the service but as far as i know all they do there is updating the software, which does not fix anything. 6500 slide owners please comment on the problem.
    TY

    I agree, the sound quality, among other things make this the worst phone I have ever had. Nothing works on this stupid phone and no one wants to fix it because the say that it has been damaged by rain. Well, that is not strange when it is open in the top ( you charge the phone from the top, stupid feature). So I have a phone that I can't use...

  • Volume slider and playback volume...

    Hi
    I recently purchased a 120GB Classic and, due to the fact that I don't hear too well, you won't be surprised I find it too quiet (if only I'd known about the 'cap' beforehand so I could have got one from the USA...).
    I bought a half-decent pair of headphones, which has helped, and also got an inline amp (which increases the 'noise' as much as the volume, so I'm not that sold on it...). Anyway, I had the idea of bumping up the volume on iTunes and re-syncing all the songs, so I did.
    I wasn't sure what the effect on quality would be, so I knocked it up about halfway and resynced the iPod. Which took forever.
    I'm pretty sure the iPod is now louder, but I may be imagining it - I'm tempted to put the bar all the way to the top, but if the increase is purely psychological it seems a waste of time (and it does take time!).
    So, does the volume slider affect iPod playback volume?
    Thanks for reading, and thanks again if you can help.

    So, does the volume slider affect iPod playback volume?
    No. If you increase the volume of a song in iTunes, all you do is make it so that the maximum volume on the iPod is reached before the volume bar is at full.
    For example, if you increase a track's volume in iTunes by +100% then when it's on the iPod you will find that that track hits it's maximum volume level at about half volume, and turning the iPod up to full volume will not increase the volume any higher after this point. A track which has not had it's volume altered in iTunes will reach exactly the same sound level, although of course you will need to turn the volume level of the iPod to full in this instance.

  • Volume Slider in Sound Settings Keeps Changing!

    I usually keep the volume slider in settings/sound at max so I can hear the ringer when I have it on. I always did this with my original iphone and I had no problems with this. With the new phone every time I set the slider to max it will revert back to about 2/3 the way across. It does this every time I put the phone to sleep and then reawaken it, every time I take or make a call, essentially every time I do anything after exiting the settings feature. I have done the reset by holding the top button along with the Home button until the Apple logo appears and this doesn't help either. Has anyone else seen this or have a solution?
    John

    I just noticed this on my wife's iphone which was my original iphone that has been updated with the new software. I'm thinking it has something to do with the new software, that phone never did that with me prior to all this.
    John

  • Since IOS 6 update, malfunction with auto rotate and sounds

    Hello. I'm wondering if others have experienced a problem since updating their IPads. Since the update, I've lost the dual functionality of auto-rotate and sounds. I can only have 1 of the functions operate as per norm.  If I want sounds (for keyboard clicks/games/etc.) my screen will not auto orient. Vice versa for auto orientation. Normal rotation is only possible with NO SOUND for the previously mentioned apps. I've performed reboots, and also endeavoured to make the obvious corrections in the General Settings fields. When I uncheck "MUTE"...it automatically places a checkmark in the lock rotation field!!!
    Can anyone offer a solution, to what i perceive, as a software issue?

    Maybe this will help.
    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • GB vs. Logic with respect to overall sound quality

    Are there any technical differences between GB 9 and Logic with respect to the format that sound files are stored in, that would affect sound quality? I know that on the 'best' setting in GB, sound files are stored at 24 bits--is this the same in Logic? Also, is there any ability to dither from 24 bits to 16, in either GB or Logic?

    Meatyard wrote:
    Thanks, this is hugely helpful. Would be good to know what kind of dithering algorithm GB uses and if it's as good as Logic's.
    I don’t believe GB uses the POW-r algorithm.
    When POW-r first came out, it was hardware only - several thousand dollars for a dedicated POW-r box. Then it was available in software, and then other companies could license it.
    Because it's licensed tech, Apple pays for and markets its inclusion in Logic, but I'm not sure what would motivate them to include it in GB. Apple has its own in-house dithering algorithms that wouldn't cost them anything to include, and I would imagine the number of GB users who know what POW-r or any kind of dithering is, or care about the different flavors, is exceedingly small.
    Given that GB is included in every new Mac, including POW-r for each and every one would be a substantial license for something almost none of the users would know or care about.

  • How to improve speakers and sound quality on Satellite C850-1GL

    just bought a Toshiba C850-1GL, very happy with it, with the exception of the sound quality, any suggestions on how this can be improved before I go and buy some external speakers...?

    As far as I know you cannot do much about that. This notebook has standard stereo speakers and not high quality Harman/kardon like some other models so if you want to have good and brilliant sound you need external speakers.

  • Help with volume slider for video player

    I'm trying to set up a slider that will adjust the volume of
    the video that is playing. I currently have a slider that adjusts
    the progress of the video that works just fine. I set my volume
    slider up the same way (as far as making it slide and the bounds
    it's contained within) but it fails to actually be draggable. I
    click on the slider and it disappears from view instead of allowing
    me to drag it. It's been a while since I've done any AS work and
    I'm struggling to figure out the problem here as everything appears
    to be correct. Any help would be greatly appreciated. You can view
    a demo
    here.
    I've attached my source code below.

    Nevermind, figured it out. Problem was I'm just retarded with
    math.

  • Episodes with corrupted video and sound

    I have a season pass for Chuck season 3, and i have reported errors on some of the episodes where the end is corrupted so the picture freeze and sound is just noise.
    Unfortunately the support wont help, they just say that i cant get a refund (i never asked for refund, just for a new download of the file) are there anywhere i can contact when support wont help?

    Hi,
    What operating system are you on?
    Does this only happen with the nightly or can you reproduce this on other browsers as well?
    Are videos playing on the other tabs?
    To confirm what you are seeing:
    12 youtube pages are open by the time you get to 12 or 13 the video and audio are corrupted?
    Thanks

  • Rebuilding library after hard drive crash AND sound quality of iPod files?

    Hi all,
    I had a hard drive crash and hadn't done a back-up in awhile. My iPod was up-to-date though. I used third-party software to grab the music off the iPod. So now I a good portion of my library back up to another hard drive AND the entire library pulled off my iPod. Should I just direct iTunes to the files I pulled off the iPod or direct it to the backup and add the missing files from my iPod files? Clear as mud?
    Also what will be the sound quality of the files I pulled from the iPod?

    If you copied the files from the iPod to a folder on your computer then open iTunes and go to File>Add Folder to library and add the songs back into iTunes (or simply drag the folder from it's location to the iTunes Source pane, - the long pane on the left. They should sound fine since they are simply copies of the originals. Before you add them check your iTunes preferences, go to Edit>Preferences>Advanced and make sure the boc "Copt files to iTunes Music folder when adding to library" is checked.

Maybe you are looking for