1

Tema: iTunes me corta los temas

Tengo varios CD pasados en calidad de 192 o 224 kbps y a 44.100 kHz y duran 20 segundos o 10 y saltan para el siguiente track. ¿Qué puede estar mal?

MacBook Pro Retina 15" + MacBook Air M2 15” + Apple Studio Display 27" + Apple Thunderbolt Display 27" + iPhone 14 Pro + iPad 2 + Newton 100
"Iguana iguana Powersurgius"

2

Re: iTunes me corta los temas

Solo en iTunes te pasa?

15" MacBook Pro w/Touch Bar, Quad Core i7 2.9GHz, 16GB RAM, 1TB SSD, Mac OS X High Sierra + 27" BenQ Display + Netgear X4S
iPhone X 256GB (White) + iPad Air LTE (White) + AirPods + AppleTV 4

3

Re: iTunes me corta los temas

el CD...

MacBook Pro M2 Max
Mac mini M1
Mac Pro 3.7 GHz Quad-Core Intel Xeon E5 - 12 GB 1866 MHz DDR3 ECC - Serial # F5KMN16QF9VM
iPhone 15 Pro Max + Apple Watch 7
iPad Pro 12.9 - 256 GB + ATV 4K

4

Re: iTunes me corta los temas

Estan bien limpios los cds? proba con otro programa para reproducir los mp3.. y descarta que los archivos esten bien...
Hay discos... como alguno de Madonna, que al ripeartelos a mp3, capturan todo mal... proteccion ilegal digamos...

Todos tenemos derecho a ripear nuestros propios discos.

Loading... ||||||||||||||||||| 99%
www.carlosrosasco.com

Re: iTunes me corta los temas

a mi me pasa en el iTunes, en el iPod y en el iPhone, creo que es todo problema del iTunes ya que de ahi los exporto a los demas sitios, no se si es que hay errores en la importacion desde un cd o que, porque hay allgunos que no los importo desde CD wink se entiende no?
hace tiempo que estaba por hacer esta pregunta, me vino al dedo que lo hicieras Cin.

 MacBook Pro 13" 2018, MacBook Pro 13"unibodi, 2.4ghz, 4gb RAM, hd 250, superdriveDL  
   iPhone X  , iPad 4 retina display 16G,  iPod video negro 30 G,.  iPod shuffle 2G ,  AirPort Express,

6

Re: iTunes me corta los temas

Perdón, los CDs están "pasados", es decir pasados a MP3 big_smile

MacBook Pro Retina 15" + MacBook Air M2 15” + Apple Studio Display 27" + Apple Thunderbolt Display 27" + iPhone 14 Pro + iPad 2 + Newton 100
"Iguana iguana Powersurgius"

7

Re: iTunes me corta los temas

probablemente haya quedado mal pasados debido a un cd rayado... probá de abrir los archivos MP3 en el Quicktime a ver si saltan. Si saltan e sporque el archivo está mal y el iTunes no tienen nada que ver.

BLKX

8

Re: iTunes me corta los temas

A veces me ha pasado eso. Lo que me lo resolvio fue sacar el enganche entre temas. Ahora la mayoria de las veces pasa eso porque los MP3 estan corruptos...

Serafin Patiño / Apple Certified Macintosh Technician

Macintosh for Productivity - Linux for Development - iPhone for Mobility - Windows for Solitaire
Emergencia Macaca Online

9

Re: iTunes me corta los temas

Sí, debe haber ahí algún rayón o algo en los discos que convertiste o capaz algún tema al momento de la conversión

10

Re: iTunes me corta los temas

Sí, por afuera del iTunes hace lo mismo. Lo que no encaja es que los temas realmente tienen 3 o 4 minutos y pesan lo que pesaría un MP3 de esa calidad neutral

MacBook Pro Retina 15" + MacBook Air M2 15” + Apple Studio Display 27" + Apple Thunderbolt Display 27" + iPhone 14 Pro + iPad 2 + Newton 100
"Iguana iguana Powersurgius"

Re: iTunes me corta los temas

A mi me pasa en algunos temas en el iPod y en el iPhone tambien, pero cuando los escucho adelantando el tiempo de reproduccion no pasa nada, y tambien si escucho el tema solo tampoco, me parece que es cuando se pone el el modo aleatorio o una lista de reproducción.
Los archivos siguen siendo del tamaño original como dice Cin

 MacBook Pro 13" 2018, MacBook Pro 13"unibodi, 2.4ghz, 4gb RAM, hd 250, superdriveDL  
   iPhone X  , iPad 4 retina display 16G,  iPod video negro 30 G,.  iPod shuffle 2G ,  AirPort Express,

12

Re: iTunes me corta los temas

yo para rippear uso el Max y nunca tuve problema  big_smile

en los que es malo es en obtener la lista de temas y datos de los CDs, jamás me ha ecnontrado alguno
para eso uso un AppleScript que toma los datos desde el iTunes (tiene que estar el iTunes abierto)

tell application "iTunes"
    set foundCD to true
    try
        set myCD to some source whose kind is audio CD
    on error errorMessage number errorNumber
        -- error 1728 means the AudioCD was not found, so wait a little 
        if errorNumber is -1728 then
            set foundCD to false
        else
            display dialog errorMessage
        end if
    end try
    if foundCD then
        set CDname to myCD's name
        set myPlaylist to playlist 1 of myCD
        set theTracks to tracks of myPlaylist
        tell application "Max"
            set mc to (count every track of document 1)
            set maxdisk to document 1
        end tell
        set ic to (count theTracks)
        if mc = ic then
            repeat with i from 1 to (count theTracks)
                set atrack to item i of theTracks
                set ar to artist of atrack
                set al to album of atrack
                set tn to track number of atrack
                set tc to track count of atrack
                set ge to genre of atrack
                set co to composer of atrack
                set ye to year of atrack
                set na to name of atrack
                set comp to compilation of atrack
                set com to comment of atrack
                set dn to disc number of atrack
                set dc to disc count of atrack
                tell application "Max"
                    set maxtrack to track i of document 1
                    if not (rip in progress of maxtrack) and not (encode in progress of maxtrack) then
                        set title of maxtrack to na
                        set artist of maxtrack to ar
                        set date of maxtrack to ye as string
                        set genre of maxtrack to ge
                        set composer of maxtrack to co
                        --set number of maxtrack to tn
                    end if
                end tell
                if i = 1 then
                    tell application "Max"
                        set title of maxdisk to al
                        set artist of maxdisk to ar
                        set compilation of maxdisk to comp
                        set genre of maxdisk to ge
                        set date of maxdisk to ye as string
                        set composer of maxdisk to com
                        -- set track count of maxdisk to tc
                        -- max doesn't allow setting total tracks
                        set composer of maxdisk to co
                        if dn > 1 then
                            set disc number of maxdisk to dn
                            set total discs of maxdisk to dc
                        end if
                    end tell
                end if
            end repeat
        else
            display dialog "The iTunes CD track count and the Max CD track count do not match."
        end if
    else
        display dialog "Couldn't get a CD from iTunes. Please retry."
        
    end if
end tell
Rule of Extensibility: Design for the future, because it will be here sooner

13

Re: iTunes me corta los temas

El Max la gasta! Es lo que yo uso big_smile
LAME VBR MP3 FTW! tongue

15" MacBook Pro w/Touch Bar, Quad Core i7 2.9GHz, 16GB RAM, 1TB SSD, Mac OS X High Sierra + 27" BenQ Display + Netgear X4S
iPhone X 256GB (White) + iPad Air LTE (White) + AirPods + AppleTV 4