Format SD Cars in Z2 4.4.2

Hi recently i try to format my sd card in z2 phone, but I was unable to find format option in storage menu in settings instead of format option i found erase option menu, Is that erase and format is same or erase is just deleting files in sd card or its format the sd card I am using Kitkat 4.42 Any Idea?

It could be some kind of formatting,but I think once you put the microSD inside it is formatted to FAT32 if new. However, you could try to format it using an adapter in your computer/laptop.
All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

Similar Messages

  • Burning Audiobooks to CD to play in car

    I upgraded from QuickTime7 to QuicktimePro and with the free download from quickTime 6.5 to 7.0 the download included iTunes. And before this I always purchased my audiobooks from Walmart.
    With that said I will go on to my question.
    When trying to burn the book to a disc to listen to in the car, is there anyway the book can be converted to a format my car cd player will support? You know, like a .wav file or something.:-) I am trying to be cute but the truth is when it comes to burning or dealing with music in anyway I am simply put Lost in Space.
    I know the computer very well just had no reason to deal with any audio or video files ever before. Therefore I cannot troubleshoot since I don't know anything about the file formats. I do know about hardware supporting file formats so I probaly will be able to follow anything of help.
    It's a 15.35 Hr. book so I would rather ask someones help than try a go at it myself. I am a woman who knows her limitations. Thanks to any kind person.
    Compaq PC and HP laptop   Windows XP   Service pk 2, windows firewall turned off, purchassing and downloading audiobooks

    No problem that I am the only one with 0 answers. If I could take the question off I would rather seem like an idiot

  • Report (Word type) text wrap options

    Hi all:
    I am using the Report Generation Toolkit  in LabVIEW 8.5 and creating a report in MS Word.  I have the report looking good, but it is really more of a starting point for the user, so I want to make their use of the file in MS Word easier by making a change that I have not been able to make.  I include some graphs using the "Append Control Image" VI, but they are set to "Inline with Text" style text wrapping (a Layout option in MS Word).  I would like them to be "Square" text wrapping.  I have not been able to find anything in the RGT or any ActiveX property that even addresses this feature.  Does anybody know how to do this in LabVIEW?
    bj

    Hi BJ,
    I've looked through the VIs for Report Generation and I think your best option may be to set up a template for your report.  With a template, you can have all of the formatting taken care of beforehand and then simply insert whatever elements you want from LabVIEW.  Hope this helps!
    Stephen Meserve
    National Instruments

  • IMovie '11 Does Not RecogniseMy Motion JPEG Still Camera?

    Fallen at the first hurdle!
    My Panasonic FX60 Digital still camera that shoots 1280x720 Motion JPEG is not recognised, though I can see its icon on the desktop and can copy the video onto my desktop.
    If I click File>Import from Camera, I get a beautiful image of me from the iSight camera, which whilst being a pleasure to behold, does not help with the importation of video.
    Will I have to copy to the desktop etc. or can the beast be made to communicate with my camera?

    Ian R. Brown wrote:
    ... and tried dropping them on the iMovie interface but they just jump back. ...
    Putting the AIC file in my "Movies" folder or anywhere else...
    stop stop stop ....
    iM is NOT Finalcut, as I told you before.
    it is essential to use iM's own import routines to make 'videos' accessable for iM. that includes the 'right' formats (=iM cares for conversion) and the right location (= iM Events).
    You HAVE to import via 'import from camera' AppleMan1958 mentioned above - the m-jpegs my Lumix FZ38 records are readable, appear as 'clips' in the camera-import dialog. I've heard of trouble when m-jpg and avchd is on same SDcard... perhaps for your first steps, keep it simple ...

  • Strange behaviour with Fixed thread pool

    Hi all
    I am trying to learn multithreading. I have written a small snippet of code. After running for around 30 minutes, this code ends up in a deadlock. I am trying to figure out a reason. any help will be really appreciated. Thanks. Following is the code. I am using Ubuntu 10.04 and jdk 1.6.
    package rollerdemo;
    //Simulate a roller coaster, as in exercise 3.5 of Magee and Kramer.
    import java.util.concurrent.CyclicBarrier;
    import java.util.concurrent.BrokenBarrierException;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    //This thread deals with the passengers arriving at random intervals.
    class TurnstileBarrier implements Runnable
         private ControlBarrier controlBarrier;
         private CyclicBarrier cyclicBarrier;
         TurnstileBarrier(ControlBarrier controlBarrier, CyclicBarrier cyclicBarrier) { 
              this.controlBarrier = controlBarrier;
              this.cyclicBarrier = cyclicBarrier;
         public void run(){ 
              try {
                   controlBarrier.welcomePassenger();
                   cyclicBarrier.await();
              } catch (InterruptedException e) {
                   Thread.currentThread().interrupt();               
              } catch (BrokenBarrierException e) {
                   Thread.currentThread().interrupt();               
              } finally {
    class RollerBarrier
         public static int NUMBER_OF_PASSENGERS_PER_CAR = 20;
         public static void main(String[] args) throws InterruptedException
              final ControlBarrier controlBarrier = new ControlBarrier();
              Runnable carBarrier = new Runnable() {
                   public void run(){ 
                        controlBarrier.departCar();
              CyclicBarrier barrier = new CyclicBarrier(NUMBER_OF_PASSENGERS_PER_CAR, carBarrier);
              ExecutorService pool = Executors.newFixedThreadPool(NUMBER_OF_PASSENGERS_PER_CAR);
              while(true)
                   pool.execute(new TurnstileBarrier(controlBarrier,barrier));
    // The Control class represents the state of the controller, and the actions
    // which can be performed.
    class ControlBarrier
         private long queued = 0;
         private long carsSent = 0;
         private long numberOfPassengersTravelledToday = 0;
         ControlBarrier()
              queued = 0;
              carsSent = 0;
              numberOfPassengersTravelledToday = 0;
         synchronized void welcomePassenger() {
              System.out.format("Welcoming Passenger %d%n", ++queued);
              ++numberOfPassengersTravelledToday;
         synchronized void departCar() {
              queued = queued - RollerBarrier.NUMBER_OF_PASSENGERS_PER_CAR;
              System.out.format("The car %d is going now and the number of passengers travelled so far with us is %d%n", ++carsSent, numberOfPassengersTravelledToday);
    }Edited by: 858236 on May 12, 2011 2:35 AM

    Thanks every one for the replies. Really very helpful. After doing the stack -l pid I have got into a confusion. It seems that there is no deadlock but why would all of a sudden the program stop to run. May be I am missing some thing. Just check the stack trace. What I read is that out of 20 threads, 3 threads are waiting on the cyclic barrier await function, while other 17 are waiting to get new tasks from the pool. Am I wrong here? Many thanks.
    2011-05-11 23:42:26
    Full thread dump OpenJDK Client VM (19.0-b09 mixed mode, sharing):
    "Attach Listener" daemon prio=10 tid=0x088fc000 nid=0x34d4 waiting on condition [0x00000000]
       java.lang.Thread.State: RUNNABLE
       Locked ownable synchronizers:
         - None
    "DestroyJavaVM" prio=10 tid=0xb4f21c00 nid=0x2c85 waiting on condition [0x00000000]
       java.lang.Thread.State: RUNNABLE
       Locked ownable synchronizers:
         - None
    "pool-1-thread-20" prio=10 tid=0xb4f20000 nid=0x2ca0 waiting on condition [0xb49ee000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-19" prio=10 tid=0xb4f1e800 nid=0x2c9f waiting on condition [0xb4a3f000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-18" prio=10 tid=0xb4f1d000 nid=0x2c9e waiting on condition [0xb4a90000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-17" prio=10 tid=0xb4f1b800 nid=0x2c9d waiting on condition [0xb4ae1000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-16" prio=10 tid=0xb4f19c00 nid=0x2c9c waiting on condition [0xb4b32000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-15" prio=10 tid=0xb4f18400 nid=0x2c9b waiting on condition [0xb4b83000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-14" prio=10 tid=0xb4f16c00 nid=0x2c9a waiting on condition [0xb4bd4000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-13" prio=10 tid=0xb4f15400 nid=0x2c99 waiting on condition [0xb4c25000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-12" prio=10 tid=0xb4f13c00 nid=0x2c98 waiting on condition [0xb4c76000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-11" prio=10 tid=0xb4f12400 nid=0x2c97 waiting on condition [0xb4cc7000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-10" prio=10 tid=0xb4f10c00 nid=0x2c96 waiting on condition [0xb4d18000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-9" prio=10 tid=0xb4f0f400 nid=0x2c95 waiting on condition [0xb4d69000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-8" prio=10 tid=0xb4f0dc00 nid=0x2c94 waiting on condition [0xb4dba000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a380108> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.CyclicBarrier.dowait(CyclicBarrier.java:227)
         at java.util.concurrent.CyclicBarrier.await(CyclicBarrier.java:355)
         at rollerdemo.TurnstileBarrier.run(RollerBarrier.java:25)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - <0x7a3808d8> (a java.util.concurrent.ThreadPoolExecutor$Worker)
    "pool-1-thread-7" prio=10 tid=0xb4f0c800 nid=0x2c93 waiting on condition [0xb4e0b000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-6" prio=10 tid=0xb4f0b400 nid=0x2c92 waiting on condition [0xb4e5c000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-5" prio=10 tid=0xb4f09800 nid=0x2c91 waiting on condition [0xb4ead000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-4" prio=10 tid=0xb4f08400 nid=0x2c90 waiting on condition [0xb4efe000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a380108> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.CyclicBarrier.dowait(CyclicBarrier.java:227)
         at java.util.concurrent.CyclicBarrier.await(CyclicBarrier.java:355)
         at rollerdemo.TurnstileBarrier.run(RollerBarrier.java:25)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - <0x7a382cd0> (a java.util.concurrent.ThreadPoolExecutor$Worker)
    "pool-1-thread-3" prio=10 tid=0xb4f07000 nid=0x2c8f waiting on condition [0xb5053000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "pool-1-thread-2" prio=10 tid=0xb4f05800 nid=0x2c8e waiting on condition [0xb50a4000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a380108> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.CyclicBarrier.dowait(CyclicBarrier.java:227)
         at java.util.concurrent.CyclicBarrier.await(CyclicBarrier.java:355)
         at rollerdemo.TurnstileBarrier.run(RollerBarrier.java:25)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - <0x7a382e00> (a java.util.concurrent.ThreadPoolExecutor$Worker)
    "pool-1-thread-1" prio=10 tid=0xb4f04800 nid=0x2c8d waiting on condition [0xb50f5000]
       java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for  <0x7a387350> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:386)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1043)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1103)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
         at java.lang.Thread.run(Thread.java:636)
       Locked ownable synchronizers:
         - None
    "Low Memory Detector" daemon prio=10 tid=0x08938000 nid=0x2c8b runnable [0x00000000]
       java.lang.Thread.State: RUNNABLE
       Locked ownable synchronizers:
         - None
    "CompilerThread0" daemon prio=10 tid=0x08936000 nid=0x2c8a waiting on condition [0x00000000]
       java.lang.Thread.State: RUNNABLE
       Locked ownable synchronizers:
         - None
    "Signal Dispatcher" daemon prio=10 tid=0x08934800 nid=0x2c89 runnable [0x00000000]
       java.lang.Thread.State: RUNNABLE
       Locked ownable synchronizers:
         - None
    "Finalizer" daemon prio=10 tid=0x0892c800 nid=0x2c88 in Object.wait() [0xb5339000]
       java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0x7a383068> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:133)
         - locked <0x7a383068> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:149)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:177)
       Locked ownable synchronizers:
         - None
    "Reference Handler" daemon prio=10 tid=0x0892b000 nid=0x2c87 in Object.wait() [0xb538a000]
       java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0x7a3830f0> (a java.lang.ref.Reference$Lock)
         at java.lang.Object.wait(Object.java:502)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:133)
         - locked <0x7a3830f0> (a java.lang.ref.Reference$Lock)
       Locked ownable synchronizers:
         - None
    "VM Thread" prio=10 tid=0x08929400 nid=0x2c86 runnable
    "VM Periodic Task Thread" prio=10 tid=0x08943c00 nid=0x2c8c waiting on condition
    JNI global references: 983

  • Cant play videos or songs when i connect external sound card

    Hey guys,
    this problem started a week ago -+, before, everything worked perfectly.
    but in the last week, i can watch video's on youtube or hear songs on Rdio then pause them  connect the card and then when i press Play it shows a loading sign til i disconnect the card. just cant hear or watch online videos/songs. its even happend on Itunes.
    hope you know somthing about that, just say for more information.
    - OSX Yesomite 10.10.2
    - the card connect with USB cable
    thank
    Noy

    See what track formats your car can play and then check the formats of the tracks in iTunes. It will be easiest to do if you go to the Songs, or Music if your version of iTunes has the sidebar on the left, and right-click in the header (where it says "name", Album" etc) and select to show the Kind column. You may well find that you have a mix of formats, probably AAC and MP3, and your card can only play MP3. Or the tracks that don't play may be copy-protected (those will say "protected AAC audio file"); such tracks cannot be played on anything other than an Apple player.
    Regards.

  • IMovie '11 does not add still shots correctly at all

    I am trying to make what's basically a slideshow with background music, and I can't get iMovie to add the pictures correctly.
    I drag the first five pictures into the area it tells me to drag it.
    The thumbnails show that the first shot is the actual first picture, and then the next four look like the 5th picture.
    As I scroll through the time lapse, the movie panel on the right shows the first picture five times.
    It didn't do this when I started iMovie for the very first time and was just tinkering with the buttons, but I am trying to start from a blank slate now that I know what I'm doing, and have all my pictures in order in a directory (their filenames now start with the numbers 1 through 74).
    I have deleted from /Users/myname/Library/Preferences the following files:
    com.apple.iApps.plist
    com.apple.iApps.plist.lockfile
    com.apple.iMovieApp.plist
    com.apple.iMovieApp.plist.lockfile
    com.apple.iPhoto.LSSharedFileList.plist
    com.apple.iPhoto.LSSharedFileList.plist.lockfile
    com.apple.iPhoto.plist
    com.apple.iPhoto.plist.lockfile
    This does not correct the problem (but thank you Bengt Wärleby for walking me through how to do it in https://discussions.apple.com/message/18491030#18491030).
    Is there an easy fix to this? Because I'm about ready to give up and find something to download to do this project in.

    Ian R. Brown wrote:
    ... and tried dropping them on the iMovie interface but they just jump back. ...
    Putting the AIC file in my "Movies" folder or anywhere else...
    stop stop stop ....
    iM is NOT Finalcut, as I told you before.
    it is essential to use iM's own import routines to make 'videos' accessable for iM. that includes the 'right' formats (=iM cares for conversion) and the right location (= iM Events).
    You HAVE to import via 'import from camera' AppleMan1958 mentioned above - the m-jpegs my Lumix FZ38 records are readable, appear as 'clips' in the camera-import dialog. I've heard of trouble when m-jpg and avchd is on same SDcard... perhaps for your first steps, keep it simple ...

  • Sql loader utl_file & external table

    can any one let me know the differences between.
    1.sql loader
    2.utl_file
    3.external table
    Regards.
    Asif.

    To expand on Aron's answer....
    SQL*Loader - An operating system utility which uses control files (which you create) to load data files onto database tables.
    UTL_FILE - A database package which can be used for reading and writing files in any format you care to design programmatically.
    External Table - The latest thing which can be used instead of SQL*Loader. This is done from the database end, by creating a table as an external table and pointing it at the source file on the operating system. It also allows information similar to that put in the SQL*Loader control files to be specified against the table. By querying against the table you are in fact querying against the source file. There are some limitation compared to regular database tables such as there is no ability to write to the external table.
    ;)

  • Can't copy MP4 file to Iphone even with Create iPhone Version

    Whenever I try to copy a MP4 video file to my iPhone 5S, iTunes says it "was not copied because it cannot be played on this iPhone".
    I tried using "File -> Create New Version -> Create iPod or iPhone Version" and it still can't be copied.
    Someone knows what is causing this and have a solution to it?
    Thanks!

    Hi ProblemGuy999,
    Welcome to Apple Support Communities.
    The article linked below describes the video cannot be copied alert that you’re seeing when attempting to sync that specific MP4 to your iPhone 5s.
    iTunes: Videos may be unable to sync to iPhone, iPad, or iPod - Apple Support
    iTunes can play a wide variety of video formats; however, iPhone, iPad, and video-capable iPod devices play videos in specific formats. To learn which video formats are supported:
    Go to the technical specifications.
    Click your device's product family.
    Click your specific model.
    Learn more about playing and syncing High Definition (HD) content.
    And, here’s the technical specifications for your iPhone 5s:
    Apple - iPhone 5s - Technical Specifications
    Video formats supported: H.264 video up to 1080p, 60 frames per second, High Profile level 4.2 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    Take care,
    -Jason

  • How do I Sync All 5,000 of my songs onto my iPod 5th Generation without no problems at all, Most of my songs have the Album Artworks, some are ACC converted but after the "Changes Are Applied", it will say - Songs were not synced. File wasn't convert

    I Am having a problem with syncing 5,000+ songs onto my IPod 5th Generation. Everytime I sync, some songs will either go away or ALL of them will come off my iPod. I have iTunes 12 for Windows, and it has a slow syncing process and it will take days for songs to get on the iPod. It will even say that any of the songs "we're not synced to my iPod because the file wasn't converted..
    I Need help please, I would appreciate it.

    Hey Bryce,
    Welcome to Apple Support Communities. 
    It sounds like some songs aren’t being synced to your iPod touch because they aren’t in a compatible format. Can you play those tracks in iTunes? Try selecting the tracks that won’t sync and creating a new version of them with iTunes as shown in the article below.
    iTunes 11 for Windows: Save a copy of a song in a new file format
    Take care,
    -Jason

  • AVCHD to HD CAM conversion on FCP

    Hey folks,
    so I have something I shot on AVCHD (Sony HDR SR7), captured in FCP studio 2 using apple pro res 422 and edited. Now I never made a tape output of this, only a DVD. I need to send this out for a screening and they need it in a tape format.
    My question is will the AVCHD>PRO RES 422>HD CAM tape conversion work out fine ? Planning on using the Sony HVR-M15U to record. Or is there any other tape format that I can output to that would work well loseless ?
    second question is a more of a FCP one. do I need to use compressor and export out as HDV and do a copy to tape or should I just change the sequence setting in FCP to use the HDV 1080i60 compression and do a print to tape, have a feeling the second option would work better.
    any help is appreciated. thanks

    Planning on using the Sony HVR-M15U to record
    well thats not an HDCAM deck that's HDV
    Or is there any other tape format that I can output to
    how about HDCAM!
    I need to send this out for a screening and they need it in a tape format.
    take care that you get this in a tape format they can view ... pointless making an HDCAM dub (or DVCPROHD or HDV or whatever) if what they want is DigiBeta or Beta SP.
    second question is a more of a FCP one.
    you need to have a clearer idea of the first before you get on to the second

  • Récupération de données ?

    Bonjour, j'ai publié après avoir fini le montage de mon film, j'ai choisi le format mpg  car je voulais juste voir ce que ça rendait..et oh désespoir ! la qualité du film est lamentable (texte flou, son presque inexistant...) et en plus les données ont disparu ! je ne peux ouvrir maintenant que ce format dans la fenêtre de montage... je suis désespérée car je débute dans le montage, j'y ai passé de nombreuses heures et j'ai promis à mes élèves de leur montrer le film mardi... Est-ce que quelqu'un peut m'aider? Est-ce que je peux récupérer mon film avec la qualité qu'il avait dans le logiciel ? Ou est-ce que la publication du film est irréversible ? Merci de votre aide...

    hemelle
    All is not necessary lost. The answers will be in the details.
    What version of Premiere Elements are you using and on what computer operating system is it running?
    What are the properties of your source video - video compression, audio compression, frame size, frame rate, interlaced or progressive, pixel aspect ratio? The quickest way to get this information is to know the brand/model/settings of the camera that recorded the video. If you do not know that then we will ask you to download the video audio properties readout program MediaInfo (Tree View) to obtain the information.
    What have you or the project set as the project preset (which should match the properties of the source video)?
    What is the total duration of the Timeline for this problem project? Are the originals for the files imported into this project still at the hard drive save location that they were when they were imported into the project?
    What is your intended export - burn to disc or export to file saved to the computer hard drive?
    What were your export setting for the mpg export that looked so bad?
    What you have imported into the project are just copies of the originals on the hard drive. And, the project needs to
    keep the trace back to the originals; otherwise, reconnect problems set in which prevent you from moving forward
    in the project or even opening the project.
    Troubleshoot damaged projects | Adobe Premiere Elements
    Please review the above, answer the questions, and then we can plan troubelshooting strategy.
    If you need clarification on anything written, please do not hesitate to let us know.
    Thank you.
    ATR

  • Why I cannot play all my song in the same genres?

    I don't khnow wether iOS 7 could play Genres or not, but I can play all song in same Genres from my iOS 6.1.4.

    See what track formats your car can play and then check the formats of the tracks in iTunes. It will be easiest to do if you go to the Songs, or Music if your version of iTunes has the sidebar on the left, and right-click in the header (where it says "name", Album" etc) and select to show the Kind column. You may well find that you have a mix of formats, probably AAC and MP3, and your card can only play MP3. Or the tracks that don't play may be copy-protected (those will say "protected AAC audio file"); such tracks cannot be played on anything other than an Apple player.
    Regards.

  • I have a MacBook Pro, I want to copy Itunes files to an SD card to play in my car, the SD Card doesn't appear in Itunes when I insert it, and I don't know how to convert the files to the correct format, can anyone help?

    I have a MacBook Pro, I want to copy Itunes files to an SD card to play in my car, the SD Card doesn't appear in Itunes when I insert it, and I don't know how to convert the files to the correct format, can anyone help?
    Thank you

    So it seems from reading the COMMAND manual that my first issue is that I used a 16GB SD card, and the manual says it will only recogize up to a 2GB SD card. I did use my MB Air's SD card slot and crated a folder and dragged the music files to it, then to the card. So I am going to get a 2GB card and try that next. Otherwise just stick with the iPOD connected. At least that is 8GB

  • Is it possible for me to Burn an audio file in cd format not mp3 to play in my car. I don't seem to know how to do it in my mac .. Please I need help ASAP . Thanks

    Hello community ... Hope all of you are happy and doing great today.... Please I need yet another valuable help from you all... I want to know if my MacBook pro can burn the type of audio format that can play in my car as my car does not play mp3 audio CDs ... It needs the kind of format used in general audio disc we get in shops for example  a jay-z album cd .... Please does anyone have an idea on what to do... I used to burn it on my then windows laptop with real player but now the real player on mac doesn't seem to do it ..... Any suggestions please?

    Random Geeza is correct; I burn audio CDs frequently, and it's perfectly painless in iTunes,
    Create your playlist, ensure that all the tracks you want to record are checked, then click the 'burn' button at the bottom right of the window. You'll get this dialogue;
    Select the settings you require, then click 'burn' - at that point you'll be prompted to insert a blank disc.
    Don't put the disc in before then as it then requires a different procedure.

Maybe you are looking for

  • Awkward shell script in Applescript

    Hi, I'm trying to get the following line of code to run in an Applescript: ifconfig | grep "inet " | grep 192.168 | cut -d\ -f2 It works perfectly in terminal, but I can't for the life of me to work in an Applescript (I am aware of the double spacing

  • Can I use a USA macbook air in the UK without issue?

    Hello all I am acutely aware of the customs and taxation issues that occur with buying from abroad, but I wanted to know if there are issues with: Voltage; US sockets are 120v and UK are 240v. I know the macbook air's tech specs state that they can h

  • Replacement adapter for ipad

    Recently my original power adapter quit charging.  I tried another and it didn't charge my ipad either.  Thinking it may be something stupid I headed to Walmart and bought another Apple adapter.  It is charging very slowly (like 40% on about 8 hours)

  • Streaming from an HD Source?

    I use uStream.TV to stream my broadcasts. I also have a BlackMagic Intensity Pro that I use to capture my video sources. Using Flash Media Live Encoder, I can stream my video from the Intensity Pro to uStream if the video coming from my source is NTS

  • InDesign Text Render Issues

    When using the cloud version of adobe Indesign, my text is coming out pixelated after I render it. In the past I have used CS4, CS5, and CS6 and never had this problem. Is this a bug I can get a fix for? I already checked the forums and none of the a