Weird and occasional audio behaviour

Hello everybody
    I've always had this strange problem with Archlinux, and eventually I decidede to ask your opinion about it.
Sometimes I turn on my PC and audio doesn't work... Only in some applications!
Let me make it more clear: on these unlucky starts, I can hear KDE's login sound, as well as skype and kopete notifications, and even the bells when kmail receives a new mail.
Nevertheless, if I try to launch amarok, mplayer, mpc, youtube or anything else audio will simply not work [mplayer plays but reports an error about its being unable to find an audio device, amarok doesn't even start playing, youtube shows the video but no audio and so on].
When this happens, I simply reboot, and tipycally everything gets back normal on the second [or third, or else] time I boot.
Any clue what this could be?
Further informations:
*  I [finally successfully] DID switch to systemd
*  this problem didn't seem to appear after a particular update
*  in phonon my backend is gstreamer
*  whenever I need to set the volume [speakers, microphone, ...] I open a terminal and run alsamixer
Thanks for help
P.s. Sorry if this is a duplicate of some older post, I wasn't sure what to search at all XD

kde notifications system always keeps the soundcard you set in phonon busy, so if your soundcard does not work well with that, you might have to use dmix with alsa, unless you you have an audio server like jack in your setup, in which case the solution will be another

Similar Messages

  • ISight makes croaking sounds and produces audio dropouts in recordings

    Hi!
    This is weird and hopefully not normal?!?
    My new iSight made these short cracking sounds (kind of like scratching over sheet of paper) from the beginning.
    Once when starting up the Mac and all along during video recording or conferencing.
    That alone wouldn't be such a big problem but audio is very weak too, since it produces drop-outs and other weird noise especially during conferencing or even just during skype phoning (no video).
    While trying to record that sound (iMic) I found out that its not possible because other Audio In dropped out too, while iSight is croaking :-S
    Of course I tried out everything I could and the problem is still there even when the iSight is the only peripheral (USB and FW) on my G5.
    ISight is the perfect webcam and makes awesome picture and sound quality besides the mentioned issues. Hopefully I don't have to send it back.
    Thanks for your help buddies!

     How to test your iSight to ensure it is functional should help you find out whether you need to have your new iSight repaired or exchanged under warranty.
    If your G5 is otherwise reliable and stable, because you are having the same problem with your iSight when driven by different apps, your iSight, iSight's connecting cable, or your G5s firewire or connections would seem to be the most likely suspects.

  • View joining two spatial tables and strange CBO behaviour

    Hi all,
    I've following view in my database:
    CREATE OR REPLACE VIEW my_view AS
    SELECT id, 'table1' AS source, location FROM my_table1
    UNION ALL
    SELECT id, 'table2' AS source, location FROM my_table2;
    When I execute query:
    SELECT * FROM my_view WHERE SDO_RELATE(location, SDO_GEOMETRY(...), 'mask=anyinteract') = 'TRUE';
    It works as expected.
    When running query like (getting location with subquery):
    SELECT * FROM my_view WHERE SDO_RELATE(location, (SELECT location FROM my_table3 WHERE id = 123, 'mask=anyinteract') = 'TRUE';
    It doesn't work. Oracle Throws "DatabaseError: ORA-13226: interface not supported without a spatial index"
    Further investigation revealed strange behaviour of CBO:
    In first case Oracle CBO uses Spatial index just fine and as expected.
    But second query and CBO get's a bit strange - unique index scan is used for subselect, but for view tables is full table scan is used and SDO_RELATE is not happy with that since no spatial index is used.
    How I can use spatial indexes regardless of that subselect?

    Hi folks,
    Looking over these responses and not finding a lot of clarity yet in terms of leaving a trail for future readers to glean an answer from.  I was just looking through the back-and-forth and curious myself about the issue  First of all I think Jani's observations are quite on target.  This CBO reaction is weird and does not work they way most Oracle users would expect it to work.  Secondly, Jani really should tell us his Oracle version and folks providing answers should as well - the CBO is always being tweaked.  Thirdly, Stefan provides a solution though it's a rather expensive solution to my taste.  And finally, I think we as a group need to spend a bit more time reproducing things in code.  I will give it a shot, feel free to correct anything I got wrong.
    So first of all, I wrote this up quick on 12.1.0.2 and verified it was the same on 11.2.0.4
    DROP TABLE my_table1 PURGE;
    CREATE TABLE my_table1(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    DROP TABLE my_table2 PURGE;
    CREATE TABLE my_table2(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    DROP TABLE my_table3 PURGE;
    CREATE TABLE my_table3(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    CREATE OR REPLACE PROCEDURE seeder(
       p_count IN NUMBER
    AS
       sdo_foo MDSYS.SDO_GEOMETRY;
       int_counter NUMBER := 1;
       FUNCTION random_line
       RETURN MDSYS.SDO_GEOMETRY
       AS
          num_x1 NUMBER;
          num_y1 NUMBER;
          num_offx NUMBER;
          num_offy NUMBER;
       BEGIN
          num_x1 := dbms_random.value(-179,179);
          num_y1 := dbms_random.value(-89,89);
          RETURN MDSYS.SDO_GEOMETRY(
              2002
             ,8265
             ,NULL
             ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
             ,MDSYS.SDO_ORDINATE_ARRAY(
                  num_x1
                 ,num_y1
                 ,num_x1 + 0.0001
                 ,num_y1 + 0.0001
       END random_line;
    BEGIN
       FOR i IN 1 .. p_count
       LOOP
          sdo_foo := random_line();
          INSERT INTO my_table1
          VALUES (
              int_counter
             ,'table1'
             ,sdo_foo
          int_counter := int_counter + 1;
          sdo_foo := random_line();
          INSERT INTO my_table2
          VALUES (
              int_counter
             ,'table2'
             ,sdo_foo
          int_counter := int_counter + 1;
          sdo_foo := random_line();
          INSERT INTO my_table3
          VALUES (
              int_counter
             ,'table3'
             ,sdo_foo
          int_counter := int_counter + 1;
       END LOOP;
       INSERT INTO my_table1
       VALUES (
           0
          ,'table1'
          ,MDSYS.SDO_GEOMETRY(
               2002
              ,8265
              ,NULL
              ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
              ,MDSYS.SDO_ORDINATE_ARRAY(
                   -87.8211111
                  ,42.5847222
                  ,-87.8212
                  ,42.5848
       INSERT INTO my_table3
       VALUES (
           0
          ,'table3'
          ,MDSYS.SDO_GEOMETRY(
               2002
              ,8265
              ,NULL
              ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
              ,MDSYS.SDO_ORDINATE_ARRAY(
                   -87.8211111
                  ,42.5848
                  ,-87.8212
                  ,42.5847222
       COMMIT;
    END seeder;
    BEGIN
       seeder(100000);
    END;
    SELECT 'my_table1: ' || COUNT(*) AS invalid_count FROM my_table1 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE'
    UNION ALL
    SELECT 'my_table2: ' || COUNT(*) AS invalid_count FROM my_table2 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE'
    UNION ALL
    SELECT 'my_table3: ' || COUNT(*) AS invalid_count FROM my_table3 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE';
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE1'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE2'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE3'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    CREATE INDEX my_table1_spx ON my_table1
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    CREATE INDEX my_table2_spx ON my_table2
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    CREATE INDEX my_table3_spx ON my_table3
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    BEGIN
       dbms_stats.gather_table_stats(USER, 'MY_TABLE1');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE1_SPX');
       dbms_stats.gather_table_stats(USER, 'MY_TABLE2');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE2_SPX');
       dbms_stats.gather_table_stats(USER, 'MY_TABLE3');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE3_SPX');
    END;
    CREATE OR REPLACE VIEW my_view
    AS
    SELECT
    objectid
    ,'table1' AS tsource
    ,shape
    FROM
    my_table1
    UNION ALL
    SELECT
    objectid
    ,'table2' AS tsource
    ,shape
    FROM my_table2;
    set timing on;
    -- QUERY #1
    -- Jani's original setup, works as expected
    SELECT
    COUNT(*) AS single_geom_counter
    FROM
    my_view a
    WHERE
    MDSYS.SDO_RELATE(
        a.shape
       ,MDSYS.SDO_GEOMETRY(
            2002
           ,8265
           ,NULL
           ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
           ,MDSYS.SDO_ORDINATE_ARRAY(
                -87.8211111
               ,42.5848
               ,-87.8212
               ,42.5847222
       ,'mask=anyinteract'
    ) = 'TRUE';
    -- QUERY #2
    -- Now the problem statement
    SELECT
    COUNT(*) AS table_problem_counter
    FROM
    my_view a
    WHERE
    MDSYS.SDO_RELATE(
        a.shape
       ,(SELECT b.shape FROM my_table3 b WHERE b.objectid = 0)
       ,'mask=anyinteract'
    ) = 'TRUE';
    -- QUERY #3
    -- Stefan's solution
    SELECT  /*+ ORDERED */
    COUNT(*) AS stefans_solution
    FROM
    my_table3 a
    ,my_view b
    WHERE
    a.objectid = 0
    AND MDSYS.SDO_RELATE(
        a.shape
       ,b.shape
       ,'mask=anyinteract'
    ) = 'TRUE';
    Anyhow, so the hard coded query #1 that Jani provided works exactly the way most folks would expect, the second item in the relate is applied to each spatial index participating in the view.  I think we can agree this is what we want.
    Now when we move on to the problem, well its all goes off the rails as I think its looks to apply the spatial filter to the view itself which lacks an index (not sure really)
    So as Stefan says, you can work around this by rewriting things as query #3 does above though now its a full table scan of both tables in the view.  This is a long way performance wise from Query #1!
    So on my 12c test box
       query #1 Elapsed: 00:00:00.016
       query #3 Elapsed: 00:00:33.534
    On 11g production box
       query #1 Elapsed: 00:00:00.49
       query #3 Elapsed: 00:02:31.45   (ouch!)
    So hopefully someone else can jump in with more information on better solutions?  
    I overall tend to avoid the kind of unioned views that Jani is using here.  I have a hard time recalling why but I must have been burned similarly many years ago when I was first starting with Oracle spatial.  I tend to always want my spatial indexes right there where I can keep a grim stink eye on them.  It may be that a unioned view with multiple spatial indexes behind it might just be a bad practice better done with a materialized view?  Or maybe a lesser term?  Unprofitable practice?  fraught?  "Best if you don't do that"?
    Anyhow, I would be interested in what others have as input on the matter.
    Cheers,
    Paul

  • Why does my footage Slow down and loose audio when imported to after effects cs6?

    Whenever I import video of any kind into after effects, it slows down and looses audio. It happens for every video. The weird thing is, it seems like it doesnt happen to anyone else on the internet. CAN SOMEONE PLEASE HELP ME PLEASE!!!! I am about to cry. I cant do anything with this stupid software! If there is a solution please tell me. Its really annoying.
    extra info-
    On Mac
    mov. Files
    H.264 codec

    Slows down when? When you preview? Do you know how to preview?
    If you are pressing the space bar to preview the video then the behavior you are seeing is normal. AE will not playback in real time with autio unless you do a ram preview (look it up). You must learn to use the software.
    Start with the three videos on this page: Basic Workflow
    Or check out these resources: AE Basics

  • Audio behaviour to stroke

    hi folks!
    i tried to attach an audio behaviour to a stroke (should look like a simple wave-form), so that its points move to a specific frequency (e.g. voice) from an audio source.
    it should react as shown in this tutorial (trapcode form was used in this one):
    http://www.redgiantsoftware.com/assets/uploads/file/community-tutorial/formaudio.html
    i've already tried the audio behaviour (parameter) to stroke and a few wiggle behaviours (on form and with parameters), but they do not react on silent parts...instead the stroke moves permanently.
    has anyone a solution or do i have to wait for trapcode form plugin ready for motion?

    if i have a simple stroke (linear) with some other control points on it. how is it possible to attach motions audio behaviour, so that these control points react to... let's say a basedrum?
    sure, you can attach it to the strokes transform, rotation etc. parameters, but i haven't figured out, how to attach it, so that when basedrum kicks in, the control points (under the geometry-tab) move up - and then down, when theres no basedrum.
    i think u can't do this with a simple audio behaviour...

  • Audio Behaviour : As parameter controller

    I've been trying out the audio behaviour to control various parameters but it's use seems a bit hit and miss.
    The little preview window, which shows the frequency bands doesn't seem to be particularly reliable - either it doesn't react at all, or the bands do not seem to correspond with what is happening with the audio (i.e. when the little play button is pressed below the freq-bands window). I can however get it to control various parameters - just that it's setup doesn't seem to working properly.
    Anyone else getting issues like this?

    if i have a simple stroke (linear) with some other control points on it. how is it possible to attach motions audio behaviour, so that these control points react to... let's say a basedrum?
    sure, you can attach it to the strokes transform, rotation etc. parameters, but i haven't figured out, how to attach it, so that when basedrum kicks in, the control points (under the geometry-tab) move up - and then down, when theres no basedrum.
    i think u can't do this with a simple audio behaviour...

  • The Superdrive on my MacBook Pro ejects audio CDsa few seconds after they are inserted. This happens with both prerecorded CDs I have bought in music stores AND with audio CDs I have recorded myself, on the very same computer, via iTunes.

    The Superdrive on my MacBook Pro ejects audio CDs just a few seconds after inserting them. This happens both with original audio CDs I have bought in music stores AND with audio CDs I have recorded myself, on the very same computer, via iTunes. The same does NOT happen with data CDs (e.g., stuff in mp3 format), which are read just fine. This behaviour started a couple of weeks ago, until then everything had worked just fine for years. I am running iTunes 11.1 under Snow Leopard 10.6.8. Any idea?
    Fabrizio

    You could also try a SMC reset:
    Resetting the SMC (System Management Controller) on Intel-based Macs:
    http://support.apple.com/kb/ht3964  and
    http://support.apple.com/kb/HT1237?viewlocale=en_US

  • Weird and aggravating user-burned DVD problem.

    Hi,
    I'm experiencing a very weird and annoying problem with my self-written data DVDs.
    Basically, when I wrote a couple of data-DVDs today, I cannot seem to copy the files from these DVDs on a Mac via the normal way anymore. Basically, when I mount my DVD I see all my files just fine, but when I wish to copy one to my computer I get the forbidden-cursor (the one with the black arrow and a white stopsign). Now the weird part is that if I select multiple files I can actually copy them to the hard-drive, but with a strange caveat; namely the file that I selected last will not be copied over.
    This was the first time my self-written DVDs showed this behaviour, so to check I dug out an older DVD which I knew worked perfectly a year ago. But lo and behold, it now also displays this behaviour. What's more, it seems suddenly all three Macs in this house decided do treat my DVDs (old and new) in this weird way. The lone Windows pc downstairs otoh actually did just fine and allowed me to copy single files from the disc with no problem.
    But that's not all. If I insert such a DVD and later on insert a self-written CD, this CD suddenly shows the same behaviour. Only after relaunching the finder will this CD work correctly again (sadly, this doesn't help with the DVDs).
    To write my DVDs I use an external LaCie d2 16x DVD+/-RW (completely up to date with respect to its firmware) with Toast Titanium 7.0.1 on an eMac G4 1ghz running Tiger 10.4.7 .
    I use either DVD+R or -R (both show this problem) and write them using Toast's Mac & PC data disk option. Between the three Macs here at home the only constant factors are the Apple-supplied system updates, leading me to believe there is either an undocumented burning bug in Toast or there is a problem in Tiger 10.4.7 .
    A google-search did not bring up anything, neither a confirmation nor a solution for this problem. My question now is; has anyone here ever experienced this problem and found a solution (or have at least an idea what the underlying problem could be)?
    Thanks for any and all replies,
    Tim
    P.S.: I figured that perhaps there was a sort of permission problem on the mount volumes, so I ran the fix permissions routine but to no avail sadly.
    eMac G4 (1 Ghz) ATI-graphics, combo-drive, 512 Mb RAM, 160 GB HDD   Mac OS X (10.4.7)  

    Update:
    It seems that older DVDs do in fact still work ok when one relaunches the finder, just like I mentioned for cd's in my above post. So seemingly the DVDs written today somehow seem to 'corrupt' the Finder with their behaviour.
    In fact the last 'good' backup DVD I wrote was in february of this year, so whatever is causing this must have happened between then and now. This gives me the impression that there must be an incompatibility between 10.4.7 and either Toast 7.0.1 or with the firmware on my DVD±RW drive.
    Any insight is greatly appreciated.
    Sincerely,
    Tim

  • A movie I bought a while ago will no longer play, instead it just shows a black screen and no audio. All of the other movies in my library play fine. Any ideas as to whats going on or how to fix it? Thanks for any help.

    A movie I bought a while ago will no longer play, instead it just shows a black screen and no audio. All of the other movies in my library play fine. Any ideas as to whats going on or how to fix it? Thanks for any help.

    Hi 22chill,
    I recommend that we delete and re-download the movie from your purchase history:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Thanks,
    Matt M.

  • Unable to see video & audio tracks as shown in "Create a sequence or timeline and add audio"

    hi,
    I'm on the https://helpx.adobe.com/creative-cloud/learn/start/premiere.html page trying to work through the Create a sequence or timeline and add audio tutorial
    And cannot see the Video & Audio, as shown in the bottom right sub-window
    I'm using a trial version of Premier pro CC downloaded yesterday. On my mac mini running 10.9.2
    does anyone know how to fix this problem?
    thanks
    david
    I am able to hear the audio.
    Message was edited by: spottedsilvertabby

    Hi,
    Error 7 is when a router or the connection to the router is broken in some way.
    Some devices have features such as Denial Of Service protection (DoS) that cut a particular Internet Port when it thinks too much data is coming (Presuming it is an attack.)
    iChat 5 in Leopard is not capped by the System Preferences > Quicktime Streaming speed (which we used to suggest was set at 1.5Mbps)
    It now sees your whole Connection speed and your Upload may be much faster than this.
    Your Download is likely to be much faster. However iChat will tend to operate at the lower figure of your Upload.
    DoS features are threshold based.
    You may now be bumping in to this Threshold where you were not before.
    SPI (Stateful packet Inspection) does a different job but has the same effect when it is overloaded by the speed of the data.
    If you have either of these features, turn them Off (Disable them)
    7:25 PM Friday; October 2, 2009

  • My ipod's music quality is inferior. It doesnt have the surround sound/ left and right audio channel unlike my brothers ipod? is there a problem with the chip?

    I have an ipod touch 4g (8GB), I got this about 2.5 months ago, the same time my brother get his. My problem is that I noticed that audio quality is better on his device than mine. I have been listening to music and had different music devices before (non-Apple product and mobile phone) and the quality of music is better when I used to listen to those devices as well as my brother's ipod touch. Im referring to the left and right audio channels. Im not so good about the technical stuff but the best explanation I can give you is in a music or a movie, there's an effect wherein you can here a sound only at the left ear phone/speaker that you cant hear at the right earphone/speaker. I mean for example in a song, a guitar intro can be heared only at the left
    ear while the background music plays on the other ear. Or when theres and echo effect on the song that alternates sound on the left and right ear. I hope youre getting what Im trying to say. Im bothered that my ipod is fake or has an internal problem on the chips or something because I didnt bought this at an Apple Center/Mac Center. I bought it on a retailer. I am not able to visit any store or Genius Bar  or contact an apple specialist through phone because of my work schedule and work load.  I have contacted the retailer before when I tried to return it for replacement or repair but he told me that it is under Apple's warranty, not theirs. I do hope that I can get a help from you because I want to really enjoy my device. Thank you and Im looking forward for the responce/assistance form you.

    I suggest you don't apply pressure to the screen - it's a Touch - you touch the screen not push it.
    Phil

  • When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the test and change the font, it does not change it properly?

    When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the text and change the font, it does not change it properly? This is making it impossible to amend.

    Hi Janedance1,
    If the PDF that you converted already has searchable text, please try disabling OCR as described in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel. (If the PDF was created from a scanned document and doesn't already have searchable text, disabling OCR isn't a great option, as the text won't be searchable/editable in the converted Word doc.)
    Please let us know how it goes.
    Best,
    Sara

  • I have a new Macbook Pro.  When watching Youtube videos, it works perfectly until I attempt to watch the video in full screen.  When in full screen, the video freezes immediately and the audio continues.  When minimized it works fine as before. Help?

    I have a brand new Macbook model A1502.  I am taking online college classes that incorporate youtube tutorial videos.  I can watch the videos if I don't maximize the screen to full screen.  When in full screen, the video freezes immediately and the audio continues uninterrupted.  I can press escape and go back to the previous screen and the video continues to play with no problems.  Can anyone help me please?  This machine is literally just out of the box with maybe an hour of use.  Thanks in advance

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Facebook and streaming audio issues

    I like using Facebook and stream audio from my favorite radio stations!  However, I am running into adobe flash upgrade issues!!!!  I can bring up Facebook but I can't run certain programs within it.  I can bring up my favorite radio stations but won't let me stream audio!!!!  Any solutions?

    What exactly are your issues?
    I had an issue where every image found on the blog template was showing up instead of the actual image that represented the blog post. My fix was to make sure of the following:
    1. Blog image needs to be small in file size. Many bloggers post images that came straight off their camera and I found that the share tools will grab the most accessbile and light-weight files first. If the image is too big then it won't grab it at all. The share tool grabs the smallest and fastest loading, top-most in the code image first, which means the images found on the template of the blog.
    This issue occurs at WordPress too, so it is not restricted to BC but rather the tools provided to share.
    2. Try to avoid putting the image inbetween <p></p>'s, when I pulled mine out of the the paragraph format, they were found quicker.
    3. Avoid having the image lead off the blog post list before the bodypreview, if you can at all just show the image on within post detail page if you can. I know that having an image in the list helps, but then just put the whole blog in the list, like WP does. Problem here is that most share tools on the list have a problem diciphering what to share, so it shares the whole page, giving everthing a share count. WP does this better. They isolate the independent listings and provide isolated share tools for each list.
    Wait a week and the technology will change again.
    Good news is that the element that Facebook offers to share a page on the web will be featuring the option to upload an image to accompanying the sharing of the post. You can see this happening at Facebook already when you drop in the link of the post into a news feed.
    I hope this helps.

  • How to split video and extracted audio clip at same time?

    I imported 10 min of DV from my Sony HC96 camcorder to iMovie 6.
    I selected a video clip and split it using cmd-T but the extracted audio clip below it did not split. How can I split both the video and underlying audio clip so I can drag the edge of the new video clip for editing by direct trimming and keep the audio dialogue in sync. I have already gotten the clip volume levels right in the extracted audio.
    This seems pretty basic editing but I must be missing something.
    thanks, ralph
    1.67 GHz 17" PB, PowerMac Dual 2.5 & 23" Cinema Display   Mac OS X (10.4.8)   Airport Extreme Base Station and Airport Express

    Thanks, Sue. Let me see that I have this right. I split the video then the audio. I then selected and trimmed the video to the remove the 10-15 seconds I wanted to remove. To keep the dialogue in sync with the speaker's lips, I then selected and trimmed the audio to the same time as I trimmed the video. Then I dragged the audio clip back up to the new start of the trimmed video clip. I did this and the dialogue and lips seem to be in sync.
    I guess originally I had looked for a solution where I cut both clips at the same time and trimming one trimmed the other. But now I see I just need to do them separately. Thanks for the help, Sue!
    ralph
    Hi Ralph:
    You can't do both at the same time, but you can do
    them one right after the other. Highlight the audio
    and split it after you split the video and be sure to
    keep the playhead in the same position.
    Sue
    1.67 GHz 17" PB, PowerMac Dual 2.5 & 23" Cinema Display   Mac OS X (10.4.8)   Airport Extreme Base Station and Airport Express

Maybe you are looking for