Keyword Escape Sequences: Big Problem

Is there any character escape sequence for LR 1.1 that will allow the use of restricted characters in keywords?
In PSE/CS, if you want to use a comma as part of a keyword, you put the whole phrase inside double quotes.
"Harmon, Anthony" shows up in cataloging apps and others as:
Harmon, Anthony
Well, under LR 1.1 that no longer works and thousands of keywords/files and cross-references need to be redone unless I can find a solution.
Any über-experts out there?

Preferences will allow you to use . as a Keyword separator.
Richard Earney
http://inside-lightroom.com

Similar Messages

  • Bug with Lightroom 4? - Big problem in the keyword list!!

    Hello guys,
    I am Rafael Rojas, a nature and landscape photographer. This is my first post, trigered by a quite bothering problem I am having with my LR...So hello everybody!
    I upgraded to LR 4 a week ago. Today I realized many of the keywords I have installed in Lightroom do not appear on the keyword list (basically all keywords after the letter S). Moreover, half of the keywords which appear on the list are not editable: that is, I cannot assign them to the selected image (by clicking on the left box), or I cannot double click them or right click them to get the Edit panel. All the rest of keywords (those which appear on the list on top), can be edited and there is no problem.
    When I export the keywords as a .txt file (in metadata, export keywords) I can see that all the keywords are there. When I try to write some of them on the box LR recognize them and adds them automatically. However, I just cannot see them on my keyword list or just cannot edit them.
    The reason I want to edit the keywords is because many of them got desactivated while upgrading (something more people have reported). Right now, I cannot send my images to my stock galleries, since many of my important keywords are not active, and I just cannot edit them...
    Can you help me please?
    thanks so much!!
    rafael

    Well, 64 bits.
    And yes, it seems when I erase one keyword, the list "shows" one more below...so it seems the problem is related to a certain limit in number.
    That would be still a problem I could live with, the big problem tough is that many of the keywords got "deactivated" alone by Lightroom (see problem here described http://www.backyardsilver.com/2012/02/strange-behavior-with-capitalized-keywords/) and that means I NEED to edit some keywords which are really important and which are not active. Otherwise, when I export the images those keywords are not embedded...
    Any thoughts?
    Rafa

  • Have a problem in Formatting output with Escape Sequence

    class Welcome
         public static void main(String args[])
              //Khong the hieu noi
              System.out.println("Welcome\tto the world of java");
              System.out.println("Happy\tBirthday");
              System.out.println("Welcome\" to the world of java");
              System.out.println("Bo\ttay");
              System.out.println("Be\ttay");
              System.out.println("Nhe\ttay");
              System.out.println("Welcome\tto Viet Nam");
              System.out.println("?Welcome\tto Viet Nam");
              System.out.println("!Welcome\tto Viet Nam");
              System.out.println("*Welcome\tto Viet Nam");
              System.out.println("#Welcome\tto Viet Nam");
              System.out.println("$Welcome\tto Viet Nam");
              System.out.println("%Welcome\tto Viet Nam");
              System.out.println("^Welcome\tto Viet Nam");
              System.out.println("&Welcome\tto Viet Nam");
              System.out.println("/Welcome\tto Viet Nam");
              System.out.println("Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println(" Welcome\tto Viet Nam");
              System.out.println("Bodsdsadsme\ttay");
              System.out.println("come\tto");
    Let's explain for me...Thanks

    Dou you have a question ?
    The character and string escape sequences allow for the representation of some nongraphic characters as well as the single quote, double quote, and backslash characters in character literals and string literals:'\b'     /* \u0008: backspace       */
    '\t'     /* \u0009: horizontal tab  */
    '\n'     /* \u000a: linefeed        */
    '\f'     /* \u000c: form feed       */
    '\r'     /* \u000d: carriage return */
    '\"'     /* \u0022: double quote    */
    '\''     /* \u0027: single quote    */
    '\\'     /* \u005c: backslash       */In case you are using Java 1.5, you might be interested in System.out.printf(), which usesformat string.

  • Sending escape sequences to control command line printing

    Hello Java Community,
    I am interested in printing PDF files programatically by using a thread that used the runtime environment and the sending a command to print the file.
    I hava managed to print files directly to the printer using "cmd /c acrord32.exe /h /p filename.pdf" thanks to iText FAQ.
    The problem is that when I try sending the job to an Epson LX 300 printer, the job prints in letter quality while my intention is to print in draft mode.
    I imagine that this problem could be resolved by passing escape sequences to set draft mode printing programatically so as to speed up my printing.
    Anyone who can help me on how to achieve this.
    Will appreciate your help.
    Charles

    Reply 1 of http://forum.java.sun.com/thread.jspa?threadID=5226995&messageID=9958472

  • ANSI escape sequence for "Command" key?

    I know there are escape sequences for ctrl (^), alt (~), shift ($), etc that can be used from the command-line, but I'm wondering if there's an equivalent way to invoke the command key (or the apple key or whatever you wish to call it) from a terminal?
    I'd appreciate any advice, thanks!

    Hi Evan,
       This is more than a failure of terminology. The use of certain key sequences cause the terminal to produce certain characters that are just like letters except that many processes take special action when these characters are encountered. These characters are called "control characters."
       For instance, type <Control>-v to "tell the shell" to not take special action on the next character produced. Then, if you type <Control>-c, the terminal will produce an End-of-Text character, ANSII character 3, and the shell will accept it as a literal character. However, it has no symbol for that character so it displays a pair of characters, "^C", in its place. Internally though, there is no carat and no 'C'; there is only the number three, which is the ANSII code for the End-of-Text character.
       The bash shell will substitute control characters for certain escape sequences in expanding words of the form $'string'. For instance, consider the following command:
    echo $'\003' | cat -v
    ^C
    Above, the first line is a command that you can cut-and-paste into your terminal. The second line is the output you would see if you execute the command. Bash replaces the $'\003' word with the literal control character and then "cat" converts that character to the pair of characters, "^C", to show you what had been there.
       Of course there are still terminology problems; you are not using the word "emulate" correctly. However, if there was such a meaning, I think that one would say that the character sequences "emulate" the control character, not the other way around.
       On the other hand, when you modify a key with the "Command" key, Macintosh programs treat that as an attempt to invoke a function of that program. No character is produced. In fact technically, the program never even sees the keystrokes. The system intercepts the key event and converts it to an AppleEvent.
       One tool on Macs specializes in producing AppleEvents and that is AppleScript. Fortunately, Apple wrote a utility to grant the shell access to AppleScript and that is the "osascript" command. That allows you to sort of imbed AppleScript in a shell script and that would allow you to send any program any event that the system would generate in response to a command key sequence.
    Gary
    ~~~~
       "Home life as we understand it is no more natural to us
       than a cage is to a cockatoo."
          -- George Bernard Shaw

  • Big problem with new WD Caviar Green HDD, please advise!

    I bought a new Western Digital Caviar Green HDD 1TB, ( WD10EADS ) it is a SATA 3Gb/s interface HDD, 3.5-inch form factor. the RPM = IntelliPower (NOT 7200 RPM or 5400 RPM which means Rotate automatically depends on the needs of fetching data I suppose?)
    I acknowledged that this series of HDD which three of 6 have the same Power Management which Read/Write = 4.9W / Idle = 2.8W / Standby = 0.4 W / Sleep = 0.4W
    They are differ from the other 3, which 500GB one is 4.1W / 2.2W / 0.8W / 0.8W and 1.5TB is 4.73W 2.75W / 0.72W / 0.72W; 2TB is 6W 3.7W 0.8W 0.8W
    Which mean the Standby and Sleep mode are the same state.
    Now my big problem is, I bought an external dock SI-7908UI for this WD Caviar Green HDD.
    ( http://www.ssi.com.tw/product_content.aspx?id=92 )
    So I first put the HDD into the SI-7908UI Dock ( USB 2.0 / eSATA / Firewire 400 /800 )
    I tried many way of sequence of who power on first? WD Caviar Power on first? or Mac mini Power on first? I found that the best way is Mac mini Power on first, then Power on the external HDD.
    OK, before I address my big problem, I should let you know, I found that there is NO S.M.A.R.T. working when you put a S.M.A.R.T. HDD outside the Mac or PC. In Dock, the S.M.A.R.T. won't work, That's how I saw in System Profiler, the FireWire tab says " S.M.A.R.T. status: Not Supported "
    and I did test a Non-Green Maxtor HDD, the S.M.A.R.T. doesn't show either. You'll need this info before the real problem I'm gonna say in the following.
    NOW, about 10~15 minutes after my Mac mini boot, if I didn't fetch anything from my external HDD, it would goes to sleep itself, that confirmed that the Specification Sheet was true, the Idle = 2.8W and I believe it goes to Idle, NOT Standby or Sleep, which I also believe the Standby or Sleep signal is supposed to be given by Mac OS, but it sounds like Standby or Sleep, BECAUSE the WD HDD suddenly not rotate and the sound it appears that it goes to SLEEP, am I right? I keep Mac awake by browsing the web so Mac mini won't go to sleep (I set 10 minutes in Energy Saver and I checked Put the HDD to sleep when possible)
    Well, That is my big problem when WD Green HDD goes to sleep, because I CAN'T wake it up, NOT eject or Shut down the Mac mini. (OK, I'm NOT sure if it goes to Sleep or Idle)
    First I thought it freezes the whole Mac OS, then I found I still can move many things, such as I am doing right now, post this big problem here. but I am sure the others are freeze! and no matter how many time I click Shut Down or Restart or Force Quit, the Mac mini didn't respond.
    I tried to figure it out because I don't want to Shut Down by force.(5 seconds Press the Power button)
    then I found that if I power down the external dock 7908-UI when Mac fail to shut down/restart/or eject the external HDD, It worked.
    And the Mac OS will appear a window says that "I shouldn't unplug an external device without Ejecting it first" something like that. and suddenly it shuts down very quickly, everything back to normal, it shut down successfully.
    What am I gonna do with this? Am I going to power down my external HDD first every time I want to shut down/eject/restart? Because the Eject the external HDD will cause freeze too! Freeze Finder I suppose.
    Is it caused by 7908-UI ? or Caused by WD Caviar's Green Power management?
    Because I don't trust 7908-UI, it doesn't look like a trusted brand, I've never heard of this SSI company anyway.
    What am I gonna do? Please advise.
    Thanks in advance.

    Please realise that I am not the right person to be asking. I pointed you to a thread where, as a Moderator at the Bombich forums, I felt the need to warn users of CCC that a WD drive might cause problems. The thread mainly just copies what WD have said.
    Obviously your drive will respond/awake/spin up when you access it manually. Some of the problems are...
    •  Most users want to be in control of whether and/or when a drive sleeps -- WD's auto-sleep cannot be disabled and so precludes that.
    •  Most users want their drive to obey settings in Energy Saver -- the WD auto-sleep mechanism doesn't allow that.
    •  Most users want a scheduled cloning/backup to take place during the night. The cloning app starting the backup process should cause the target drive, if sleeping, to wake/spin up so that the process can take place -- it does for all drives except WD drives where the auto-sleep mechanism used doesn't allow it. LaCie drives, for instance, have auto-sleep +as an option+, during which the drive will respond to Energy Saver settings and to software such as a cloning app.
    Please, Mauricette, put you questions/concerns/problems to the reseller or to WD, both of whom took your money without warning you. I am NOT a WD expert! ...or lover! ( )   I became more than disenchanted when I saw that a) WD do not point out the limitations of their external drives at point of sale, and b) WD put the blame for these inadequacies/problems/limitations onto Apple, ignoring the fact that no drives other than WD drives have them. 
    Andreas

  • ISO-2022-JP support and ISO-2022-JP-2 escape sequences

    I have a mail generated by Outook with some Japanese text in. Outlook has set the charset as ISO-2022-JP. The ISO-2022-JP encoded text of the mail can be found here.
    Java 1.5 and 1.6 fail to load this text properly when using the ISO-2022-JP charset. The description of this charset is JIS X 0201, 0208, in ISO 2022 form, Japanese. I'm guessing that the problem is due to the use of an escape sequence that is defined in [ISO-2022-JP-2|http://www.mhonarc.jp/RFC/rfc1554.txt]. The escape sequence is hex 1B 24 42, which means that the charset is JIS X 0208-1983.
    There's no ISO-2022-JP-2 charset support in Java 1.5, not sure about 1.6.
    I'm thinking about writing a filter reader as a hack to add support for ISO-2022-JP-2. I guess that if I remove the escape sequence, the text should load properly using one of Shift-JIS, EUC-JP or ISO 2022 JP. Any suggestions?
    Edited by: bobajobrob on Mar 25, 2008 12:19 PM

    1B 24 42 (ESC $ B) is valid in ISO-2022-JP. However, the text file includes invalid characters in the JIS X 0208 standard. The ISO-2022-JP converter in Java strictly follows the standards.
    There are some ISO-2022-JP "variants" that are supported under different encoding names with compatibility workarounds. Please refer to Sun's bug ID 6173388 for details.

  • What is escape sequence for * in SQL

    I am using oracle 9. When I run a select query with a where clause as
    AND UPPER (bnm.name_value_tx) LIKE '*/*%' ESCAPE '\'
    I got an exception as
    ORA-29902: error in executing ODCIIndexStart() routine ORA-20000: Oracle Text error: DRG-51030: wildcard query expansion resulted in too many terms ]; nested exception is java.sql.SQLException: ORA-29902: error in executing ODCIIndexStart() routine ORA-20000: Oracle Text error: DRG-51030: wildcard query expansion resulted in too many terms
    Is there any escape sequence to handle the character * in query? or any other solution to this problem?

    If what I understand in my limited knowledge is correct, then u want to search the character * or ** with any character after that as u have used %. But 1st of all, u dont need an escape character for * . Thats only required for _ and % if u use any of it as a search character. So go straight:
    AND UPPER (bnm.name_value_tx) LIKE '**%' ....
    (if u want to search for ** at the beginning of the field with any characters afterwards.)
    Use Escape Characters like:
    select first_name,job_id from employees where job_id like 'SA\_%' escape '\'

  • Parsing escape sequences

    Hey,
    I've been stumped on this for a while; I have an application which reads the contents of a text file to obtain encrypted strings, which use escape sequences in them. I can only decrypt them once these escape sequences have been "parsed," per say.
    Most of the escape sequences are ASCII codes, like \035, and the Apache Commons package doesn't parse those....however, if I hardcode the encrypted strings into the application, they parse just fine. So is there a way to emulate java's parsing of these escape sequences?
    Thanks for your time.

    Sorry if this isn't allowed, but I wanted to post in case anyone else had this problem...i just ended up rewriting the parsing code in com.sun.tools.javac.scanner.Scanner. Actually, at first I didn't realize my escapes were octal sequences, but after that it became a lot clearer.
    public class StringEscapeUtils {
        public static String unEscape(String escapedString) {
            char[] chars = escapedString.toCharArray();
            StringBuffer outputString = new StringBuffer();
            try {
                for(int i = 0; i < chars.length; i++) {
                    if(chars[i] == '\\') {
                        switch(chars[i + 1]) {
                            case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7':
                                String octalValue = Character.toString(chars[i + 1]);
                                if('0' <= chars[i + 2] && chars[i + 2] <= '7')
                                    octalValue += Character.toString(chars[i + 2]);
                                if(chars[i + 1] <= '3' && '0' <= chars[i + 3] && chars[i + 3] <= '7')
                                    octalValue += Character.toString(chars[i + 3]);
                                outputString.append((char)Integer.parseInt(octalValue, 8));
                                i += 3;
                                break;
                            case 'u':
                                String unicodeChars = new String(new char[] {chars[i + 2], chars[i + 3], chars[i + 4], chars[i + 5]});
                                outputString.append((char)Integer.parseInt(unicodeChars, 16));
                                i += 5;
                                break;
                            case 'b':
                                outputString.append('\b');
                                i++;
                                break;
                            case 't':
                                outputString.append('\t');
                                i++;
                                break;
                            case 'n':
                                outputString.append('\n');
                                i++;
                                break;
                            case 'f':
                                outputString.append('\f');
                                i++;
                                break;
                            case 'r':
                                outputString.append('\r');
                                i++;
                                break;
                            case '\'':
                                outputString.append('\'');
                                i++;
                                break;
                            case '\"':
                                outputString.append('\"');
                                i++;
                                break;
                            case '\\':
                                outputString.append('\\');
                                i++;
                                break;
                            default:
                                outputString.append(chars);
    break;
    } else {
    outputString.append(chars[i]);
    } catch(ArrayIndexOutOfBoundsException e) {
    System.err.println("Mallformed escape sequence.");
    return null;
    return outputString.toString();

  • Hi everybody, I am in Turkey on a long assignment, I need help solving a big problem on my macbook pro os 10.9.3. The other week my wife visited some website and now we have a redirect virus of some sort, and every other time when we click

    Hi everybody, I am in Turkey on a long assignment, I need help solving a big problem on my macbook pro os 10.9.3. The other week my wife visited some website and now we have a redirect virus of some sort, and every other time when we click on a link or anywhere on the page we are redirected to this casino web site, https://casino.7bets10.com/tr/?from=hy9yKXD43jSC-8Oxbw4femNd7ZgqdRLk-dHJpeG9uaXR l. Its the same whether on Chrome or Safari. Does anyone have a solution, thank you!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the behest of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    Copy a line of text in this window to the Clipboard.
    Paste into the window of another application.
    Wait for the test to run. It usually takes a few minutes.
    Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts 51 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' \*AutoCad \*dropbox \*GoogleDr\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 ` route -n get default|awk '/e:/{print $2}' ` 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */  /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1000) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/ { next;} /(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[9]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/ { next;} /%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]" "$1;b=b$1;} END { if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n  "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n  [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|POSIX sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n  ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' ' /^ +B/{ s/.+= |(-[0-9]+)?\.s.+//g;p;} ' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' 's/0/Off/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil PlistBuddy whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '-c Print /L*/P*/loginw*' '-c Print L*/P*/*loginit*' '-c Print L*/Saf*/*/E*.plist' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' '-c Print\ :'${p[35]}' 2>&1' '-c Print\ :Label 2>&1' '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' -i4TCP:0-1023 com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' );N1=${#c2[@]};for j in {0..8};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D22 4 4 50 0;D13 14 3 49 5;D12 26 48 59 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start Time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Big problems exporting a video in Media Encoder - detailed info

    Problems with exporting media through Adobe Media Encoder.
    Hi there.  I am really confused now, writing this, cause my Premiere CS4 has worked pretty good the year I have had it.
    So it has chosen a really bad timing to cause me problems.
    I am working on a big musicvideo production. The whole video is now finished, and the labels and the artists are waiting for the video. But I’m facing big problems now. And I have tried everything to solve this, without succeeding.
    ·         When I export the video, the Adobe Media Encoder sometimes waits and waits and waits and waits, and nothing happens.
    Screen shot:
    ·         When it does start, if goes to about 20%, and then it interrupts and give me "an unknown" error in the log-file:
    Screen shot:
    ·         Sometimes when I open the project , it gives me the following message when importing the media files.
    Screen shot:
    ·         The weird thing is that this only happens to the HD version. I have the same video in DV version, in a DV project, and it exports without any problem.
    So PLEASE help me here, what shall I do??? I MUST finish this video!

    And here is my log-file with all the attempts I've tried with different settings...
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD.prproj
    - Output File: C:\Users\Pawel\Desktop\TheThingCalledLove-MasterCut-HD.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:12:58
    2010-03-09 11:46:46 : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_3.prproj
    - Output File: C:\Users\Pawel\Desktop\TheThingCalledLove-MasterCut-HD-1280x720.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:12:55
    2010-03-09 14:09:21 : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_6.prproj
    - Output File: L:\TheThingCalledLove.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:07:57
    2010-03-09 14:24:41 : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_6.prproj
    - Output File: L:\TheThingCalledLove_1.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, Audiences:1, Avg 5500,00 [kbps]
    - Encoding Time: 00:07:38
    2010-03-09 14:38:40 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_6.prproj
    - Output File: L:\TheThingCalledLove.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, Audiences:1, Avg 5500,00 [kbps]
    - Encoding Time: 00:06:21
    2010-03-09 16:50:42 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_7.prproj
    - Output File: L:\Sequence 02.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, Audiences:1, Avg 5300,00 [kbps]
    - Encoding Time: 00:03:14
    2010-03-09 17:10:49 : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_6.prproj
    - Output File: L:\TheThingCalledLove_1.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, Audiences:1, Avg 5500,00 [kbps]
    - Encoding Time: 00:07:34
    2010-03-09 19:49:06 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_6.prproj
    - Output File: L:\TheThingCalledLove.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, Audiences:1, Avg 5500,00 [kbps]
    - Encoding Time: 00:07:35
    2010-03-09 20:00:11 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_12.prproj
    - Output File: L:\thu.wmv
    - Preset Used: HDTV 720p 25 High Quality
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:30:15
    2010-03-09 23:21:07 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD-nest.prproj
    - Output File: L:\Sequence 02.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 01:35:20
    2010-03-10 14:18:32 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD-nest_1.prproj
    - Output File: L:\Sequence 02.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:11:16
    2010-03-10 14:39:37 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD-nest_2.prproj
    - Output File: L:\Sequence 03.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:24:50
    2010-03-10 14:53:11 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_14.prproj
    - Output File: C:\Users\Pawel\Desktop\Sequence 02.wmv
    - Preset Used: Custom
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:29:41
    2010-03-10 14:58:02 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    Could not write XMP data in output file.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_15.prproj
    - Output File: C:\Users\Pawel\Desktop\Sequence 02.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, :0, Avg 6736,00 [kbps]
    - Encoding Time: 00:13:57
    2010-03-10 17:37:50 : Encoding Failed
    Error compiling movie.
    Unknown error.
    Could not write XMP data in output file.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_16.prproj
    - Output File: C:\Users\Pawel\Desktop\Sequence.wmv
    - Preset Used: Custom
    - Video: 1280x720, 25 [fps]
    - Audio: 440 kbps, 44 kHz, 2 channel 24 bit VBR
    - Bitrate: Compressed, VBR, 2 Pass, :0, Avg 6736,00 [kbps]
    - Encoding Time: 00:07:55
    2010-03-10 17:56:15 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_18.prproj
    - Output File: C:\Users\Pawel\Desktop\Sequence 02.mpg
    - Preset Used: HDTV 720p 25 High Quality
    - Video: PAL, 1280x720, 25 [fps], Progressive, Quality 4,0
    - Audio: 384 [kbps], 48 kHz, 16 bit, Stereo, MPEG
    - Bitrate: VBR, 1 Pass, Min 4,00, Target 10,00, Max 18,50 [Mbps]
    - Encoding Time: 00:16:03
    2010-03-11 08:52:52 : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_19.prproj
    - Output File: C:\Users\Pawel\Desktop\TTCL.mpg
    - Preset Used: HDTV 720p 25 High Quality
    - Video: PAL, 1280x720, 25 [fps], Progressive, Quality 4,0
    - Audio: 384 [kbps], 48 kHz, 16 bit, Stereo, MPEG
    - Bitrate: VBR, 1 Pass, Min 4,00, Target 10,00, Max 18,50 [Mbps]
    - Encoding Time: 00:12:04
    2010-03-11 09:08:39 : Encoding Failed
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Pawel\AppData\Local\Temp\TumboTTCL3-HD_17.prproj
    - Output File: C:\Users\Pawel\Desktop\Sequence.mp4
    - Preset Used: Custom
    - Video: PAL, 1920x1080, 25 [fps], Progressive
    - Audio: AAC, 320 [kbps], 48 kHz, Stereo
    - Bitrate: CBR, 32,00 [Mbps]
    - Encoding Time: 00:01:08
    2010-03-11 09:10:41 : Encoding Failed
    The Operation was interrupted by user

  • LXTerminal, Alt-# tab switching and escape sequences

    Hello,
    when using lxterminal i am able to switch between tabs using Alt+# (Alt-1 = first tab, Alt+2 = second tab, etc) like in most other tabbed programs. While switching itself works the keypress seems to be handed to the terminal  as an escape sequence. In case of bash this activates the argument counter(?), so after switching the terminal i can not directly type but have to remove whatever the escape sequence changed.
    There is a bug over on launchpad (https://bugs.launchpad.net/ubuntu/+sour … ug/1080116), but i could not find a patch over there. Also according to the lxde-forums (http://forum.lxde.org/viewtopic.php?f=26&t=31676) this would be a "distribution problem" and affect other terminal emulators as well, however also no explanation where the problem could originate.
    I tested gnome-terminal and PantheonTerminal on the same machine - both do not pass escape sequences to the shell.
    Has anyone here seen this behaviour before or got an idea where to start?

    i just tried this on urxvt (although i am not using tabs) - yes, some bash function gets activated.
    can't you just change lxterminal's hotkey?

  • How to switch on and off displaying of escape sequences in the strings in Visual Studio 2012 during debugging?

    Hi. We have faced a problem on couple of our installations of VS2012. During debugging on these two computers escape sequences in the strings (C++) are not shown (when debugger stops on breakpoint). This creates problems during debugging. On other
    installations escape sequences are shown.
    For example in the first case string value is shown like "abcdef" while in the second case it is shown like "abc\n\t\tdef".
    Where this can be changed?

    This is typically controlled with a format specifier on the debugger expression.  For example, if you have a char* variable called "mystring", then enter the following expressions in your watch window and compare:
    mystring
    "abc\n\tdef"
    mystring,s
    "abc\n\tdef"
    mystring,sb
    abcdef
    the "b" is for "bare" and eliminates quotes and escape sequences.
    There are others such as su, sub, s8, bstr, etc.  See
    Format Specifiers in C++.
    But having said that, now I have to ask:
    Is it native or managed code?
    And where, specifically, in the debugger is this value being displayed?  I ask because there are numerous places where a string can be displayed:  watch window, quick-watch window, data-tips (pinned and unpinned), memory window, text visualizer,
    debug messages, immediate window, command window, etc.
    And, if you are examining a variable, what is its type?   (e.g.: char*, wchar_t*, std::string, std::wstring, etc.)
    And if you are examining a complex debugger expression, what expression did you use?  e.g.: mystring,sb

  • Signature Printing using escape sequence

    Hi Friends
    I am trying to print the signatures in cheque using printer escape sequence, But in output no output was printed.
    Customer provided the hexadecimal value for escape sequence, I checked the value in SPAD transaction also, both are same.
    But I am not able to identify the problem.where exactly-please give your valuable inputs on this.
    Thanks
    Gowrishankar

    Gowrishankar, you just closed 3 of your threads without giving any feedback (read forum rules if you didn't).
    Forum is not a self service: for each question you ask, you MUST give feedback to help others who might have the same question.
    Could you please give one in each of these 3 threads?
    Thx a lot
    sandra

  • Escape Sequences for HP Color LaserJet 3600n

    I want to be able to print a file to my 3600n printer with certain text printed in color. I print from a Fedora14 box. For output to the screen, I can use the well-known VT100 terminal escape sequences to achieve colored display, in, say, red. I want to achieve the same effect with printed files.
    Does the 3600n respond to escape sequences? If so, where can I find a list of these escape sequences?
    TIA,
      Jon

    This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
    You can find the Commercial Laserjet board here:
    http://h30499.www3.hp.com/t5/Printers-LaserJet/bd-p/bsc-413
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

Maybe you are looking for

  • Win 8.1: Reset vs Install on partitioned drive (XP- upgrade 8- upgrade 8.1) now need clean install

    This is a little complicated. I have a Thinkpad T-60 (4GB) and a T-61p (8GB) Both machines have SATA drives partitioned in 3 (System, Images, Data) Originally, both had XP (the T-61p was RAM upgraded to 8 GB before upgrade (remember the $50 early-bir

  • Query takes a long time

    Hi, I have a simple query that takes a long time and sometimes hangs. I want to know if there are any orders that were shipped but are not in the ra_interface_lines_all table for one reason or another. The query is select source_header_number from ws

  • Colored texture pasting as black and white into a layer mask

    Hello all, First time poster, long time lurker here. I'm pasting a colored layer into a layer mask I created  in order to texturize a shape I made. Whenever I Option + Click the layer mask and then paste the texture, it pastes in black and white inst

  • ALC-WKS-007-027 error - java.lang.ClassCastException

    Hi I've seen a few references to this error on the forums but I have encountered a variation that does not appear to be covered. When I try invoking a process from workspace I get the error dialog showing the ALC-WKS-007-027 error and when I look at

  • Tethering w the IPAD

    Can I use the tethering feature to provide internet access to my Ipad via Bluetooth?