Vimrc versus gvimrc

So I have a perfect working ~/.gvimrc file, which sets all my prefered options and gets my editor of choice set up just right.  I copy this to a ~/.vimrc so that in console mode I get the same effect, and for some reason my color scheme doesn't get applied.  Any ideas why? All I added was the latex plugin for latex, set line numbering, and wrap on, and tried to set a color scheme.  All .vim color schemes are in ~/.vim/colors/.
" An example for a vimrc file.
" Maintainer: Bram Moolenaar <[email protected]>
" Last change: 2006 Nov 16
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc
" When started as "evim", evim.vim will already have done these settings.
if v:progname =~? "evim"
finish
endif
" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible
" REQUIRED. This makes vim invoke latex-suite when you open a tex file.
filetype plugin on
" IMPORTANT: win32 users will need to have 'shellslash' set so that latex
" can be called correctly.
set shellslash
" IMPORTANT: grep will sometimes skip displaying the file name if you
" search in a singe file. This will confuse latex-suite. Set your grep
" program to alway generate a file-name.
set grepprg=grep\ -nH\ $*
" OPTIONAL: This enables automatic indentation as you type.
filetype indent on
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
" let &guioptions = substitute(&guioptions, "t", "", "g")
" Don't use Ex mode, use Q for formatting
map Q gq
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endif
" Only do this part when compiled with support for autocommands.
if has("autocmd")
" Enable file type detection.
" Use the default filetype settings, so that mail gets 'tw' set to 72,
" 'cindent' is on in C files, etc.
" Also load indent files, to automatically do language-dependent indenting.
filetype plugin indent on
" Put these in an autocmd group, so that we can delete them easily.
augroup vimrcEx
au!
" For all text files set 'textwidth' to 78 characters.
autocmd FileType text setlocal textwidth=78
" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid or when inside an event handler
" (happens when dropping a file on gvim).
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
augroup END
else
set autoindent " always set autoindenting on
endif " has("autocmd")
filetype plugin on
set grepprg=grep\ -nH\ $*
let g:tex_flavor = "latex"
colorscheme slate2
set nu
set lbr

IIRC vim and Gvim colour schemes do not translate to the same colours.  That is, they are not an exact match. Gvim colour schemes are 256-colour (?) while vim colour schemes are limited to 16-colour by default (using the colours specified in ~/.Xdefaults). Not much help, I know.  I don't spend enough time in Gvim to ever worry about it, but I think it's possible to set them up to match.
Last edited by thayer (2008-10-04 16:18:43)

