Streaming error 10054 driving me crazy

I am behind a firewall and have tried every port imaginable. I have exhausted all sources and have found myself here. I try to log on to WJBC Live. It opens QT and says connecting. Then it gives me 10054: Anyone have any ideas? Any help would be great.

Doug, welcome to these discussions.
I'm using a Mac (built in firewall settings) over pitiful Texas dial-up and can listen to the "live" radio broadcast. QuickTime 7 automatically picks the best settings and even re-connects after a "drop".
Open QuickTime Player and select "Open URL". Copy (do not click) on this link:
http://www.stretchinternet.com/wjbc/WJBClivelink.mov
Paste it into the dialog and hit return.
They stream the file using http port 80. If you have access to the Web you should have no issues.
The file should work with any version of QuickTime 4, or higher.

Similar Messages

  • "this accessory is not.." error is driving me crazy.

    "this accessory is not optimized for this iPhone" error will not stop popping up on my phone every 10 seconds or so. Plugged in or not, it continues. Did an update, a full restore, NADA!. It is eating away at my battery life during the day and the joy I get when my iphone lights up with a text message is rapidly becoming a feeling of hate and frustration.
    help.

    This means one of several things.
    There is some lint, dirt, or foreign material in your iPhone's dock connector port, and it doesn't take much.
    Your iPhone's dock connector port is damaged - one or more pins is/are bent.
    Your iPhone's dock connector port has some moisture damage.

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    Hello joelfromn. charleston,
    It seems you are unable to activate iMessage on a device with no carrier service. The following article provides information regarding activation issues:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Check your device settings
    Make sure that you’re connected to a cellular data or Wi-Fi network. If you're using an iPhone, you'll need SMS messaging to activate your phone number with iMessage and FaceTime. Depending on your carrier, you might be charged for this SMS.
    Go to Settings > General > Date & Time and make sure that your time zone is set up correctly.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Errors driving me crazy! But, it all compiles fine

    Errors driving me crazy! although compiles fine
    I am working on a project for an online class - I am teaching myself really! My last assignment I cannot get to work. I had a friend who "knows" what he is doing help me. Well that didn't work out too well, my class is a beginner and he put stuff in that I never used yet. I am using Jgrasp and Eclipse. I really am trying but, there really is no teacher with this online class. I can't get questions answered in time and stuff goes past due. I am getting this error:
    Exception in thread "main" java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader .java:55)
    at java.util.Scanner.<init>(Scanner.java:590)
    at ttest.main(ttest.java:54)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    This is my code:
    import java.util.*;
    import java.io.*;
    public class ttest
    static Scanner console = new Scanner(System.in);
    public static void main(String[] args)throws IOException
    FileInputStream fin = null; // input file reference
    PrintStream floser = null; // output file references
    PrintStream fwinner = null;
    Scanner rs; // record scanner
    Scanner ls; // line scanner
    String inputrec; // full record buffer
    int wins; // data read from each record
    int losses;
    double pctg;
    String team;
    String best = null; // track best/worst team(s)
    String worst = null;
    double worst_pctg = 2.0; // track best/worst pctgs
    double best_pctg = -1.0;
    int winner_count = 0; // counters for winning/losing records
    int loser_count = 0;
    // should check args.length and if not == 1 generate error
    try
    Scanner inFile = new Scanner(new FileReader("football.txt"));
    catch( FileNotFoundException e )
    System.exit( 1 );
    try
    floser = new PrintStream( new FileOutputStream( "loser.txt" ) );
    fwinner = new PrintStream( new FileOutputStream( "winner.txt" ) );
    catch( FileNotFoundException e )
    System.out.printf( "unable to open an output file: %s\n", e.toString() );
    System.exit( 1 );
    try
    rs = new Scanner( fin );
    while( rs.hasNext( ) )
    inputrec = rs.nextLine( ); /* read next line */
    ls = new Scanner( inputrec ); /* prevents stumble if record has more than expected */
    team = ls.next( );
    wins = ls.nextInt();
    losses = ls.nextInt();
    if( wins + losses > 0 )
    pctg = ((double) wins)/(wins + losses);
    else
    pctg = 0.0;
    if( pctg > .5 )
    if( pctg > best_pctg )
    best_pctg = pctg;
    best = team;
    else
    if( pctg == best_pctg )
    best += ", " + team;
    fwinner.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    winner_count++;
    else
    if( pctg < worst_pctg )
    worst_pctg = pctg;
    worst = team;
    else
    if( pctg == worst_pctg )
    worst += ", " + team;
    floser.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    loser_count++;
    fin.close( );
    floser.close( );
    fwinner.close( );
    catch( IOException e ) {
    System.out.printf( "I/O error: %s\n", e.toString() );
    System.exit( 1 );
    System.out.printf( "%d teams have winning records; %d teams have losing records\n", winner_count, loser_count );
    System.out.printf( "Team(s) with best percentage: %5.3f %s\n", best_pctg, best );
    System.out.printf( "Team(s) with worst percentage: %5.3f %s\n", worst_pctg, worst );
    The assignment is:
    Create a Java program to read in an unknown number of lines from a data file. You will need to create the data file. The contents of the file can be found at the bottom of this document. This file contains a football team's name, the number of games they have won, and the number of games they have lost.
    Your program should accomplish the following tasks:
    1. Process all data until it reaches the end-of-file. Calculate the win percentage for each team.
    2. Output to a file ("top.txt") a listing of all teams with a win percentage greater than .500. This file should contain the team name and the win percentage.
    3. Output to a file ("bottom.txt") a listing of all teams with a win percentage of .500 or lower. This file should contain the team name and the win percentage.
    4. Count and print to the screen the number of teams with a record greater then .500 and the number of teams with a record of .500 and below, each appropriately labeled.
    5. Output in a message box: the team with the highest win percentage and the team with the lowest win percentage, each appropriately labeled. If there is a tie for the highest win percentage or a tie for the lowest win percentage, you must output all of the teams.
    Dallas 5 2
    Philadelphia 4 3
    Washington 3 4
    NY_Giants 3 4
    Minnesota 6 1
    Green_Bay 3 4

    If you are working in Eclipse IDE, you can set a breakpoint and single step through your code to determe what line crashes. You can also examine variable values before the crash. Locate a line before the crash and set a breakpoint by double clicking on the vertical blue line that appears immediately to the left of the line of code. A blue 'dot' will appear on the line. Then,from the menu, select 'debug as application'. This will run your main() function up to that break point. In the menu, there are icons to allow you to single step through lines of code from that point, and another icon to step over lines of code if you want.
    Alternatively to setting break points, you can sprinkle your code with piles of System.out.println statements. Example: you have System.out.println("1"), and in another part of your code System.out.println("2"). If you code runs and prints out "1", but not "2", then you code crashed between them. I use breakpoints and System.out.println to debug.
    In your trace, you have "at java.util.Scanner.<init>(Scanner.java:590)" which means it crashed at line 590 (note in all the tracings, Scanner.java is a name of one of your custom classes and not a vendor class, thats how you can quickly find what part of the trace is important to you).
    NullPointerException means you tried to call a function on an object that is not instansiated (its null).
    Example: person.getName() will not work if person is null. Its the call to getName() that crashes.
    Debugging code is a very important skill set that you have to develop in which you have to logically track down and isolate problems.

  • You have chosen to open which is a: application/octet-stream error

    I have been getting his error for a very long time now:
    you have chosen to open (web address here) which is a: application/octet-stream ehat should firefox do with this file? open - save
    i got this from firefox 3, i tried completely uninstalling it, and then reinstalling it
    and the same thing happens in firefox 4, which i just uninstalled firefox 3 and did a clean install of firefox 4
    it happens randomly and periodically, it seems each new session resets the warnings, and when i click on about 35% of the websites in my speeddial, it will load that warning and a blank tab, after i click the speeddial again, it will work for that site, for the rest of the session..
    it seems completely random, sometimes its google.com, sometimes mozilla.com, it could really be anything..
    it could be a website in my speeddial, but it also happens sometimes when typing from the address bar
    i have done extensive spyware sweeps, and antivirus sweeps for anything out of the ordinary, and i even repaired Windows XP SP2, and then I even upgraded to Windows XP SP3, i have all the updates, etc..
    I have 2 computers on this network, and they both do it.
    its really driving me crazy.. i even thoght about wiping my entire hard drive and reinstalling XP, but i dont want to do that
    i tried IE8, but i hated the lack of speedials and tab options
    and I tried Opera but i hated the fact that there were no multiple speedial tabs
    and im not fond of chrome or safari for similar reasons..
    i've tried a few things i've found online, but nothing really applies to this problem
    does anyone have any idea how to fix this so i can keep using firefox?
    thanks

    Show us the output of
    emctl status dbconsoleMost of the times, EM stops with DGCP being enabled on the system after the db's creation. I faced alot of it just 2 days ago when 2 of my boxes stopped EM. So show us the output of the above command and to have an idea of basic EM troubleshooting, read this,
    http://oracle-base.com/articles/misc/BasicEnterpriseManagerTroubleshooting.php
    HTH
    Aman....

  • Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Hi Glenn,
    Kindly try out the steps mentioned in the link below and see if you are able to serialize your software.
    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Try Solution 2: Clean up cached user login information.
    Please share the results after performing the steps.
    Thanks,
    Atul Saini

  • Curve issues driving me crazy!!

    Ok, so I bought my BB Curve in January, and at first I loved it!
    A few days ago though it began going crazy.  Everytime I try to open something I get that annoying clock thing, and then once I finally get the program open, it stays.  This happens during phone calls (so it is rediculous trying to answer and end calls)  writing texts and email - anything.
    Then I added in the battery issue - my phone will die within 6 hours, even if I am not doing anything different.
    And now...the last few nights the screen has gone white with a weird meesage on it (something like APP ERROR I think...)
    I got a new SIM card, and that fixed it for about 6 hours. 
    This is driving me crazy!  i take my battery out so many times during the day it is almost not worth having a phone!
    Please please please help!

    I have the Curve 8130 - my carrier is ATT & for about the last mth it has been sluggish. The hourglass keeps popping up like something is running in the background. I have not loaded any new apps recently & it does starighten out after I pop the battery, but that's getting old pretty quick. Fortunately, I'm not having battery issues - but it is a nuisance to keep fighting with that **bleep** hourglass. Anybody else out there having the same issues or are we just the lucky ones???
    Looks like 2 different carriers here, so I don't think it's an ATT thing. Is Blackberry doing something or upgrading something that maybe we're not aware of? I never had an issue with my Curve before - but this last month has been really aggravating. I'm sure we can't be the only 2 people having these issues. Help!!!

  • Motorola Citrus driving me crazy!

    This phone will NOT capitalize the letter "I" automatically.  I am using the multi-touch keyboard ---- auto-correct errors is enabled.  I also added "I" to my dictionary.  How can I fix this?  It is driving me CRAZY!
    Thanks,
    Dana

        Good afternoon danasuemc.
    It sounds like you've done almost everything to get the "I" corrected on your phone. I'd be frustrated as well. Let's see if we can get this permanently fixed.
    Using the Multi-Touch keyboard, do you have Auto-Capitalization and Auto-Punctuate checked? So make sure, you can go to Menu> Settings> Language & Keyboard> Multi-touch Keyboard> then check Auto-Capitalization and Auto-Punctuate. Please let me know if this works.
    Thanks,
    VanessaS_VZWSupport
    Follow us on Twitter @VZWSupport

  • Transformation problems driving me crazy

    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

    I can get around this by manually modifying the .xq file that is created
    (but not populated with my query) to include
    the xquery mapping that I want, and it works fine. I still can't fathom out
    why the xquery transformation utility comes
    up with the error below.
    SB
    "Stanley Beamish" <[email protected]> wrote in message
    news:[email protected]..
    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

  • Oracle 10g Rel2(10.2.0.3) on Vista ultimate driving me crazy, Please HELP

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

  • Built in iSight driving me crazy - erratic

    Hello there,
    My built in iSight (iMac 2011, 21", OSX Lion updated to date) is driving me crazy, as I need to record some videos for my job. When I´m on the administrator user -the only one I use- it works fine on Facetime, PhotoBooth and iChat, but on Quicktime and iMovie it does not (black screen on iMovie, no green light on camera, if I press "record" it stops after 3 seconds / on quicktime if I click on "record new video" it appears an error message, could be translated -my OSX is in spanish- as "the task can´t be done at the moment".
    I tried adding a new user, and it worked fine with it, I did and SMC reset (same error), erased all preference files (same thing) and later I reinstalled Lion without formatting the hard drive.
    After this last step it worked. I could record a demo video on both quicktime and iMovie. But this morning when I turned it on the error is there again, same behavior, same everything. Before trying to record I just:
    - Changed the wallpaper and some mouse options, and the sound output from "internal" to my external usb sound card.
    - Opened Safari to check mail
    - Opened garage band (it looked for the .au)
    - Opened Logic (same as garage band)
    I´m out of ideas, any help would be great. I´ve just installed Skype to see what happened and it does also not work.
    Thanks in advance,
    Urko

    You're welcome, Urko.
    Well done tracking down the source of the conflict! 
    FWIW, today I checked Focusrite's support pages and note that Scarlett 2i2/usb does NOT appear on the their list of products known to be compatible with Mac OS X Lion: http://www.focusrite.com/answerbase/en/article.php?id=1159
    However, I did find several Focusrite articles concerning the Scarlett USB 2.0 Range products: http://www.focusrite.com/answerbase/en/category.php?id=108.   Article titles from that page, including "Scarlett 2i2", "Using iSight/Facetime HD webcam with your interface on a Mac", or "Latency issues using a Scarlett with Logic", may give you some cither ideas.
    If properly applying the 10.7.5 Combo Update doesn't solve your problem, and if you don't get the real solution from info you find here, I agree that your best bet is direct help from Focusrite. They should best be able to tell you how to use their product with your Mac system.  http://us.focusrite.com/contact-support
    Message was edited by: EZ Jim
    Mac OSX 10.8.2

  • This website is driving me crazy.   All I need to do is to contact a real body for help that is not listed.

    This website is driving me crazy.  All I need to do is to contact a real live body for help that is not listed.
    This shouldn't be that difficult.  GRRRRR

    Post DETAILS about the help you need here and someone may be able to help... some questions to get you started
    From the Premiere Elements Information FAQ http://forums.adobe.com/thread/1042180
    •You MUST use an account with Administrator Privileges to run Premiere Elements
    •(Doing Run as Administrator http://forums.adobe.com/thread/969395 [says Encore and also for "All" versions of Premiere] will sometimes fix "odd" errors)
    •What version of Premiere Elements? Include the minor version number (e.g., Premiere Elements 12 with the 12.0.1 update).
    •What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac"
    •Has this ever worked before?  If so, do you recall any changes you made to Premiere Elements, such as adding Plug-ins, brushes, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers; or installing/uninstalling any programs?
    •Have you installed any recent program or OS updates? (If not, you should. They fix a lot of problems.)
    •What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    •If you are getting error message(s), what is the full text of the error message(s)?
    •What were you doing when the problem occurred?
    •What other software are you running?
    •Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    And some other questions...
    •What are you editing, and does your video have a red line over it BEFORE you do any work?
    •Which version of Quicktime do you have installed?

  • "problem connecting to server" is driving me crazy!

    First off, thank you in advance to anyone who helps me figure this out.
    At one time, I had an HP MediaSmart Home Server named "baird" that my iMac connected to.
    It died one day and now it seems everytime I try to open iPhoto, Aperture, or anything that makes a call to the media libraries, I get the dreaded:
    I have to click OK about 40+ times for it to go away or close the application that triggers it.
    I am guessing at one time I had a reference to some media on my home server but I can't find anywhere that I can remove it.
    I have rebuilt my iPhoto and Aperature libraries to fix any broken links and still get the error.
    I have no active share references to it in my Finder.
    Does anyone have any clues how I can fix this? It's been going on for 3 months and driving me crazy!
    Thanks!

    Bump for sanity's sake...

  • How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.

    How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.
    I listen to primarily classical music
    All of my music was very deliberatley titled by composers "Last Name, First Name" as the artist.
    iTunes is changing it to the Album Artist.  I have to go in and delete that information - AND THEN IT LATER REVERTS IT BACK!!!
    Hours have been wasted and I am feeling so ticked.
    Any help?

    Purchased or ripped media?
    If these are ripped mp3s then another possibility is multiple embedded tags. iTunes works best with a single ID3v2.3 tag. Some software creates both an ID3v1.0 and IDv2.x tag. With multiple tags it is not certain which iTunes reads or which it updates, and any device may choose differently. Once songs have the correct info. in iTunes you can use Convert ID3 Tags... None several times, then Convert ID3 Tags... v2.3. The process removes any embedded art but otherwise preserves the data that iTunes knows. You could use my script CreateFolderArt before and after to save and then restore the artwork.
    In the long run you may be better off populating Album Artist properly with a copy of whatever is currently in Artist. My script CopyArtistToAlbumArtist can do this effectively.
    tt2

Maybe you are looking for