Is it possible to force AE to fail if plugins are unlicensed/not-installed?

Hi -
Odd problem. We run a small shop and in order to save money we buy only licenses for AE plug-ins that we really NEED. Unfortunately, sometimes the artists forget that there is only one/a-few licenses for a specific plugin and they submit the render queue to the watch-folder based render farm.
The farm happily renders the projects, for some plug-ins, it just pretends that they are not in use and for others it puts big X's across the image.
Does anyone have a suggestion that will keep the projects from rendering on the farm?
I'm hoping to get one of the following:
some kind of AE preflight that will introspect the specific AE install and compare against the plugs required by the project
a preference/plug-in that will cause a hard failure instead of a bad render
some other approach that I have not considered.
I don't want to lose the time it takes to render projects unnecessarily nor do I want to have the artists annoyed by renders that don't "look" right when they are done.
Any Suggestions?

Check AEScripts.com. There's a script that can report missing effects. I'm sure it could be expanded to include a blaclisting mechnism, so when your artists run it and view the report, they can verify whether the plug-ins they used are avialable on the farm. Otehr than that CS7 will have such a feature as described here:
what’s new and changed in the next version of After Effects
Mylenium

Similar Messages

  • ITunes install fail -  Apple Mobile Device Support not installing - Windows 8

    So I have a Windows 8 Pro system, and I've had to reinstall iTunes. Anyway I've been completely unable to do so. It simply either gets an error and does not install (where does itunes store its installer log files so I can see whats happening?) at all or it gets to the part where its starting up services and it fails when its trying to install and start the Apple Mobile Device Support service and so when I start iTunes I get an error message like this one:
    "This iPad cannot be used because the required software is not installed. Run the itunes installer to remove itunes, then install the 64bit version of itunes"
    I've tried several times to uninstall and manually delete all the files related to itunes, but this has made no impact.
    I have no idea what to do. Reinstalling my OS and all the apps just to get iTunes back really isn't something i want to do.

    All sorted now.  Sorry b noir, but I cannot remember the error.  What I did was use the idea from another thread to copy the necessary files from one computer to another.  Fortunately I have a laptop on 8 so updated iTunes and coppied all the files from the /Program Files (x86)/Common Files/Apple/Mobile Device Support.  I then downloaded 2 programs to make the necessary registry entries.  This did not fully work so I searched the laptop registry for the version number of Mobile Device Support and then put it into the same desktop registry key.  This worked as I was now at the correct version.

  • Launch Console fails: the vnc viewer is not installed on the manager server and no local vnc viewer is found.

    Hello,
    I have created and started a VM image and try to configure this image, but when launching the console I get the error:
    "the vnc viewer is not installed on the manager server and no local vnc viewer is found."
    I've read the vnc console does not rely on a local version of the vnc client, but uses the java vnc.  From the java log I get:
    Java Web Start 1.6.0_43
    Using JRE version 1.6.0_43-b01 Java HotSpot(TM) Client VM
    User home directory = C:\Users\kgraaf
    28-jun-2013 10:17:04 com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: ServiceType : VNC
    28-jun-2013 10:17:04 com.oracle.ovm.ras.proxy.external.ViewerLauncherFactory getViewerLauncher
    INFO: Os is : windows 7
    It is not clear to me yet what is expected to be running where. My configuration is:
    - VM Server 3.1 on Linux host A
    - VM Manager 3.1 on Linux host B
    - Connected via Windows 7 64-bit client via a browser to the Management Server. Let's call this host C
    When launching the console it tries to connect to 127.0.0.1:60505 so to localhost and a port#.
    - Given this information I would expect it tries to launch the vncviewer from my management server (host B).
    - /usr/bin/vncviewer is installed on host B, but this appears not to be used.
    - We see java vnc is started on my Windows 7 client (host C) and it tries to connect to 127.0.0.1 (localhost on my Windows client??) and not to the remote management server (host B)!?
    Questions:
    1 - Can someone explain what exactly is being executed (from where and to which host) when launching the console?
    2 - Is this a java version / Windows 7 related configuration issue? How to fix this?
    Thanks,
    Klaas.

    Per Oracle's website - RAN into this a few hours ago...Do it as ROOT on the VM Manager Host
    http://docs.oracle.com/cd/E26996_01/E18548/html/BABFBEIF.html
    It is preferred that you install either TightVNC on the Oracle VM Manager host computer. You can get the latest TightVNC package from:
    http://oss.oracle.com/oraclevm/manager/RPMS/http://oss.oracle.com/oraclevm/manager/RPMS/
    Install TightVNC with the command:
    # rpm -ivh tightvnc-java-version.noarch.rpm

  • Forcing auto installation to download 1.3.1_01 not 1.3.1_02

    Is it possible to force the auto installation of the plug in to install older versions of 1.3.x that 1.3.1_02.
    Apparently, alot of other applets don't work with 1.3.1_02 although ours does.
    It is really annoying that the plugin-version suddenly, without warning, is upgraded!
    It makes it hopeless to test the web-apps when U have no control over the plugin version!!!!!
    Regards,
    anne

    I'm having the a related problem -- I can't figure out how to require 1.3.1_02. Whenever the plugin auto-install happens in MSIE, it installs 1.3.1, while our applet requires 1.3.1_02 (due to bugs in the JavaScript-to-Java communication in 1.3.1).
    The <object> tag we're using in MSIE looks like this:
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" codebase="http://java.sun.com/products/plugin/1.3.1/jinstall-131-win32.cab#Version=1,3,1,0">
    <param name="type" value="application/x-java-applet;version=1.3.1" />
    </object>
    Presumably there is a combination of the codebase attribute and the type parameter that will force 1.3.1_02 to be downloaded if an earlier version is found, but I have yet to discover what it is...
    Why isn't any of this documented!?

  • Is it possible to force 16/32-bit stack alignment without using the optimizer?

    The compiler emits code targeted at the classic Pentium architecture for the -m32 memory model.  I'm running into problems mixing Sun Studio compiled code with code built with other compilers because the other compiler builds under the assumption that the stack is 16-byte aligned.
    The only way I've found to force Sun Studio to comply with that restriction is with -xarch={sse2a,sse3,...}, but this causes the code to pass through the optimizer.  As noted in the documentation, if you want to avoid optimizations you must remove all flags that imply optimizations -- that is to say, there's no way to disable optimizations once enabled.  This should not, however, be treated as an optimization because it's an ABI requirement.
    I've scoured the documentation, spent many hours googling, digging through forums, and asking questions.
    The best I've come up with is the -xarch option which is sub-optimal because it has side effects.  I tried -xchip=pentium4 (this is what my other compilers have set as their default target), but the generated code doesn't force 16-byte stack alignment.
    Is there a way to force the compiler to emit code conforming to a different ABI without using the optimizer?
    -Brian

    Thank you for your response.
    I hope you won't mind my asking: do you have a way to prove that it's not possible to force 16-byte alignment without using the optimizer?  I ask because your username / profile don't give the impression you work for Oracle, so while I think you're probably right it's at least possible that we're both mistaken.  I haven't been able to find any documentation on either stack alignment or altering the targeted ABI short of using the -xarch flag, and even there the details are fairly sketchy.
    -Brian

  • Is it possible to force only a single evaluation of a function?

    I am only an occasional user of numbers...
    The question:  Is it possible to force a single evaluation of a function like TODAY() ?
    i wanted to place the current date into a gas milage numbers document, and I foolishly
    used =Today().
    Well the second time I entered the date as above I noticed that the previous entries had
    of course been changed to the current date ;(
    ie the Today function is re-evaluated whenever the spreadsheet is re-opened.
    Is there a slick way of forcing a single evaluation of functions like Today() ?
    Jerry

    Badunit,
    I have a keyboard shortcut for Insert > Date & Time that has been working faithfully for about two years now. Prior to that I hadn't had good luck, so it may be my choice of key combination that I assigned to this action. If you'd like to try it, I use:
    Shift-Option-Command-D
    Regards,
    Jerry

  • My whole catalogue was nearly lost due to a failed external hard drive. Professional help recovered photos but I can't find my smart tags. Is it possible they were lost on failed drive?

    My whole catalogue was nearly lost due to a failed external hard drive. Professional help recovered photos but I can't find my smart tags. Is it possible they were lost on failed drive?

    Hi,
    In order to recover the tags/albums, etc, you need to have the catalog db. Since currently you only have images, the organization done in the older catalog is probably lost.
    Which version of PSE you have and is there any chance, that you have access to catalog location (default is : %programdata%\adobe\elements organizer\catalogs on Windows and ~/library/app support/adobe/organizer/catalogs on MAC) ?
    Thanks
    Andaleeb

  • Possible to force install other Mac OS'es other than ones shipped?

    Hello everyone!
    So, I have a power mac G4 2003 dual 1.25 MDD model and although I have the original install/restore disks for 10.2(Jaguar) and OS 9.2.2, I was wondering if there is a way, or if it exists, of hacking the firmware to allow my system to boot anything lower than 9.2.2?
    Although, I got a glimpse of what OS 8.6 and lower looks like through Sheepshaver, I wanted to go a little step further and see if it is remotely possible to FORCE recognize on boot any version of Mac OS other than the ones that came with the machine?
    I want to natively boot into Mac OS 8.6 and see what it looks like in full screen and just to see how it runs for nostalgic reasons. I know System 7.6.1 won't work for sure, though there has to be a way to allow the system to recognize by force mac OS's that are lower than what came with the machine?
    Even Puma and Cheetah would be interesting to see. Again, I know this is a rather stupid question or request, but has anyone ever done this, or if it is remotely possible?
    Thanks and have a great Monday!

    There are plenty of examples where what you want to do would work fine. But on the specific Mac you are using, the mirrored drive doors G4, there were major architectural changes.
    The Bus Controller used in previous Macs was replaced with a different High Speed custom Integrated circuit that provided access to a never-before-seen type of memory running faster than ever before. No support for it exists in any previous version of any Mac OS. That same IC also provided a previously unseen Interface to the Hard drive, now at ATA/100 speeds. Another new Interface running at speeds never seen before. And that same IC also provides an Interface for FireWire 800 in certain models, another architectural change. The performance gains are remarkable. That it will not run older versions of Mac OS is completely unremarkable.
    Your Mac has a completely different Hardware Architecture for its Memory and Hard drive. There was no code to drive that Hardware in previous versions of Mac OS because that Hardware did not exist when those versions of Mac OS were written. If you want to run older versions of Mac OS, you WILL need an older Mac that can run them. If there were a way to hack it, this community would know about it and tell you.

  • Slideshow page appears to load all images at once making it very slow. Is it possible to force it to load just the required items for the immediate page / slide

    Hi Everyone
    First post and a Muse / Web Noob.
    Im building my personal website with muse ( CC and now CC 2014 ) , its quite simple with slideshows embedded inside each other and is just 4 pages in total.
    My two slideshow pages appears to load all images at once making it very slow ( plus 20 secs on my system ). Is it possible to force it to load just the required items for the immediate page / slide. It would be so much faster and would work much better in this particular situation.
    Ive built all the images and icons at the correct size so optimisation shouldn't be an issue. The whole site is only about 42mb.
    www.paradoks.co.uk
    Many thanks
    Deck

    Oh well the problem seems to have fixed itself. It seems it was either a Java or Tumblr problem because the same thing happened when I installed Chrome. It is a lot more stable now and no more crashes yay.

  • '"Connection Failed" : The server "rrnas01" may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, and then try again' message

    '"Connection Failed" : The server "rrnas01" may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, and then try again' message keeps displaying whenever I try to open any Adobe CS5 applications (except for Adobe Acrobat Pro). It displays until I click "OK" about 15-20 times or so and then will finally let my program open.
    I have tried deleting files within my Library/Preferences folder and turning off/deleting login items within my system preferences as other forums suggested but nothing happened. Spending 3.5 hours on the phone with Adobe and completely uninstalling and then reinstalling the entire CS5 Master Collection didn't work either.
    Also, it may be helpful to know that my programs worked fine for about three weeks then when we got internet and changed the password (the join, not the adminstrative password) with the wireless network "ScubaSteve" (which I've used with no problems at my old apartment) it started acting up. I have never seen "rrnas01" before so I don't know at all where it came from. I also installed the free 30 day trial of Suitcase Fusion 3 recently, but thinking that could also be the cause I have uninstalled it, and still no help.
    Please help me! And please keep in mind I don't know all the computer lingo that a lot of the people in these forums seem to know. Thanks in advance for ny help you can give me.

    It may not be possible .. there is a major bug between Mountain Lion and the TC where the TC disk goes off the radar of the computer.
    Lion is also affected but not as badly.
    7.6.4 seems worse than earlier firmware.. so back to 7.6.1 or 7.5.2 if that is possible.
    Obviously that is not a solution for a later Gen5 TC.
    Reset to factory after the firmware downgrade. .use all network names that are short, no spaces and pure alphanumeric.
    If the TC is the main router set the dhcp to a very short lease time.. eg 30min.. and see how it goes, or try a longer lease like 99days.
    I prefer the very short lease but response has been mixed.
    Use ethernet not wireless.. ethernet is always more reliable and stable than wireless.
    And last .. a nightly electric timer that powers off every night at midnight for 1min.. would not be the first device we have suggested a fix that amounts to beat the unit to the punch by forcing it to reboot since it is unstable.

  • Some failed BPEL processes are not tracked in BPEL Console (not hydrated)

    Hi all.
    I'm experiencing a problem at a customer which has a standalone BPEL install (they use BPEL 10.1.3.1 only)
    The customer is complaing that, due to some process errors, the BPEL process fails but, the process final state is not hydrated to database, so it's not possible to track the process execution.
    I built a simple test case and tested against BPEL 10.1.3.1 and 10.1.3.3. The test consists of:
    1 - A synchronous BPEL process using an Assign activity.
    2 - In the assign, I force an error condition, for example copying the expression parseEscapedXML('some bad xml string') to a variable.
    3 - I execute the BPEL process using the console
    4 - The process finishes with error, but you don't get any instance in the "Recently Completed BPEL Process Instances"
    This is a critical problem as we cannot track both what was successfully executed and what has failed.
    Failed instances like this one are obviously logged in appserver files, but this is not an accpectable monitoring alternative.
    This is even more critical because the customer does not have Enterprise Service Bus to mediate execution, where I could certainly track those failed ones.
    Any ideas?
    Is it possible to force hydration of all types of failed processes?
    Thanks
    Denis
    Message was edited by:
    [email protected]
    Message was edited by:
    [email protected]

    Additional info: Having the process "In Flight" due to the checkpoint and subsequent "error", if I manually abort the instance and visualize the audit flow, I can see which activity has caused the error.
    For example:
    1 - I execute the process. It executes the checkpoint() and the ora:parseEscapedXML(), which causes the process to terminate unexpectedly.
    2 - The process remains "In-Flight". If I go to the audit flow, it shows that the process has reached the checpoint activity, and nothing further.
    3 - I manually abort the instance
    4 - I check the audit flow again. This time I can see the flow beyond the checpoint, until the activity that caused the process to terminate (in this case the assign containing the parseScapedXML)
    What I conclude is that, when I manually abort the instance, BPEL hydrates the process part that was only "in memory" (the actual point where the process has stoped)
    Denis
    Message was edited by:
    [email protected]

  • "Apple Mobile Device" failed to start. itunes does not recognize my iPhone4.

    I decided it was time to resync the music on my iPhone since its been months. I begin the sync and after a minute or so, my iTunes suddenly does not recognize my iPhone and freezes. I honestly have no idea what happened but was undaunted.
    OS is MS Windows 7 Home Premium 64 bit SP1
    Now, after trying:   
    - updating to iTunes 10.6.3, which stops installing after a popup saying "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services. With the options Abort Retry or Ignore. Retry does nothing. Ignore allows iTunes to install but it doesn't recognize my phone still which is all I care to use iTunes for.
    - uninstalling all iTunes, Apple, Quicktime, and Bonjour software, which was difficult to do since you have to follow a particular order or else they wont actually uninstall.
    - performing a registry clean using CC Cleaner
    - wiping my compter's apple related Temp files in app data..
    - restarting with a clean boot... updating all drivers.. updating windows..
    I am becoming quite daunted.
    I have done essentially every single thing I could find that might resolve this error. I restarted and tried again (this is the third or maybe four time) and it still will not install.
    I cannot get any third party software to recognize the phone either since I need that Apple Mobile Device. I could always sync my library with Spotify but that's cumbersome and makes me not like my beautiful iPhone.
    Any help would be AMAZING. I've run out of ideas.

    The link above is bad... that account has been suspended.
    Just an FYI, I'm running Windows 7 Professional 64-bit and had just downloaded Itunes 10.7 for this platform.
    Please know that I have NEVER plugged any Apple device into this great computer.
    I have the new Iphone 5 READY to plugin and in ANTICIPATION of installing that phone; I first wanted to start by installing Itunes without any hardware potentially messing up the works.
    I have the exact same problem as reported here and in about 100 places here at Apple.  Please note this system has never seen ANY of these apple applications including quicktime, Itunes, Bonjour, or anything else from Apple for that matter.
    So basically, I'm stuck.  I've read the articles at about 20 sites now and it looks like this is a SEVERE and widespread problem; however, I have yet to find a "real" solution.
    Any advise would be greatly appreciated.  I'm an IT/Telecom Expert and it took me 3 hours to get the Iphone 5 setup and working properly (mainly because of the screen not working sideways for 95% of the configuration options and being forced to fat finger settings) including everything working with Icloud hosted contacts, facebook, a few networks and getting my gmail out of the way (of Icloud and facebook) and finally getting everything rocking, only to hit the wall when it came to Itunes.  Kind of a drag if you ask me.  (I'm thinking the Samsung Galaxy III that I returned to get this thing might have been less grief; but I guess we'll see).
    Anyone with a real fix, please reply!  I could use the help BEFORE I try to plug this phone into my computer!
    Thanks!

  • Photoshop failed to quit and is not responding

    I've had a nasty problem for the past few days that seems to be getting gradually worse. ie it now happens within a few minutes of openning Photoshop, whereas before it was happenning after an hour or two of working on an image....
    At some point while working on a moderately complex .psd (roughly 70mb with some 15 layers) Photoshop hangs and Force Quit Applications tells me that Photoshop is not responding. I can't identify anything particular that i'm doing that triggers it.... i use a fairly wide variety of tools and filters and the hang doesn't seem to be triggered by anything specific.
    I force Photoshop to quit, and it disappears from the Force Quit Application list. However, after quitting, I cannot open .psd or .jpg files from Bridge or from Finder. Raw files open up ok from Bridge into Camera Raw. And, when I try to shut down or restart my machine i get: " Logout has timed out - The application Photoshop failed to quit and is not responding." so the only way to restart is to force a shut down with the power button. After restarting the Mac Photoshop works ok again for a a while and then the problem happens again.
    I have repaired my disk permissions and run Diskwarrior over both my Mac HD ad the external Firewire drive where all my images live - which didn't identify anything out or the ordinary.
    Any thoughts on what else I can do to eliminate this problem would be v gratefully received
    I am working on a Dual-Core Intel MacPro with 9GB memory, running OS 10.4.11 and Photoshop CS3 10.0.1 and Bridge CS3 2.1.1.9

    Neil, just for reference the Cron script problem was fixed in 10.4.2 and should be run on boot if they haven't already. This doesn't mean that running cocktail occasionally to make sure doesn't have value or to run the maintance scripts early doesn't help (it wont hurt).
    Nick
    The 3 Gb limitation is a limitation of 32bit operating systems and software. Photoshop can't address (use) more than 3Gb regardless of how much you have free or installed. OSX 10.4 is kind of 64bit but not completly, it has the ability to remap memory so EACH program can use a max of 3Gb. so in your case with 5ish Gb used PS is using 3Gb, Safari is using a bit and the OS is prob using most of the rest.
    Looking at what you posted the only two figures your really interested in is the Used and Free (which add up to approx 9Gb). The fact that the used number doesn't change from the several files open and the liquify filter opening indicates to me that it has already grabbed as much memory as it can( it's using 3Gb of the 5.52, the rest is the OS etc).
    Simply put PS IS running out of memory. You can help this by putting the memory allocation in the PS preferences higher (the OS will use other areas of memory so it wont cause a problem) and make sure the scratch disk is set to a drive with plenty of space. But keep in mind the Liquify filter is VERY memory intensive so you may not be able to use it with lots of files open.
    BRETT

  • Error: failed to prepare transaction (could not satisfy dependencies)

    Hi,
    I was going to install a winff package (a GUI front end to ffmpeg for converting between video formats), but when I ran yaourt -S winff and tried to install it refused because it isn't for the x86_64 architecture. So I decided to edit the PKGBUILD and perhaps try to force it anyway, but then I saw that the PKGBUILD is actually getting the precompiled RPM package and as I checked, while there was no precompiled 64bit version of the RPM there was one for a deb version that is offered on winff site.
    Since deb's are just archives I ended up, after a few tries, with this PKGBUILD which uses ar and tar commands to get to the binaries inside of the amd64 deb:
    # Contributor: yugrotavele <[email protected]>
    # Modified by libervisco for x86_64
    pkgname=winff-amd64
    pkgver=0.42
    pkgrel=1
    pkgdesc="GUI for ffmpeg"
    url="http://www.winff.org"
    license=('GPL')
    depends=('ffmpeg gtk gdk-pixbuf')
    makedepends=('')
    source=('http://winff.googlecode.com/files/winff-0.42-amd64.deb')
    arch=('x86_64')
    md5sums=('1febf5fd19fa76bdc1da06d3e6c4d3b8')
    build() {
    ar vx winff-0.42-amd64.deb
    tar xvzf data.tar.gz
    install -Dm755 $startdir/src/usr/bin/winff $startdir/pkg/usr/bin/winff
    install -Dm755 $startdir/src/usr/share/winff/presets.xml $startdir/pkg/usr/share/winff/presets.xml
    install -Dm755 $startdir/src/usr/share/winff/winff.png $startdir/pkg/usr/share/winff/winff.png
    So what I basically do is run yaourt -S winff and when it asks whether I want to edit it, I edit it and replace the original PKGBUILD content with above.
    It successfully runs the build() commands, finds and installs the dependencies, but when it's time to install the actual new winff package is throws up this:
    loading package data...
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: winff: requires ffmpeg gtk gdk-pixbuf
    I don't get it. It installed all the dependencies (and I even checked whether winff works in one of the earlier tries when I manually installed gdk-pixbuf when the binary asked for it). What does it want now?
    Here is the whole process:
    [daniel@memeport ~]$ yaourt -S winff
    ==> Downloading winff PKGBUILD from AUR...
    Comment by: yugrotavele on 20080518 [04:36:56]
    A nice GUI frontend for ffmpeg.
    First Submitted: Sun, 18 May 2008 04:28:31 +0000
    Last Updated: Mon, 30 Jun 2008 04:23:08 +0000
    winff 0.42-1 (Unsupported): GUI for ffmpeg
    ==> winff dependencies:
    - ffmpeg (already installed)
    - rpmextract (already installed)
    ==> Edit the PKGBUILD (recommended) ? [Y/n] ("A" to abort)
    ==> ----------------------------------------------
    ==>y
    Please add $EDITOR to your environment variables
    for example:
    ==> Edit PKGBUILD with: (replace gvim with your favorite editor)
    ==> Edit ./PKGBUILD with: gedit
    ==> winff dependencies:
    - ffmpeg (already installed)
    - gtk (already installed)
    - gdk-pixbuf (package found)
    ==> Continue the building of 'winff'? [Y/n]
    ==> ----------------------------------------------
    ==>y
    ==> Building and installing package
    ==> Making package: winff 0.42-1 (Tue Jul 1 21:34:12 CEST 2008)
    ==> Checking Runtime Dependencies...
    ==> Installing missing dependencies...
    resolving dependencies...
    looking for inter-conflicts...
    Targets: gdk-pixbuf-0.22.0-4
    Total Download Size: 0.00 MB
    Total Installed Size: 0.70 MB
    Proceed with installation? [Y/n]
    checking package integrity...
    (1/1) checking for file conflicts [############################################################] 100%
    (1/1) installing gdk-pixbuf [############################################################] 100%
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Downloading winff-0.42-amd64.deb...
    --2008-07-01 21:34:13-- http://winff.googlecode.com/files/winff-0.42-amd64.deb
    Resolving winff.googlecode.com... 64.233.187.82
    Connecting to winff.googlecode.com|64.233.187.82|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 1383594 (1.3M) [application/x-archive application/x-debian-package]
    Saving to: `winff-0.42-amd64.deb'
    100%[=============================================================================>] 1,383,594 191K/s in 7.4s
    2008-07-01 21:34:21 (183 KB/s) - `winff-0.42-amd64.deb' saved [1383594/1383594]
    ==> Validating source files with md5sums...
    winff-0.42-amd64.deb ... Passed
    ==> Extracting Sources...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    x - debian-binary
    x - control.tar.gz
    x - data.tar.gz
    ./usr/
    ./usr/bin/
    ./usr/bin/winff
    ./usr/share/
    ./usr/share/doc/
    ./usr/share/doc/winff/
    ./usr/share/doc/winff/copyright
    ./usr/share/doc/winff/winff.pdf
    ./usr/share/doc/winff/README.txt
    ./usr/share/doc/winff/README-Icons.txt
    ./usr/share/doc/winff/README-Presets.txt
    ./usr/share/doc/winff/changelog
    ./usr/share/applications/
    ./usr/share/applications/winff.desktop
    ./usr/share/winff/
    ./usr/share/winff/winff.png
    ./usr/share/winff/presets.xml
    ./usr/share/winff/languages/
    ./usr/share/winff/languages/winff.es.po
    ./usr/share/winff/languages/winff.nl.po
    ./usr/share/winff/languages/winff.fr.po
    ./usr/share/winff/languages/winff.pb.po
    ./usr/share/winff/languages/winff.tr.po
    ./usr/share/winff/languages/winff.de.po
    ./usr/share/winff/languages/winff.zh.po
    ./usr/share/winff/languages/winff.it.po
    ./usr/share/winff/languages/winff.pt.po
    ./usr/share/winff/languages/winff.pl.po
    ./usr/share/winff/languages/winff.bg.po
    ./usr/share/winff/languages/winff.po
    ==> Tidying install...
    -> Removing info/doc files...
    -> Compressing man pages...
    -> Stripping debugging symbols from binaries and libraries...
    ==> Creating package...
    -> Generating .PKGINFO file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: winff (Tue Jul 1 21:34:22 CEST 2008)
    ==> Continue installing 'winff'? [Y/n]
    ==> [v]iew package contents [c]heck package with namcap
    ==> ----------------------------------------------
    ==>y
    loading package data...
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: winff: requires ffmpeg gtk gdk-pixbuf
    ==> WARNING: Your package is saved in /tmp/winff-0.42-1-x86_64.pkg.tar.gz
    I tried doing it without changing the package name to winff-amd64, but same thing happens. What's going on?

    Ahh man, and that's it! It works.
    I'm just wondering now how can I contribute this PKGBUILD to AUR, but I can read that in the wiki too.
    Thanks!

  • All music gone from iTunes and when trying to put it back, "Attempting to copy to the disk Macintosh HD failed. The disk could not be read or written to."

    Hello,
    I have a portable 500gb HD and I use it to put music and other stuff.
    Earlier, out of the blue, all of my music from iTunes disappeared, and I tried to put it back by dragging my folder "music" from the external HD to iTunes, but the message "Attempting to copy to the disk Macintosh HD failed. The disk could not be read or written to." appears and nothing happens. Only 40 albums (the same ones every time) go into iTunes before the message appear.
    I tried restarting the computer and nothing happened.

    This sounds more like a hardware issue, possibly a failing drive if you had mysteriously vanishing files and there are problems writing to your drive..  You could get better support on a forum for your Mac model or at lest one for your operating system version.  Have you verified the disk with Disk Utility to see what it reports?

Maybe you are looking for

  • Slow cd import with imac 24 vs dual G5

    my new imac 24 is much slower at importing cd's (converting to mp3 at 192) than my G5... something like 7-8x with the imac vs 18-20x with the G5... ??? is this typical for your results or do I have a bum setting??? stephen

  • Problems Importing Slides / Captivate 3

    I have a series of 6 related Captivate projects, plus one I use as a template. Since there's some shared content, I need to be able to copy slides from one project to another, but I am having serious import problems. When I try to import slides from

  • Query to find out saturday's

    Dear all, How to find out saturday in the current month or between date.

  • ADF 11g : Calling PL Sql Function

    Hi there.. I am trying to call a PL/SQL Function from my application module in ADF 11g. The code looks something like this     public void getName(int relationNumber) {         DBTransaction tc = getDBTransaction();         StringBuffer statement = n

  • SAPF181 /F.50 - Doc Splitting Active

    WE are trying to book our discounts for Logistics Invoices (MIRO/RE) to a default Cost Center and then later, executing SAPF181 using F.50 to re-classify the Discount to the Cost Object from the PO Line item. Issue When I  attempt to run SAPF181/F.50