Similar Messages

  • Vim ignores statusline setting in vimrc [Solved]

    Dear Archers,
    I'm trying to modify my vim statusline. At this stage, my goal is to get vim to recognise any kind of statusline modification made in the vimrc, because at the moment no such modification appears to be recognised whatsoever.
    I tried both a sample vimrc from the wiki and a blank vimrc containing nothing but the line,
    set statusline=%t
    For both vimrcs, the statusline setting was ignored. When I'm in vim, I can manually run the command,
    :set statusline=%t
    and the effect is apparent and immediate. All my other vimrc settings appear to be parsed in the correct manner; only this one specific setting seems to be ignored (but without warnings/errors).
    I also did general googling on such topics as
    Me Googling wrote:"vimrc" "ignores" "statusline"
    and found this Stack Overflow thread which suggests using ruler instead of statusline, but still I couldn't get it to work.
    If anyone can point out what I'm doing wrong, I would really appreciate it.
    Last edited by /dev/zero (2012-05-31 22:15:49)

    JackH79 wrote:
    Strange. Is vim at least using any other modifications in your vimrc?
    If no, then I'd say that maybe it doesn't use the same vimrc you're working with.
    If it does, then I'm out of ideas for the moment.
    Edit: Maybe check this.
    Thanks for your help. I noticed this problem while trying to modify my existing vimrc, which is much larger. That pre-existing vimrc works quite well, with or without these changes to the statusline settings. The changes just get ignored. This leads me to think that $HOME/.vimrc isn't being ignored entirely. For some reason, only the statusline part seems to be ignored.
    The output of
    :version
    within vim appears identical to
    vim --version
    within bash, and so:
    $ vim --version | grep vimrc
    system vimrc file: "/etc/vimrc"
    user vimrc file: "$HOME/.vimrc"
    system gvimrc file: "/etc/gvimrc"
    user gvimrc file: "$HOME/.gvimrc"
    I could suppose that some error is making vim fall back on /etc/vimrc - but wouldn't this also make an error message appear, and make the colorscheme fall back to default as well? If there's a problem, then shouldn't the commands fail to work when I run them manually, and shouldn't a warning or error be issued?
    I could post my normal vimrc, but I think at this stage it would just muddy the waters. I'd like to focus on getting the given minimal vimrc to work first. After that, I will see whether the solution works in a more realistic vimrc.

  • Vim ignores ~/.vimrc [solved]

    Since update to 7.1.68-1 vim no longer reads my ~/.vimrc.  Some commands (i.e. set number) work when entered manually, others do not (syntax on reports "Sorry, the command is not available in this version.")
    Any clues to recover line numbers and syntax?
    Thanks.
    Edit:
    Ooops! Solved, it seems that I was executing the classical vi. Before the update vi was the same as vim, now it seems they're different binaries and although :help in vi reports "Vim version 7.1", it behaves as vi.
    These lines in ~/.bashrc resume previous behaviour:
    export EDITOR=vim
    export VISUAL=vim
    alias vi=vim
    Last edited by atordo (2007-08-14 01:22:07)

    JackH79 wrote:
    Strange. Is vim at least using any other modifications in your vimrc?
    If no, then I'd say that maybe it doesn't use the same vimrc you're working with.
    If it does, then I'm out of ideas for the moment.
    Edit: Maybe check this.
    Thanks for your help. I noticed this problem while trying to modify my existing vimrc, which is much larger. That pre-existing vimrc works quite well, with or without these changes to the statusline settings. The changes just get ignored. This leads me to think that $HOME/.vimrc isn't being ignored entirely. For some reason, only the statusline part seems to be ignored.
    The output of
    :version
    within vim appears identical to
    vim --version
    within bash, and so:
    $ vim --version | grep vimrc
    system vimrc file: "/etc/vimrc"
    user vimrc file: "$HOME/.vimrc"
    system gvimrc file: "/etc/gvimrc"
    user gvimrc file: "$HOME/.gvimrc"
    I could suppose that some error is making vim fall back on /etc/vimrc - but wouldn't this also make an error message appear, and make the colorscheme fall back to default as well? If there's a problem, then shouldn't the commands fail to work when I run them manually, and shouldn't a warning or error be issued?
    I could post my normal vimrc, but I think at this stage it would just muddy the waters. I'd like to focus on getting the given minimal vimrc to work first. After that, I will see whether the solution works in a more realistic vimrc.

  • Vim issues...meta keys and colorscheme not working correctly

    The first issue isn't really a vim problem, but it's related.  When running Vim in a terminal, my meta key bindings don't work.  I've tracked it down to a problem with Xfce's Terminal as noted here: http://vimdoc.sourceforge.net/htmldoc/m … p-alt-keys
    ...but I'm not sure exactly how to fix it.  I suppose I could always switch to another terminal, but I'd like to stick with Xfce's version if possible.
    The second issue is that my color scheme isn't being set when I first load up gVim.  As soon as I open a file, it properly displays, but the "splash" page doesn't show it.  I'm using desert (who doesn't) and this is what it looks like when I first load up gVim:
    I did stop using a separate <code>.gvimrc</code> in favor of putting everything in my <code>.vimrc</code> file under a conditional, and all the other settings work just fine.  Here's what that conditional looks like:
    if has( "gui_running" )
    set columns=84 " Set the window's width
    set lines=43 " Set the window's height
    set guioptions-=T " Remove the toolbar from the window
    set guifont=Terminus 12 " Use a clean monospaced font
    colorscheme desert
    else
    set background=dark
    colorscheme desert
    endif
    In case you're curious, here's my entire <code>.vimrc</code> file.

    phrakture wrote:IIRC this happens for because gvim does not find a ~/.gvimrc and reads /etc/gvimrc after ~/.vimrc (I think).
    Try symlinking ~/.vimrc to ~/.gvimrc
    That solved the problem for me. Thanks 

  • [solved]where is syntax.vim?

    Since the update to (g)vim 7.1.68, the folder /usr/share/vim/syntax is empty, no syntax.vim.. nothing.
    my .vimrc and .gvimrc are not working..
    what a crap
    Last edited by defcon (2007-08-15 04:06:24)

    My /usr/share/vim/syntax has 498 *.vim files in it, all owned by vi 7.1.68-1  I suppose this happened with the splitting of the vi/vim/gvim packages.  See http://archlinux.org/news/336/

  • Help with bash function(set background=dark/light in vimrc)

    I couldn't find any gvimrc files so I guess it uses the regular one. And since I work pretty much in X too  I thought it would be nice with a function that sets background=light if I'm in X an background=dark if not. Is that possible?
    /Richard

    vimrc configuration is not the same as bash.
    You probably want something like this in your ~/.vimrc:
    if has('gui_running')
    set background=light
    else
    set background = dark
    endif

  • Gvim uesrs, help me with my .vimrc :(

    Hey guys, tried to start using vim, having this really weird problem with gvim on my laptop: I have the following .vimrc, I just wanted it to change to the colorscheme "slate" upon startup, but havn't had any success yet. Here's the my .vimrc file, what am I doing wrong?
    " An example for a vimrc file.
    " Maintainer: Bram Moolenaar <[email protected]>
    " Last change: 2006 Nov 16
    " To use it, copy it to
    " for Unix and OS/2: ~/.vimrc
    " for Amiga: s:.vimrc
    " for MS-DOS and Win32: $VIM\_vimrc
    " for OpenVMS: sys$login:.vimrc
    " When started as "evim", evim.vim will already have done these settings.
    if v:progname =~? "evim"
    finish
    endif
    " Use Vim settings, rather then Vi settings (much better!).
    " This must be first, because it changes other options as a side effect.
    set nocompatible
    " allow backspacing over everything in insert mode
    set backspace=indent,eol,start
    set history=50 " keep 50 lines of command line history
    set ruler " show the cursor position all the time
    set showcmd " display incomplete commands
    set incsearch " do incremental searching
    " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
    " let &guioptions = substitute(&guioptions, "t", "", "g")
    " Don't use Ex mode, use Q for formatting
    map Q gq
    " Switch syntax highlighting on, when the terminal has colors
    " Also switch on highlighting the last used search pattern.
    if &t_Co > 2 || has("gui_running")
    syntax on
    set hlsearch
    endif
    " Only do this part when compiled with support for autocommands.
    if has("autocmd")
    " Enable file type detection.
    " Use the default filetype settings, so that mail gets 'tw' set to 72,
    " 'cindent' is on in C files, etc.
    " Also load indent files, to automatically do language-dependent indenting.
    filetype plugin indent on
    " Put these in an autocmd group, so that we can delete them easily.
    augroup vimrcEx
    au!
    " For all text files set 'textwidth' to 78 characters.
    autocmd FileType text setlocal textwidth=70
    " When editing a file, always jump to the last known cursor position.
    " Don't do it when the position is invalid or when inside an event handler
    " (happens when dropping a file on gvim).
    autocmd BufReadPost *
    \ if line("'\"") > 0 && line("'\"") <= line("$") |
    \ exe "normal! g`\"" |
    \ endif
    augroup END
    else
    set autoindent " always set autoindenting on
    endif " has("autocmd")
    :colo native
    set tabstop=4
    set shiftwidth=4
    set expandtab
    set textwidth=70
    set grepprg=grep\ -nH\ $*

    nvm.. apparently I need to put it in .gvimrc rather than .vimrc... how stupid of me

  • [Solved] Vim tabstop override not working through .vimrc

    I'm getting to know Vim and am trying to set my tabstop settings in ~/.vimrc. I've added the lines below:
    set autoindent " always set autoindenting on
    set tabstop=4
    set shiftwidth=4
    set noexpandtab
    set softtabstop=4
    Yet when i start Vim and type 'set tabstop' it still reports back 8, so the settings above apparently don't work. If i 'set tabstop=4' from within Vim it works fine, just only for the current session.
    Other settings in .vimrc are read okay, so i don't think the problem lies there.
    system vimrc file: "/etc/vimrc"
    user vimrc file: "$HOME/.vimrc"
    user exrc file: "$HOME/.exrc"
    fall-back for $VIM: "/usr/share/vim"
    Any ideas?
    Last edited by litemotiv (2009-05-20 14:28:36)

    karol wrote:Any chance it's a .virc / .vimrc / .gvimrc or /root/.virc etc. mismatch?
    ~/vi(m)rc doesn't work, but ~/.vi(m)rc does - mind the dot :-)
    No i don't think so:
    [ollie@arch ~]% ls .v*
    .viminfo .vimrc
    I also have some other settings in the file like 'set number' and a colorscheme, that do get loaded..

  • Outputting DVI to HDMI input in LCD TV versus using the DVI to RGB ?

    I am thinking of buying a mac mini to connect to a Toshiba 20HL85 TV in the lounge primarily to act as a "media server" and accessing Front Row for music, photo's, DVD watching etc. The question is which connection to use to go from the mini to the TV for Video (audio is fine as it will route into my AV Receiver)? The TV has an HDMI input, component video, s-video and a VGA port. The user manual for the TV says:
    Note: The HDMI jack is not intended for connection to and should not be used with a personal computer. For PC connection, use VGA cable and connect to the VGA port. The VGA port allows the following resolutions:
    Monitor Display modes:
    VGA 640x480 60Hz
    SVGA 800x600 56.3Hz
    SVGA 800x600 60.3Hz
    XGA 1024x768 60Hz
    WXGA 1280x720 60Hz
    WXGA 1280x768 60Hz
    I wanted to know a few things as I have no experience with the MAC mini and HDMI:
    1. Will I not get a better/crisper/sharper picture if I connect through a digital port like HDMI versus going through the VGA port?
    2. I have checked a few LCD TV's user manuals and they all seem to say the same thing i.e. "Do not connect a PC to the HDMI port" - I fail to understand this when the Apple site specifically says under "accessories for the MAC mini" that "HDMI is electrically similar to DVI, but has a different physical connector that may include an audio signal. You’ll need a DVI to HDMI adapter, such as the Belkin PureAV HDMI to DVI cable to use these televisions".
    3. What am I missing? Should I just go ahead and buy the DVI to HDMI cable and MAC mini and plug it in i.e. has anyone done this and had it work? Is it better than VGA (I would hope so)?
    Bottom line is does the MAC mini connect to any TV with an HDMI port or are there different types of HDMI ports and hence I need to search for the right TV first? If so, what must I look for? Thanks for any help I can get.
    Power Mac G5 Dual 2GHz   Mac OS X (10.4.5)  

    One word of advice. I just hooked up my mini to my 32" Lowe HD TV using a DVI to HDMI cable and it doesn't just work. The native resolution of the TV is not available for whatever reason so I have to bodge another resolution which looks terrible. When I plug my powerbook in via a DVI to VGA connector it just does work selecting the correct resolution automatically.
    Either the problem lies with the mini or with connecting to the HDMI socket. As the HDMI is simply a dvi with audio I can't see why it would cause problems but who knows. Given all the other problems I am currently having with the mini I am pointing the finger in that direction currently.

  • Billing doc cost PCA versus GL

    The billing doc cost should be different for the PCA posting versus the GL posting. We have transfer pricing activated as well as material ledger. On the material master the standard price for legal valuation is different than profit center valuation and that is fine. When the billing doc posts it uses standard price for legal valuation for the GL posting. It should use standard price for profit center valuation. It uses legal valuation instead. Goods issue does use the correct standard price for GL versus PCA though.
    How do I make the billing doc use the correct standard price ( profit center valuation ) for PCA?

    Hi,
    I am a bit confuesed on scenario explained by you and I am tring to restate the same:
    1.  You are using Transfer Pricing and Material Ledger is active.
    2.  You have different prices updated in Standard Price for Legal and Profit Center Valuations respectively.
    3.  When you make a goods issue, the system uses the Standard Price in the Legal Valuatoin for accounting. 
    4.  You need the system to use Profit Center Valuation Price for accounting.
    Opinion.
    The Goods issue as updated in the Financial Accounting should use only the Legal Valuation values.  The Profit Center Document anyhow will have the cost of sales based on the profit center valuation.  This is by design and correct approach.
    If your question is related to values posted in Profitability Analysis.  You need to activate profit center valuation in PA and then you will see that both values flow to Profitability Analysis.
    Hope this helps you.
    Varadharajan

  • Performance: Reports Builder versus Running on mid tier report server.

    Folks are wondering why a report takes 15 minutes when running on the middle tier report server, paper layout, pdf output displayed via adobe, versus running the paper layout from a laptop within Reports Builder.
    Any thoughts about the performance differences we now face with the 3 tier set up or suggestions on what we might tweak?

    hello,
    unfortunately your post did not specify what the difference in performance is and whether you are connecting to the same database and what platform your deployment environment as oppsed to your dev environment is.
    there are certainly some performance differences expected if the depoloyment platform is significantly different from the development paltform, but those differences should not be significant.
    there are certain things that might cause performance differences (e.g. graphs in reports, using DISPLAY vs. DEFAULT_DISPLAY on unix platforms, etc.) so knowing a bit more about your platform would be helpful.
    also it would be interesting to know if you see a similar degredation with other reports or even the test.rdf that comes with the product. last, but not least, have you tried to deploy your report to the OC4J that comes with the developer suite ? if so, do you see timings similar to the builder or more to your app server execution times ?
    thanks,
    philipp

  • Authorized versus Associated.....trying to share content

    What is the difference between a computer being AUTHORIZED to play content from an iTunes account versus a computer being ASSOCIATED with a device so it can be synced and play the content? It seems multiple computers can be AUTHORIZED to play content from multiple iTunes account but each device can only be ASSOCIATED with one iTunes account (or is it one computer) at a time. Is that correct?
    If so, can all the AUTHORIZED content on a computer (even if from multiple iTunes accounts) be synced to one ASSOCIATED iPad?
    I have a Work Computer (PC), Associated Work iPad and Work iTunes Account and a separate Home Computer (iMac), Associated Home iPad and Home iTunes account. I am trying to figure out how to share content? Currently all my content is in my Home iTunes Account / Computer. My Work iPad, Work iTunes Account are both new and I want to share some of my Home iTunes content on my Work iPad.
    I am concerned when I read that once a device is ASSOCIATED with an iTunes account it can not be ASSOCIATED with a different account for 90 days. I can't risk ASSOCIATING my Work iPad with my Personal iTunes Account and being locked out from syncing my Work iTunes account on my Work iPad for 90 days.

    Okay, I figured it out myself and will document it here so others may benefit.
    A computer can be AUTHORIZED to play/use content purchsed from multiple iTunes Accounts. There is a limit to the number of computers that can be AUTHORIZED per account (5 total) but no limit as to how many accounts a computer can be AUTHORIZED to play. Once you have AUTHORIZED all the accounts AND downloaded all the purchased content from each account to a computer, this content can be also be played on any device ASSOCIATED with the computer. A device can only be ASSOCIATED to one computer but one computer can have many devices ASSOCIATED to it. As an example, you can use apps purchased on from multiple iTunes accounts on an iPad as long as the computer the iPad is ASSOCIATED with is AUTHORIZED to use/play the content for each of the accounts. Another example: if you also purchased music from all the iTunes accounts, you could listen to it on an iPad, iPhone and iPod as long as all three were ASSOCIATED with the computer where all the accounts were AUTHORIZED.
    Hope this helps.

  • Multiple versus a single collection search with Verity

    I have a simple question about Verity search collection.
    We have been using verity for a number of years, but we have
    never done
    any real performance testing in regards to a single
    collection versus many.
    All documentation and articles argue for multiple small
    collections when
    indexing for better indexing performance. But what is the
    performance
    hit when searching 2 collections instead of 1 combined
    collection?
    How about 4 collections instead of 1?
    Thanks
    Don Vaillancourt
    Director of Software Development
    WEB IMPACT INC.
    phone: 416-815-2000 ext. 245
    fax: 416-815-2001
    toll free: 866-319-1573 ext. 245
    email: [email protected] <mailto:[email protected]>
    blackberry: [email protected]
    <mailto:[email protected]>
    web:
    http://www.web-impact.com
    address:
    http://maps.google.com
    <
    http://maps.google.com/maps?f=q&hl=en&q=99+atlantic+ave,+toronto&ie=UTF8&z=15&ll=43.640765 ,-79.420767&spn=0.013448,0.04343&om=1&iwloc=addr>
    This email message is intended only for the addressee(s) and
    contains
    information that may be confidential and/or copyright.
    If you are not the intended recipient please notify the
    sender by reply
    email and immediately delete this email.
    Use, disclosure or reproduction of this email by anyone other
    than the
    intended recipient(s) is strictly prohibited. No
    representation is made
    that this email or any attachments are free of viruses. Virus
    scanning
    is recommended and is the responsibility of the recipient.

    We are searching 7 collections with some 100.000 documents. I
    have not noticed any performance issues compared to searching only
    one collection.

  • NLS character set non AL32UTF8 versus AL32UTF8

    Good morning Gurus,
    RCU utility strongly recommends to have this parameter set to AL32UTF8.
    My database by default was set as WE8MSWIN1252.
    I have read a lot about these settings. and like to have exact steps to take to accomplish this. I posted this problem in "Problem with RCU utility' but did not get any response.
    My question is why oracle makes things difficult. I only use american language, if both are good for that then why do RCU requires to change it.
    I have seen people who have ignored this message had trouble down the road of installation process.
    I appreciate if some one can explain to me the implications of not changing versus changing.
    Is that means, my database has to be kept with AL32UTF8 parameter all the time after installation is done?
    Also another question
    I have 3 meg RAM on my laptop, Oracle requires 4, will this cause the problem during installation?
    Thank you
    j

    Hi,
    a change from we8mswin1252 to al32utf8 is not directly possible. This is because al32utf is not a binary superset of we8mswin1252.
    There are 2 options:
    - use full export and import
    - Use of the Alter in a sort of restricted way
    The method you can choose depends on the characters in the database, is it only ASCII then the second one can work, in other cases the first one is needed.
    It is all described in the Support Note 260192.1, "Changing the NLS_CHARACTERSET to AL32UTF8 / UTF8 (Unicode)". Get it from the support/metalink site.
    You can also read the chapters about this issue in the Globalization Guide: [url http://download.oracle.com/docs/cd/E11882_01/server.112/e10729/ch11charsetmig.htm#g1011430]Change characterset.
    Herald ten Dam
    http://htendam.wordpress.com

  • Sound Check in iTunes 10.6 is different versus Sound Check in iTunes 8.2

    Hi. My OS is Windows 7 Pro-64.
    I have lots of CD and I decided to convert them  in an mp3 library imported in iTunes (and “manually” in an iPod Classic) with Sound Check on (either in iTunes, or in iPod). I managed it with Windows XP and  iTunes 8.2 till last year. I always verified the Volume adjustment of each mp3 and the correlated hex values written in the field iTunNorm (using mp3Tag). So far I was quite satisfied of Sound Check because I use iPod like a “juke-box” (I don’t need a per album normalization).
    Last year I updated to Windows 7_64 and to iTunes 10.6 and I went on importing other mp3 files (from my CDs). But, with some test, (I imported the same file using iTunes 8 on a PC and using  iTunes 10 on  a different PC) I realized (with a very high probability) that:
    iTunes 10 apparently don't write iTunNorm tag anymore in the file mp3. I have a Volume adjustment, but with mp3Tag I can’t read any iTunNorm field with the famous ten hex values.
    iTunes 10 and iTunes 8 use a different way to calculate Sound Check; Volume adjustments calculated with iTunes 10 are lower of about 0,75-1,25 dB in average against iTunes 8. But sometimes  the difference may be very high (-3,5 dB or -5dB for example in iTunes 10 versus iTunes 8).
    When I updated to iTunes 10, my old library has been converted into the new format iTunes 10, but the old Sound Check (calculated with iTunes 8) did not change (no new calculation). So when I add new files to the library with iTunes 10, I have a discontinuity with the old files imported from iTunes 8 as far as Sound Check is concerned: the new files sound lower in average than the old ones.
    I don’t want to delete and re-import all my files in order to reset and homogenize the whole library (I’d lose all statistics and I’d waste lot of time to pass the file in iPod). And I don’t want using third part software like iVolume.
    My questions:
    Is it correct what I wrote at the point 1, 2, 3 stated over here and mainly at the point 2 (Different way to calculate Volume adjustments of iTunes 10 versus iTune 8)?
    Did iTunes 10 stop to use iTunNorm field to write Check Sound info in mp3 files?
    If not, where iTunes 10 write Sound Check info  to the mp3 file and how can I read it?
    What can I do to avoid the discontinuity in Sound Check values due to the use of iTunes 8 and iTunes 10?
      Thanks in advance for your answers.

    Assuming that one has the 'Sound Check' feature
    selected in both iTunes and on the iPod, do the
    volume changes take place when obtaining the audio
    via the 'line-out' port on the dock connector?
    For the 3G and earlier iPod's, no, Line Out is not affected by Sound Check.
    For the 4G and later iPod's, yes, Line Out is affected by Sound Check.
    Do some iPods work and others do not? Specifically,
    will my iPod mini (2nd Gen) send the adjusted volume
    through the dock connector?
    I have only actually tested the 3G and 4G models, I cannot say what other models do with any kind of reliability. I would expect that the Mini's would have the Line Out to be soundchecked, but I cannot say that for certain.
    Any way of using another method to bring the song
    volumes into a more reasonable range?
    MP3Gain and AACGain. These modify the MP3/AAC files directly, so after using them, turn off Sound Check everywhere.

Maybe you are looking for

  • GetDescriptions() of an object loaded from local variable 'itemDeploymentResult'

    Hi We are urgrading our SAP MII ( purely Java ) systems from 7.31 Sp5 to 7.40 and we got stuck at Configuration phase. We are getting the following error during Queue validation. Checking of deployment queue completed with error. java.lang.NullPointe

  • E$ table to be created in STAGING Area

    Hello All, I have an interface that has Staging Area different from TARGET. I have created an ODI Constraint in the target table in my model. Currently, when I run the scenario, the E$ table is created in the target database. Because we are planning

  • Change duration of all photos

    How do you change the duration of all photos? I have over 100 photos in my movie, and they automatically import at a default length of 5 sec. Is there a way to change the default import setting for clip/photo duration? Or is there a way to batch chan

  • SCVMM 2012: Unable to connect to the VMM management server localhost:8100

    Hi everyone I have difficulties connecting with the Admin UI to the SCVMM server running on the same machine. This is the error message I see: Unable to connect to the VMM management server localhost. The Virtual Machine Manager service on that serve

  • I want to delete all textures that were previously made

    This Part was created and given colors in CATIA. I now imported it into Photoshop to create some more realistic textures and what not to it. Although the original textures are still there. Not sure how to just start fresh and make all new textures...