No sound using quicktime 7 and 10

Hi guys,
I've got 2 MBP, on my old one I run Snow Leopard, on my new one (just bought 2 weeks ago) 2.5Ghz 4Gb ram (high-end product) the "freakin" Lion.
I just can't believe so many issues happened to me... Furious!!!
I experiences several problems to be able to use FCP 7 "voice over recorder's tool" normally, multiples crashes under numbers of app, and now just found out something new: a mp4 file recorded on my GOpro HD which can be played with sound on Snow leopard without any issues, this same file happen to
crash almost everytime I run it on Lion, and when it comes to be readable, it is ONLY playing video... NO SOUND at all!
Does anyone know how to solve this problem?
Thanks

After still no success with your suggestion, I continued my search and went to:
http://www.macfixit.com/article.php?story=20070312102605199
There, I found the fix that worked for me. It was the following: "No sound after update -- fix If you are having issues with sound not playing in QuickTime content after the update to QuickTime 7.1.5, try launching then quitting GarageBand, or launching then quitting the "Audio MIDI Setup" application located in Applications/Utilities."
I did both, and one of them fixed my problem. I now have sound with Quicktme 7.1.5 once again. I am very happy! Thanks again for the suggestion and the help.
jbairport

Similar Messages

  • Can I play 3D movies on a 3D TV using Quicktime 7 and the FBX QuickTime Viewer Plug-in from Autodesk?

    Can I play 3D movies on a 3D TV using Quicktime 7 and the FBX QuickTime Viewer Plug-in from Autodesk?  I would like to play 3D movies which are in Side by Side or Top/Bottom format where the image for each eye is 1080 x 720p.  I would like to output to a 3D TV connecting it to the Mac graphics card DVI output (with a HDMI 1.3 converter) using the 2nd Display option of Quicktime.
    These would be my 3D movies created with Final Cut and Stereo3D Toolbox from Dashwood.

    What type of files are these? It does seem odd that iTunes and QuickTime will still play the files, but Front Row refuses to.
    Did you have any codecs or plugins for QuickTime installed? It may be possible that one of the updates is either incompatible with, or removed, one of these.
    I recommend downloading Perian - a very versatile codec that allows the playback of many media files - and see if this cures the issue.
    ..k

  • Can I record sound using a microphone and then upload it to server?

    Hello guys I thank you in advance for reading this. What I want to know is if it is possible to record a sound clip using a microphone and then upload it to the server using a swf applet in a webpage. Im an experienced java/javascript programmer but just starting out with flash/action script. What technologies will I need to do this? Can I do this simply using simply an swf file and an apache/php or jsp page? Again, thanks alot for your help.
    -BeWilled

    You can Microphone class in Flash to record the sound and it will directly upload to FMS server .
    Use the Microphone class to capture audio from a microphone attached to a computer . Use the Microphone class to monitor the audio locally. Use the NetConnection and NetStream classes to transmit the audio to Flash Media Server. Flash Media Server can send the audio to other servers and broadcast it to other clients running Swf files .
    Below link might help you in doing this : http://www.adobe.com/devnet/air/flex/articles/using_mic_api.html

  • No Sound using Quicktime

    I am using an iMac G5, 10.4.8, with Quicktime 7.1.3 and for some reason I cannot hear any quicktime movies played. The video portion works fine, just not the sound. I've gone into all of the sound system files and my microphone and speakers work fine with other software. The problem seems to only be in the Quicktime play back.
    I also cannot hear any sound with the Quicktime plug-in.
    Can anyone offer suggestions? Thanks.
    jbairport

    After still no success with your suggestion, I continued my search and went to:
    http://www.macfixit.com/article.php?story=20070312102605199
    There, I found the fix that worked for me. It was the following: "No sound after update -- fix If you are having issues with sound not playing in QuickTime content after the update to QuickTime 7.1.5, try launching then quitting GarageBand, or launching then quitting the "Audio MIDI Setup" application located in Applications/Utilities."
    I did both, and one of them fixed my problem. I now have sound with Quicktme 7.1.5 once again. I am very happy! Thanks again for the suggestion and the help.
    jbairport

  • Playing sound using quicktime package?

    I'm trying to make a very simple program (actually, part of a much larger program) that can play a sound file. Nothing else needs to happen during that time, and no other sound file will be played at the same time, so hopefully I'll be able to avoid threads, mixers, and all the rest of that stuff.
    After not being able to make head or tails of all the extremely complicated tutorials on Java Sound, I finally found some very short code that allows me to play a .wav file, just like I'd want. My only concern is that it uses the quicktime package, instead of the Sound package that everyone else seems to refer to.
    In particular, it seems to be treating the sound file like a movie. Here's some source code:
    import quicktime.*;
    import quicktime.io.*;
    import quicktime.app.time.*;
    import quicktime.app.view.*;
    import quicktime.std.movies.*;
    import quicktime.std.*;
    // Lots of GUI interface stuff
        public void playFile (String fileName) {
             try {
                String soundLocation = QTFactory.findAbsolutePath(fileName).getPath();
                OpenMovieFile fileIn = OpenMovieFile.asRead (new QTFile(soundLocation));
                movie = Movie.fromFile (fileIn);
                TaskAllMovies.addMovieAndStart();
                movie.setActive(true);
                movie.setRate(1);
               } catch (IOException ioe) {
                    ioe.printStackTrace();
               } catch (QTException qte) {
                    qte.printStackTrace();
        }Does this seem to be all ok? Will the computer the program is running on need QuickTime, or is that completely different? Is this as fast as using Java Sound?
    Sorry for the possibly silly questions. Normally I'd say "I've tested it, it works, so that's all I need", but I got a little bit worried seeing "quicktime" and "movie", and wondered if this is what I really should be using.
    Thanks!

    Also-- something to think about. You may be able to
    avoid threads while the song is playing-- if you
    never want to stop it, pause it, or do *anything
    else* within the same GUI -- assuming you're using a
    GUI.
    Hope something in the above helps.In this program the user doesn't get to control the sound while it is playing. The program is an assesment of language comprehension engine for my lab. The user hits "Go", the sound plays (all 2-3 seconds of it), then the user hits "yes" or "no" depending on the sound.
    I'm only just starting to code this. Do you think it's going to need threading? I can't imagine that it ought to take more than 5-10 lines of code, but those Sound tutorials made it seem like I'd need 100.
    As for playing a "movie", that's why I was worried. Taking a deeper look, it seems like Apple's Developer website is promoting using the QuickTime package, but I haven't yet worked out how compatible it is with other file systems, and whether it's as good.
    Thanks, and any other thoughts are welcome!
    --Sam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • No sound using SiS soundcard and ALSA

    I've installed alsa using pacman, unmuted all channels using alsamixer and added myself to the 'audio' group following the instructions here: http://wiki.archlinux.org/index.php/ALSA_Setup
    Unfortunately still no sound, I'm new to Arch and completely out of ideas. I've attached any info I thought might be useful but just ask if you need anything else posting. Please help me out as my laptop is my only source of music while I'm home over Christmas! Show some Christmas charity to a newb and Santa might not bring you coal!
    $ lsmod|grep '^snd'
    snd_intel8x0m 14092 0
    snd_seq_oss 29312 0
    snd_seq_midi_event 6528 1 snd_seq_oss
    snd_seq 46800 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6924 2 snd_seq_oss,snd_seq
    snd_pcm_oss 36896 0
    snd_mixer_oss 14464 1 snd_pcm_oss
    snd_intel8x0 28700 0
    snd_ac97_codec 95268 2 snd_intel8x0m,snd_intel8x0
    snd_pcm 68996 4 snd_intel8x0m,snd_pcm_oss,snd_intel8x0,snd_ac97_codec
    snd_timer 19332 2 snd_seq,snd_pcm
    snd 45220 10 snd_intel8x0m,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
    snd_page_alloc 8072 3 snd_intel8x0m,snd_intel8x0,snd_pcm
    $ ls -l /dev/snd/
    total 0
    crw-rw---- 1 root audio 116, 0 2007-12-19 14:01 controlC0
    crw-rw---- 1 root audio 116, 32 2007-12-19 14:01 controlC1
    crw-rw---- 1 root audio 116, 24 2007-12-19 14:01 pcmC0D0c
    crw-rw---- 1 root audio 116, 16 2007-12-19 14:01 pcmC0D0p
    crw-rw---- 1 root audio 116, 25 2007-12-19 14:01 pcmC0D1c
    crw-rw---- 1 root audio 116, 56 2007-12-19 14:01 pcmC1D0c
    crw-rw---- 1 root audio 116, 48 2007-12-19 14:01 pcmC1D0p
    crw-rw---- 1 root audio 116, 1 2007-12-19 14:01 seq
    crw-rw---- 1 root audio 116, 33 2007-12-19 14:01 timer
    $ lspci | grep audio
    00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] AC'97 Sound Controller (rev a0)
    /etc/rc.conf has the following:
    MODULES=(mii sis900 eeprom_93cx6 ac97_bus snd-intel8x0 snd-pcm-oss)
    DAEMONS=(syslog-ng network netfs crond alsa)

    Some more info using the simple ALSA debugging script on the wiki...
    $ ./aadebug
    ALSA Audio Debug v0.1.0 - Fri Dec 21 11:01:51 UTC 2007
    http://alsa.opensrc.org/aadebug
    http://www.gnu.org/licenses/gpl.txt
    Kernel ----------------------------------------------------
    Linux caolan-laptop 2.6.23-ARCH #1 SMP PREEMPT Sun Nov 18 07:43:05 UTC 2007 i686 Mobile Intel(R) Celeron(R) CPU 2.20GHz GenuineIntel GNU/Linux
    Loaded Modules --------------------------------------------
    snd_intel8x0m 14092 0
    snd_seq_oss 29312 0
    snd_seq_midi_event 6528 1 snd_seq_oss
    snd_seq 46800 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6924 2 snd_seq_oss,snd_seq
    snd_pcm_oss 36896 0
    snd_mixer_oss 14464 1 snd_pcm_oss
    snd_intel8x0 28700 0
    snd_ac97_codec 95268 2 snd_intel8x0m,snd_intel8x0
    snd_pcm 68996 4 snd_intel8x0m,snd_pcm_oss,snd_intel8x0,snd_ac97_codec
    snd_timer 19332 2 snd_seq,snd_pcm
    snd 45220 10 snd_intel8x0m,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
    snd_page_alloc 8072 3 snd_intel8x0m,snd_intel8x0,snd_pcm
    Proc Config -----------------------------------------------
    CONFIG_SOUND=m
    CONFIG_SND=m
    CONFIG_SND_TIMER=m
    CONFIG_SND_PCM=m
    CONFIG_SND_HWDEP=m
    CONFIG_SND_RAWMIDI=m
    CONFIG_SND_SEQUENCER=m
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=m
    CONFIG_SND_PCM_OSS=m
    CONFIG_SND_PCM_OSS_PLUGINS=y
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_RTCTIMER=m
    CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
    # CONFIG_SND_DYNAMIC_MINORS is not set
    CONFIG_SND_SUPPORT_OLD_API=y
    CONFIG_SND_VERBOSE_PROCFS=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    CONFIG_SND_MPU401_UART=m
    CONFIG_SND_OPL3_LIB=m
    CONFIG_SND_OPL4_LIB=m
    CONFIG_SND_VX_LIB=m
    CONFIG_SND_AC97_CODEC=m
    CONFIG_SND_DUMMY=m
    CONFIG_SND_VIRMIDI=m
    CONFIG_SND_MTPAV=m
    CONFIG_SND_MTS64=m
    CONFIG_SND_SERIAL_U16550=m
    CONFIG_SND_MPU401=m
    CONFIG_SND_PORTMAN2X4=m
    CONFIG_SND_AD1848_LIB=m
    CONFIG_SND_CS4231_LIB=m
    CONFIG_SND_SB_COMMON=m
    CONFIG_SND_SB8_DSP=m
    CONFIG_SND_SB16_DSP=m
    CONFIG_SND_ADLIB=m
    CONFIG_SND_AD1816A=m
    CONFIG_SND_AD1848=m
    CONFIG_SND_ALS100=m
    CONFIG_SND_AZT2320=m
    CONFIG_SND_CMI8330=m
    CONFIG_SND_CS4231=m
    CONFIG_SND_CS4232=m
    CONFIG_SND_CS4236=m
    CONFIG_SND_DT019X=m
    CONFIG_SND_ES968=m
    CONFIG_SND_ES1688=m
    CONFIG_SND_ES18XX=m
    CONFIG_SND_SC6000=m
    CONFIG_SND_GUS_SYNTH=m
    CONFIG_SND_GUSCLASSIC=m
    CONFIG_SND_GUSEXTREME=m
    CONFIG_SND_GUSMAX=m
    CONFIG_SND_INTERWAVE=m
    CONFIG_SND_INTERWAVE_STB=m
    CONFIG_SND_OPL3SA2=m
    CONFIG_SND_OPTI92X_AD1848=m
    CONFIG_SND_OPTI92X_CS4231=m
    CONFIG_SND_OPTI93X=m
    CONFIG_SND_MIRO=m
    CONFIG_SND_SB8=m
    CONFIG_SND_SB16=m
    CONFIG_SND_SBAWE=m
    CONFIG_SND_SB16_CSP=y
    CONFIG_SND_SB16_CSP_FIRMWARE_IN_KERNEL=y
    CONFIG_SND_SGALAXY=m
    CONFIG_SND_SSCAPE=m
    CONFIG_SND_WAVEFRONT=m
    CONFIG_SND_WAVEFRONT_FIRMWARE_IN_KERNEL=y
    CONFIG_SND_AD1889=m
    CONFIG_SND_ALS300=m
    CONFIG_SND_ALS4000=m
    CONFIG_SND_ALI5451=m
    CONFIG_SND_ATIIXP=m
    CONFIG_SND_ATIIXP_MODEM=m
    CONFIG_SND_AU8810=m
    CONFIG_SND_AU8820=m
    CONFIG_SND_AU8830=m
    CONFIG_SND_AZT3328=m
    CONFIG_SND_BT87X=m
    # CONFIG_SND_BT87X_OVERCLOCK is not set
    CONFIG_SND_CA0106=m
    CONFIG_SND_CMIPCI=m
    CONFIG_SND_CS4281=m
    CONFIG_SND_CS46XX=m
    CONFIG_SND_CS46XX_NEW_DSP=y
    CONFIG_SND_CS5530=m
    CONFIG_SND_CS5535AUDIO=m
    CONFIG_SND_DARLA20=m
    CONFIG_SND_GINA20=m
    CONFIG_SND_LAYLA20=m
    CONFIG_SND_DARLA24=m
    CONFIG_SND_GINA24=m
    CONFIG_SND_LAYLA24=m
    CONFIG_SND_MONA=m
    CONFIG_SND_MIA=m
    CONFIG_SND_ECHO3G=m
    CONFIG_SND_INDIGO=m
    CONFIG_SND_INDIGOIO=m
    CONFIG_SND_INDIGODJ=m
    CONFIG_SND_EMU10K1=m
    CONFIG_SND_EMU10K1X=m
    CONFIG_SND_ENS1370=m
    CONFIG_SND_ENS1371=m
    CONFIG_SND_ES1938=m
    CONFIG_SND_ES1968=m
    CONFIG_SND_FM801=m
    CONFIG_SND_FM801_TEA575X_BOOL=y
    CONFIG_SND_FM801_TEA575X=m
    CONFIG_SND_HDA_INTEL=m
    CONFIG_SND_HDA_HWDEP=y
    CONFIG_SND_HDA_CODEC_REALTEK=y
    CONFIG_SND_HDA_CODEC_ANALOG=y
    CONFIG_SND_HDA_CODEC_SIGMATEL=y
    CONFIG_SND_HDA_CODEC_VIA=y
    CONFIG_SND_HDA_CODEC_ATIHDMI=y
    CONFIG_SND_HDA_CODEC_CONEXANT=y
    CONFIG_SND_HDA_CODEC_CMEDIA=y
    CONFIG_SND_HDA_CODEC_SI3054=y
    CONFIG_SND_HDA_GENERIC=y
    CONFIG_SND_HDA_POWER_SAVE=y
    CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
    CONFIG_SND_HDSP=m
    CONFIG_SND_HDSPM=m
    CONFIG_SND_ICE1712=m
    CONFIG_SND_ICE1724=m
    CONFIG_SND_INTEL8X0=m
    CONFIG_SND_INTEL8X0M=m
    CONFIG_SND_KORG1212=m
    CONFIG_SND_KORG1212_FIRMWARE_IN_KERNEL=y
    CONFIG_SND_MAESTRO3=m
    CONFIG_SND_MAESTRO3_FIRMWARE_IN_KERNEL=y
    CONFIG_SND_MIXART=m
    CONFIG_SND_NM256=m
    CONFIG_SND_PCXHR=m
    CONFIG_SND_RIPTIDE=m
    CONFIG_SND_RME32=m
    CONFIG_SND_RME96=m
    CONFIG_SND_RME9652=m
    CONFIG_SND_SONICVIBES=m
    CONFIG_SND_TRIDENT=m
    CONFIG_SND_VIA82XX=m
    CONFIG_SND_VIA82XX_MODEM=m
    CONFIG_SND_VX222=m
    CONFIG_SND_YMFPCI=m
    CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y
    CONFIG_SND_AC97_POWER_SAVE=y
    CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0
    CONFIG_SND_USB_AUDIO=m
    CONFIG_SND_USB_USX2Y=m
    CONFIG_SND_USB_CAIAQ=m
    CONFIG_SND_USB_CAIAQ_INPUT=y
    CONFIG_SND_VXPOCKET=m
    CONFIG_SND_PDAUDIOCF=m
    CONFIG_SND_SOC=m
    # CONFIG_SOUND_PRIME is not set
    Modprobe Conf ---------------------------------------------
    #alias snd-card-0 snd-intel8x0
    #alias sound-slot-0 snd-intel8x0
    options snd-intel8x0 ac97_quirk=0
    Proc Asound -----------------------------------------------
    Advanced Linux Sound Architecture Driver Version 1.0.14 (Fri Jul 20 09:12:58 2007 UTC).
    0 [SI7012 ]: ICH - SiS SI7012
    SiS SI7012 with AD1981B at irq 17
    1 [Modem ]: ICH-MODEM - SiS SI7013 Modem
    SiS SI7013 Modem at irq 17
    0: [ 0] : control
    1: : sequencer
    16: [ 0- 0]: digital audio playback
    24: [ 0- 0]: digital audio capture
    25: [ 0- 1]: digital audio capture
    32: [ 1] : control
    33: : timer
    48: [ 1- 0]: digital audio playback
    56: [ 1- 0]: digital audio capture
    cat: /proc/asound/hwdep: No such file or directory
    00-01: Intel ICH - MIC ADC : SiS SI7012 - MIC ADC : capture 1
    00-00: Intel ICH : SiS SI7012 : playback 1 : capture 1
    01-00: Intel ICH - Modem : SiS SI7013 Modem - Modem : playback 1 : capture 1
    Client info
    cur clients : 2
    peak clients : 2
    max clients : 192
    Client 0 : "System" [Kernel]
    Port 0 : "Timer" (Rwe-)
    Port 1 : "Announce" (R-e-)
    Connecting To: 15:0
    Client 15 : "OSS sequencer" [Kernel]
    Port 0 : "Receiver" (-we-)
    Connected From: 0:1
    Dev Snd ---------------------------------------------------
    controlC0 pcmC0D0c pcmC0D1c pcmC1D0p timer
    controlC1 pcmC0D0p pcmC1D0c seq
    CPU -------------------------------------------------------
    model name : Mobile Intel(R) Celeron(R) CPU 2.20GHz
    cpu MHz : 2193.236
    RAM -------------------------------------------------------
    MemTotal: 448516 kB
    SwapTotal: 1052248 kB
    Hardware --------------------------------------------------
    00:00.0 Host bridge: Silicon Integrated Systems [SiS] 650/M650 Host (rev 80)
    00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] AC'97 Sound Controller (rev a0)

  • I am using quicktime player and i want to add a music track can anyone help me please

    I want to add a music track to my quicktime movie any help out there

    HI sjr64,
    I would suggest that you use iMovie or a similar video editing program to add a music track to your video:
    iMovie (2013): Add audio and music
    http://support.apple.com/kb/PH14708
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Can't get sound in QuickTime - please help

    Hi
    I purchased the Quicktime pro and downloaded codecs from perian first - I tried playing an .avi file movie and got no sound. Then I downloaded codecs from DivX player site - and still no sound - video is fine.
    I have sound using other formats and also when watching trailers on the internet
    Thank You

    You might try Perian plugin for QuickTime. I actually haven't come across anything since I've installed it to really try it out but it seems to be getting very good reviews everywhere I've seen it mentioned.
    Obviously you're not going to be able to get Quicktime to play everything just like you can't get VLC or Windows Media Player or Real..... but you just kind of have to keep finding the proper plugins for all the various media out there.

  • Export Using QuickTime Conversion To Windows Media (.wmv)

    I have Final Cut Pro HD version 4.5 that runs on my G5. I have a problem when I try to export video to Windows Media file (.wmv). After I select Export / Using QuickTime Conversion and than choose Windows Media in Format box, Final Cut does compile a .wmv file. The only problem is that it's only 30 sec. long when the original video that sits on Timeline is 2 mintues long. When I export the same video to Quick Time file, everything works perfectly and the duration of .mov file is the same.
    I tried to set in and out points, but it made no difference.
    So now I can't make a file that can get played on Windows computer that has only Windows Media player. And .avi file is not an option since I can't get one compressed enought, so it turns out too big. I understand that I can buy some third party software to make .wmv file, but I want to make sure that out of box Final Cut Pro HD 4.5 can't make Windows Media files before spending extra money.

    You need to buy the full version of flip-4-mac to encode/save to a wmv. Sounds like you only have the trail/free playback version...
    You need either the pro version or studio version:
    http://www.flip4mac.com/wmv.htm

  • Can't record sound using the jack in/out on macbook pro 13 os x

    hi
    i bought a new macbook pro 13' intel core i5 4gb with the latest os x version 10.8.2. mainly for sound and video editing
    yesterday i tried to record sound using garage band and through the mini jack port. once i connected an mp3 player to the mini jack port, the sound prefrences window recognized it as headphones and not as input jack as it did on my friend's same mac with leopard os on it.
    it seems like no matter what i try to do (changing instument set up on garage band, restarting the computer with the jack in or out etc...) nothing worked
    i bought this mac just so i wouldn't have to deal with these kind of problems....suppose to be a very user friendly os and hardwear.
    very dissapointing. please if any one has a clue what can be done?

    i'm aware of my other audio interface options, but i would expact this machine to have the basic options every 20 year old pc has, a simple plug and play difault to get audio into my computer. i bought it at b and h in NY and in their specs it says that it's a 'combo kack' - meaning both in and out analog audio ports. after cheaking mac's site it says only headphones.
    also tryied to connect a digidesign mini mbox2, through the usb port, and i had to unplug it, shut down the mbp, restart it again etc.. and it also doesn't always work propely and makes all kinds of digital error sounds.
    although in this case i can't that the mbox is not damaged.
    over all it's very dissapointing. it's my first mac and i figured it would be a much more idiot proof, user freindly work tool.
    if you got any other tips i'd appreciate that
    thanx alot for the focusrite link

  • Quicktime Pro and JVC .Tod files

    I have a JVC Everio and I edit my videos on my Macbook using Quicktime Pro and Final Cut Express HD 3.5. In order to have my videos work on FCE, I need to convert (as many of you may know already). I havent had a problem doing so and lately Ive only been editing 3-5 min clips and quality isnt that much of an importance to me for those small clips as they are only for testing purposes. My question now is, if I want a long (1hr-2hr) video with a nice, clear, HD picture from my .tod files (CBR 1440x1080), what format should I use in Quicktime Pro, to convert the video from a clear .tod file, to a clear "" file??? Any help would be appreciated!!! Thanks!!

    Just thought I help out with the JVC community who's having the same problem I faced for months. They have actually now released new plugin that works with QT 7.4.x
    I just got mail from JVC's escalation agent after months of mail ping-pong. I guess that appropriately make him E-Mail Specialist. You can download the latest Quicktime plugin for version 7.4.x on this URL
    http://www2.cli.co.jp/products/ne/updateqtc_for_gzhd7/qtc3eupdate.htm
    I just hope Apple does not release security update and release v7.5.x anytime soon. But that should be JVC's responsibility to keep its customers well updated with its TOD format conversions.
    Finally now we can update to QT v7.4.x!! Good luck. And spread the word.
    PS: I have yet to see an update on JVC's website about this new plugin release. But I cab confirm that its already lost lots of OSX Everio HD camcorder users.

  • I am trying to create a video of my desktop using Quicktime (10.0). I have no sound. I have checked my system preferences and everything looks good there. Why am I lacking sound on my video?

    I am trying to create a video of my desktop using Quicktime (10.0). I have no sound. I have checked my system preferences and everything looks good there. Why am I lacking sound on my video?

    You might also post this question in the Quicktime forum https://discussions.apple.com/community/mac_os/quicktime

  • I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes W7/64 or a known hardware issue?

    I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes and W7/64 or a known hardware issue?
    Example-CD : "Tracy Chapman , Telling stories" is not able to import . I have more such negative cases. But in other cases it works fine and the sound is great.
    The firmware at the inbuild CD/DVD DS-6E2SH is the latest version.
    What can I do??

    hi b noir,
    I don't no about virtuel drives like you mententioned. In the mean time I have rebooted the XPS and run again the iTunes diagnostics. I think the back - chance in the registry was not ready to use.  Now there are another results. They are the same in case of a running CD or a not running CD. The difference in total is like before. It takes more time that iTunes reads the (bad) CD and at the there is no good sound. In both cases ( running or not running CD) iTunes diagnostics gives as a result :
    (the copie from ITunes shows the result of the not running CD from Tracy Chapman)
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater-Bibliothek 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Treiber 1.55.0.0
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes-Seriennummer 00D7B2B00CD25750
    Aktueller Benutzer ist kein Administrator.
    Aktuelles Datum und Uhrzeit sind 2011-06-11 19:33:22.
    iTunes befindet sich nicht im abgesicherten Modus.
    WebKit Accelerated Compositing ist aktiviert.
    HDCP wird unterstützt.
    Core Media wird unterstützt.
    Info zu Video-Anzeige
    NVIDIA, NVIDIA GeForce GT 540M
    Intel Corporation, Intel(R) HD Graphics Family
    **** Info für externe Plug-Ins ****
    Keine externen Plug-Ins installiert.
    iPodService 10.3.1.55 (x64) arbeitet zurzeit.
    iTunesHelper 10.3.1.55 arbeitet zurzeit.
    Apple Mobile Device service 3.3.0.0 arbeitet zurzeit.
    **** CD/DVD-Laufwerkstests****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    D: PLDS DVDRWBD DS-6E2SH, Rev CD11
    Audio-CD im Laufwerk
    11 Titel auf der CD gefunden, Spieldauer: 42:07 auf Audio-CD
    Titel 1, Startzeit: 00:02:00
    Titel 2, Startzeit: 03:59:47
    Titel 3, Startzeit: 07:19:27
    Titel 4, Startzeit: 11:31:30
    Titel 5, Startzeit: 15:31:50
    Titel 6, Startzeit: 20:07:50
    Titel 7, Startzeit: 24:27:15
    Titel 8, Startzeit: 27:49:10
    Titel 9, Startzeit: 32:41:25
    Titel 10, Startzeit: 35:29:65
    Titel 11, Startzeit: 38:38:00
    Audio-CD erfolgreich gelesen (Suche nach alter Firmware).
    Laufwerksgeschwindigkeit erfolgreich erkannt
    Die CDR-Geschwindigkeiten des Laufwerks sind:  4 10 16 24
    Die CDRW-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDR-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDRW-Geschwindigkeiten des Laufwerks sind:  4
    After starting the import it is going slower and slower. If it is helpful I can send you a soundfile with these distortions.
    best regards
    tcgerd

  • Re user tip: How can I import a homemade DVD into iMovie for editing? - I've followed instructions so far so good, until I get to "You can then FILE/EXPORT USING QUICKTIME and choose Apple Intermediate Codec as your video codec. "  How do I do that?

    Re AppleMan 1958 excellent user tip: How can I import a homemade DVD into iMovie for editing? -
    I've followed instructions with success until  "You can then FILE/EXPORT USING QUICKTIME and choose Apple Intermediate Codec as your video codec. "  How do I do that?
    I installed MGEG Streamclip 193b8 and used their utility to install quicktimempeg2 and got a message stating it was successfully installed.  (I'm on latest Maverick 10.9.2 on iMac)  Then I dragged the VIDEO_TS file from my home DVD into the streamclip app.  It asked which of 4 files to use, and I selected the first one.  Streamclip played the video with the sound.  so far so good. but now I cannot figure how to use quicktime player 10.3 to export this vob file out of streamclip.

    Thank you for your quick reply and for clearing up my confusion.  I'm exporting the first section now.  I choose the smallest size, 3x4 but I'd prefer to go higher as this DVD was originally a VHS home movie.  I'm wondering if after three conversions (VHS,->DVD->MPEG) the resolution will be so poor as to not support a larger size frame?  If it can, what size should I select when I export? 

  • Mpeg to Mpeg-4 using Quicktime Pro!!! No sound!

    Ok...I exported my mpeg file to movie to Ipod using Quicktime and it worked and then I dragged it to Itunes...but there's NO sound!! When I play it on Itunes or on my Ipod there is no sound!! PLEASE HELP!!!

    There certainly are some apps for Windows that will convert Mpegs and .wmvs, I was (and still am occasionally) a Windows user but I've never done video on it so I don't know them ...
    The .avi is just a contender, which usually contains DivX video. Do you have codecs for this format on your computer ( http://www.divx.com/ ) ? Once you have them, QuickTime should be able to play and export many .avi files to h.264 iPod-optimized video. Of course some .avi files contain video in an odd format for which you will have to get a codec I guess.

Maybe you are looking for

  • Hard drive crashed. How do I reconstruct from external hard drive?

    A few weeks ago my computer started to act unstable. Amid crashes and freezes, I was able to copy (drag and drop) the following folders onto my external hard drive...Documents, Library, Music, and Pictures. Then the hard drive died completely. I have

  • "Call Transaction" in Simulate Mode?

    Hi All, Is there a way to use "CALL TRANSACTION" in a Simulation Mode, I mean get the messages back without any COMITT or Updates performed? Thanks in advance for your help.

  • Can't see other Short Names in list

    Hi All, I couldn't find any info on this problem: in OS X Server 10.4.9 WGM, a few accounts have more than 3 short names, the maximum that will fit in the little short name list window. Scrollbars used to appear when a name was clicked, allowing scro

  • ADF Data Control Issue

    Hi All I'm trying to display the results of a database procedure in an ADF table, but cannot get the Data Control structure return variable to appear as a structure correctly. What am I doing wrong? The db proc signature is: PROCEDURE get_employee_de

  • Changing From address for Apple .Mac account

    Greetings, I use Mail with multiple IMAP email accounts. I'm using my .Mac account as my primary "incoming" account although it receives email for multiple addresses. In my Accounts Preferences, there is a field to change the From address (by default