No Audio using WMV Format using Live Ultra Mod. VF0060

Recently purchased a Creative WebCam Li've Ultra Model VF0060 and I am having problems capturing WMV formatted video and audio at the same time. Video works fine however, when I try to include audio all I get is and error message suggesting that I don't have enough disk space ( I have PLENTY) and to check the audio and video compressor settings. There are no audio compressor setting in?the WMV mode?and the video is limited to small or large file. I can capture AVI formatted video with audio?just fine but it uses to much memory to use as Email attachments. Does anybody have any suggestions?

The web center do not work any more with windows media . I try every thing also customer service. Only responce is to go back to a older version of windows media players. Still working with .aviCreative was a real strong compagny, with good support, but now it is a falling. No more support, no more update. Customer support is nullThey remove them self from the NASDAQ, so be prepare that the end is near.

Similar Messages

  • Playback a seamless animation using wmv format

    I have created a seamless looping video for a piece of equipment.
    In after effects, the video is truly seamless and no skipping is present.
    Currently I am exporting to swf format, which plays back seamless at the cost of a larger file size.
    The reason for going with the wmv format is the size is significantly less than the swf.
    Is there a player that can playback a wmv file seamlessly?
    Windows Media Player, Quicktime, VLC Player, all have a pause or black flash at the end of the video when looping.
    Any other format recommendations?
    Thanks for the help
    -Steve

    if your loaded swf just plays from frame 1 to its main timeline last frame and that's when you want your loading swf to advance to frame 3, you can use:
    var myLoader:Loader = new Loader();
    addChild(myLoader);
    var url:URLRequest = new  URLRequest("iwill_cards_video.swf");
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,onLoad);
    myLoader.load(url);
    function onLoad(e:Event){
    MovieClip(myLoader.content).addEventListener(Event.ENTER_FRAME,checkPlay);
    function checkPlay(e:Event){
    if(e.target.currentFrame==e.target.totalFrames){
    e.target.stop();
    MovieClip(myLoader.content).removeEventListener(Event.ENTER_FRAME,checkPlay);
    removeChild(myLoader);
    myLoader.unload();
    myLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE,onLoad);
    myLoader=null;
    MovieClip(root).nextFrame()

  • How to send mail using HTML format using tags

    Hello experts,
    I am currently using FM SO_NEW_DOCUMENT_SEND_API1 to send e-mails to our users' Outlook accounts. Now, I converted its document type from 'RAW' to 'HTM'. I enclosed my texts in HTML tags. But the problem is, I cannot see a thing when I check my message in SCOT. It just opens internet explorer and thats it. Anyway, Below is my code:
    get e-mail addresses of controllers in table ZSHIPTO_EMAIL
      SELECT * FROM zshipto_email
      INTO TABLE it_zshipto_email
      WHERE zevent = '2'.
      IF sy-dbcnt > 0.
        IF NOT it_del_entries[] IS INITIAL.
          CLEAR lv_contents.
          maildata-obj_name  = 'Record Deleted in table ZTS0001'.
          maildata-obj_descr = 'Record Deleted in table ZTS0001'.
          maildata-obj_langu = sy-langu.
       records deleted in ZTS0001 and ZTS_STPGEOLOC
          CLEAR: lv_flag, lv_counter.
          LOOP AT it_zshipto_email.
            CLEAR: it_del_entries, mailtxt.
            LOOP AT it_del_entries ASSIGNING <fs_del_entries>.
            get name of dealer
              SELECT SINGLE name1 FROM kna1
              INTO <fs_del_entries>-name1
              WHERE kunnr = <fs_del_entries>-kunnr.
              IF lv_counter IS INITIAL.
                CONCATENATE: '<p>'
                             'FYI: The ff record/s were deleted in tables'
                             'ZTS0001 and ZTS_STPGEOLOC by user' sy-uname
                             '</p>'
                             INTO lv_contents
                             SEPARATED BY space.
                mailtxt-line = lv_contents.
                APPEND mailtxt.
                CLEAR: mailtxt, lv_contents.
              ENDIF.
              APPEND mailtxt.
              CONCATENATE: '<p>'
                           'Dealer :' <fs_del_entries>-kunnr '-'
                           <fs_del_entries>-name1 '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Ship-To:' <fs_del_entries>-cdseq '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Address:' <fs_del_entries>-zaddress '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Contact person:' <fs_del_entries>-zcperson
                           '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Contact number:' <fs_del_entries>-zcnumber
                           '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              lv_counter = 1.
            ENDLOOP.
            APPEND mailtxt.
            mailrec-receiver = it_zshipto_email-zemail.
            mailrec-rec_type  = 'U'.
            APPEND mailrec.
            CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
                 EXPORTING
                      document_data              = maildata
                      document_type              = 'HTM'
                      put_in_outbox              = 'X'
                      commit_work                = 'X'
                 TABLES
                     object_header              = mailtxt
                      object_content             = mailtxt
                      receivers                  = mailrec
                 EXCEPTIONS
                      too_many_receivers         = 1
                      document_not_sent          = 2
                      document_type_not_exist    = 3
                      operation_no_authorization = 4
                      parameter_error            = 5
                      x_error                    = 6
                      enqueue_error              = 7
                      OTHERS                     = 8.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            CLEAR:    mailtxt, mailrec, lv_counter.
            REFRESH:  mailtxt, mailrec.
          ENDLOOP.
        ENDIF.
    Message was edited by: viraylab

    Hi,
    Check this...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5931ff64-0a01-0010-2bb7-ff2f9a6165a0
    Regards
    vijay

  • HDTV Resolution and WMV format

    How do I export my HDTV Composition to a wmv format using presets. I tried to render with presets but I get a message "After Effects:AEGP Plugin Media IO Plugin:
    MediaIO2 error: )x4
    Not enough memory to complete this encoding." How do I fix this issue and render my project?

    What exactly are your composition settings and what preset do you intend to use? This warning is usually coming up, if there is incorrect pixel aspect ratios and resolutions somewhere...
    Mylenium

  • Capture Audio in gsm or ulaw format using MMAPI

    Hi ,
    I have tried to use the latesr MMAPI with the Java Tool Kit latest versoin
    My Requirement is to capture voice through a Manager in "gsm" and "ulaw format" , I have seen examples in javax.microedition.media.Manager documentation like that came along latest version of J2ME wireless 2.1 toolkit .
         capture://audio (default audio)
         capture://audio?encoding=pcm (default audio in PCM format)
    when i try to give
         capture://audio?encoding=gsm or ulaw i get runtime error saying invalid locators
         Can somebody please help me to figure how i can save voice in gsm or ulaw format into a wav file , thru emulator , i am able to save in PCM i.e. the default format .
         Any tips would be highly appretiated.

    Hi ,
    I have used this Mobile Media API (JSR-135) latest documentation that comes with WTK 2.0 and documentation of javax.microedition.media.Manager Class which says
    1. Locators for Live-media Capture
    The locators for capturing live media are defined by the following syntax in Augmented BNF notations:
    "capture://" device [ "?" params]
    A. Identifying the type or the specific name of the device:
    device = "audio" / "video" / "audio_video" / dev_name
    dev_name = alphanumeric
    alphanumeric = 1*( ALPHA / DIGIT )
    B. Describing the media and capture parameters:
    params = audio_params / video_params /
    audio_video_params / custom_params
    C. Describing the audio media format:
    audio_params = audio_param *( "&" audio_param )
    audio_param = 1*( "encoding=" audio_enc / "rate=" rate /
    "bits=" bits / "channels=" channels /
    "endian=" endian / "signed=" signed )
    audio_enc = "pcm" / "ulaw" / "gsm"
    rate = "96000" / "48000" / "44100" / "22050" / "16000" /
    "11025" / "8000"
    bits = "8" / "16" / "24"
    channels = pos_integer
    endian = "little" / "big"
    signed = "signed" / "unsigned"
    pos_integer = 1*DIGIT
    Example:
    encoding=pcm&rate=11025&bits=16&channels=1
    In point "C" it clearly tells that encoding format pcm/gsm/ulaw can be used . But i get invalid locator at runtime for gsm and ulaw format .
    I am not sure wether the Emulator is not supporting this format or whats the cause , i am basically recording the voice from mic into a wav file .
    Thanks
    Sameer

  • Record Audio in mp3 file format using FMS

    I am Recording Audio Using FMS which will record Audio file in FLV File Format default But I like to Record in MP3 File Format. Is it Possible.
    And I also Record Video In MP4 File Format using h264 encode. Which Give me Video File in MP4 File Format but When i will try to play that MP4 File it Didn't play. So, I post-processed video with a tool called F4V Post Processor. Now That MP4 Video File Play But Didn't Give me Sound in that Video.
    My Code is:
            var h264Settings:H264VideoStreamSettings = new H264VideoStreamSettings();
            h264Settings.setProfileLevel(H264Profile.MAIN, H264Level.LEVEL_3);
            ns.videoStreamSettings = h264Settings;
            ns.publish("mp4:"+FILENAME+".mp4","record");
    I search Lot but didn't get the solution. So, Please Give me Solution for Both thing.

    The .flv format is a "container" format, not a video format.
    So that means that inside the container, you can have a video file and/or an audio file or even just an audio file.. which most likely is already an mp3 file. Use something like "FLV Extract" to break open the container and see:
    http://moitah.net/
    But really, for any Web delivery of audio, the .flv (audio only) method works just fine. Lots of media players available for the Flash .flv file.
    For example:
    Sounds from my bunk on the Lady Washington
    http://exploreolympics.com/reports/?p=2857
    Scroll down to third media player.
    A little quiet to start with... but this is a .flv file with just an mp3 audio file inside.
    Best of luck!
    Adninjastrator

  • Can I change the time format of incoming mails, in Mail? Now I have AM/PM, but I live in Denmark where we don't use that format. We have a 24-hour clock format i.e. 14:52 instead of 2:52 PM.

    Can I change the time format of incoming mails, in Mail? Now I have AM/PM, but I live in Denmark where we don't use that format. We have a 24-hour clock format i.e. 14:52 instead of 2:52 PM.

    Is the time format of your Mac in 24 hour?

  • Record audio file in a wav file format using QuickTime 7 Pro for Windows?

    Is it possible to record audio file in a wav file format using QuickTime 7 Pro for Windows? The system I want to upload audio files that I record to requires they be in a wav file format / PCM - 112025kh / 8 bit mono / 11.05khz
    Something tells me no...and I bought this upgrade for nothing...GRRRRRRR

    QuickTime Pro for Windows allows you to make audio recordings from some input devices.
    You can then "export" these new files to .wav format at any setting you choose.

  • Using .wmv clip in iMovie 6

    How do I use a film clip, currently in .wmv format, in iMovie HD 6? I am using iMovie for the first time, and when importing a new clip with a .wmv extension, the clip has text across the middle of the screen 'Created with Flip4Mac Trial' 'www.Flip4Mac.com'.
    I did have Flip4Mac, but have deleted it completely from the MacBook.

    Sounds like you, at one time, converted a wmv to a .mov, cause wmv will not import into iMovie without converting it first. The watermark on it says that you didn't have a paid version. The free version allows you to convert up to 30 seconds of a clip, but lets you know that it's in trial mode with that watermark.
    If you indeed want to use wmv stuff in your edit, then you'll have to buy F4M or there's another thing called Visual Hub...F4M is the better of the 2, but VH is about twenty bucks cheaper.

  • How to embed audio to my website using quicktime when I get "file not found

    hi,
    i've been trying to embed audio into my website all night and I get a file not found message even though I;ve checked 100 times and all files are where links say they should be..
    but even just linking to audio (mp4) files won't work...
    everything is o.k. with non-audio links on my website - only the mp4 audio can't be found.
    can anyone help me? or post the correct code?
    I've tried using these formats..
    <EMBED SRC="anymovie.mov" HEIGHT=176 WIDTH=136>
    <embed
    src="http://www.crossandthrone.com/.samples/qt/sample-reference2.mov"
    width="242" height="199" autoplay="false" loop="false"
    controller="true" bgcolor="#666666"
    pluginspage="http://www.apple.com/quicktime/"></embed>
    the pages that should play audio just have a quicktime file with a question mark on them
    help would be much appreciated!

    Start here:
    http://www.mediacollege.com/video/streaming/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "subdued2u" <[email protected]> wrote in
    message
    news:gbg2th$r13$[email protected]..
    > Hello ,guys, i have a website,, and i would like to add
    upload vidoes on
    my
    > website i have tried but did not work can anyone please
    tell me how to
    embed my
    > videos in my website using dreamwever ?
    > thank so much
    >

  • Plz tell me which sound file format uses minimum memory of a director file

    plz tell me which sound file format uses minimum memory of a director file. bcoz on adding sound the projector file becomes a large memory file .
    so i am confused that which file format should be used.

    saramultimedia,
    Are you certain that you're asking your question in the right place? This forum is about the Adobe Media Encoder application. Most of the people who answer questions here are familiar with the digital video and audio applications such as After Effects and Premiere Pro.
    If you have a question about Director, it's probably best to ask on the Director forum. But I see that you already know that, since you already have a thread on that forum to ask this question, and it got an answer:
    http://forums.adobe.com/thread/769569

  • Using Adobe Connect to Live Stream an Event

    Hi everyone,
    I was hoping to get some suggestions about how we could best use Adobe Connect to live stream an upcoming event. Every year we host an event with both a live and an online audience. Traditionally we've asked our presenters to speak into a microphone that is connected to a PA system in the room and then a separate microphone connected to a laptop pics up the audio coming out of the PA system and transmits it through Connect. I suspect that there must be a better way to do this (perhaps using a mixing board?), but I'm not sure how that would work. Does anyone have any ideas/suggestions?
    Similarly, does anyone have any thoughts on adding a live video feed? Ideally I'd like to broadcast a video feed at a resolution around 480, but I'm not sure if that's realistic. Any insights people may have would be greatly appreciated.

    When doing mixed events (live and online) with Connect, I've used an audio out from a mixing board, or if you can off the PA system. This ensures a direct like from the mic being used and eliminates the chance for the PA's audio to be picked up by the mic and creating an echo or disruptive background noise.
    As to the live video feed, that should be easy enough. So long as you can connect your camera (webcam or otherwise) to the computer, there should be a method to get the live stream in Connect. The feed needs to be seen as a webcam by your computer's OS, but this can be worked around with an application called DVdriver ($20), if needed. It is also free to try, so you can test at no additional cost. Connect supports up to 480P.

  • Audio delay problem when using UAD plug ins on aux track

    HI there,
    I've been trying to route my drum tracks to bus 1, then send bus 1 to the aux 1 track also and apply UAD compression plug ins to it to mimick the NYC parallel compression technique.
    But, when I do this, and add one of the UAD plug ins to the aux 1 track, the audio on that track becomes noticeably delayed by a few ms and you hear a kind of phasing/flamming sound as the bus 1 and aux 1 track combine slighlty out of sync. However, if i use logic's own compressors on the aux track there is no delay notivceable and it works fine.
    frustrating as i'd like to be able to use the 1176 or lA2A on the drum track on the aux bus!!
    any ideas?
    J Cee

    try this setting
    I suppose that you need software monitoring for use Logic Compressor and reverbs in live monitoring mode
    the setting is
    Sample buffer 256 or 128
    PDC set to Audio And Software Instrument...
    this set if very good
    I always use that with UAD plugins in Live mode on my professional studio
    No latency at ALL
    when Mixing set the buffer at 1024 and PDC to all...
    this set is very important only in th Mixing Phase
    feel free to ask for more advice
    Cheers

  • HT3775 how to extend QuickTime to import or play other popular and specialized media formats using codec components

    how to extend QuickTime to import or play other popular and specialized media formats using codec components for my MacBook Air?

    plamenok1 wrote:
    how to extend QuickTime to import or play other popular and specialized media formats using codec components for my MacBook Air?
    You can install Perian, 
    http://www.perian.org/
    although this will be the last version, and Flip4Mac.
    http://download.cnet.com/Flip4Mac-WMV-Player/3000-13632_4-87679.html
    Otherwise you may have to look at a different and more extensive player such as VLC
    http://www.videolan.org/vlc/index.html
    or MPEGStremclip
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Good Luck
    Pete

  • Help needed  while exporting crystal reports to HTML file format using java

    Help needed  while exporting crystal reports to HTML file format using java api(not using crystalviewer).i want to download the
    html file of the report
    thanks

    the ReportExportFormat class does not have HTML format, it has got to be XML. Export to HTML is available from CR Designer only.
    Edited by: Aasavari Bhave on Jan 24, 2012 11:37 AM

Maybe you are looking for

  • Installing repository packages offline

    I am working on a Solaris 10 system not connected to Internet. Is there any means to download packages along with their dependencies to some other system connected to Internet and then install downloaded packages offline?

  • Firefox has stopped working and now it will not start up. If it does start up it freezes before opening any pages

    Firefox suddenly stopped loading up. If it did start loading it would freeze as soon as the window opened and would not close down. I have tried uninstalling firefox and reloading it but the same problem occurs. I have also tried uninstalling, deleti

  • PE 9 will not load after installing Elements 10

    Installed Elements 10 on Vista 64-bit.  Did not uninstall Elements 9.  Now PE 9 will not load; get window Adobe Premiere Elements.exe - No Disk.  There is no disk in the drive. Please insert a disk into drive\Harddisk2\DR2.  Tried disk 2 of 3 from pa

  • Need HELP with Format again !

    Hi there, I am getting mad....because I can't find what I do wrong....and I thought that I had all understood... 1) I shot a bunch of clips with a Sony HD. According to Mediainfo, clips are 1440x1080, as I expected from my movie camera settings 2) I

  • Having a bug only with Internet Explorer 7

    I am trying to create a special datagrid to store new member of a project (the interface is to create new project). I am able to open a cfwindow if the user want to add a new member into the datagrid. The cfwindow will consist of a form of 3 cfselect