Quantcast
Channel: Adobe Community : Discussion List - All Communities
Viewing all 238792 articles
Browse latest View live

Use GPU for image processing is Greyed out even though minimum specs are met

$
0
0

Hey Everyone,

 

I have just updated Lightroom Classic to the latest version and tried to Enable the new GPU image processing feature. When I go to the feature however the 'use GPU for image processing (Process version 5 or higher)' option is greyed out.

 

I have checked the suggested specs and can see that I meet them, I am currently on Windows 10 pro x64 running dual SLI Nvidia GTX 780's with the latest Nvidia driver as show below:

 

Video Card Details

Suggested Cards from GPU FAQ

 

I have read through the Adobe article (Adobe Lightroom GPU Troubleshooting and FAQ) and tried all mentioned workarounds/fixes, I have also turned off Dual SLI but the option is still greyed out as shown below.

 

 

Has anyone else experienced this issue and can provide some insight? any help would be greatly appreciated.

 

Thanks in Advance

Adriano


java.lang.NoClassDefFoundError: com/adobe/aemfd/docmanager/source/DocumentSourceHandler

$
0
0

Hello

 

For PDF generating we are using com.adobe.aemfd.docmanager.Document, which works fine.

But using this in unit tests we receive this error:

 

java.lang.NoClassDefFoundError: com/adobe/aemfd/docmanager/source/DocumentSourceHandler

 

We are using this dependency:

<dependency>
  <groupId>com.adobe.aemfd</groupId>
  <artifactId>aemfd-client-sdk</artifactId>
  <version>6.3.0</version>
  <scope>provided</scope>
</dependency>

 

How can we solve this error so we can run our tests?

 

Kind regards

Christofhe De Bock

Trying to use Pathfinder function

$
0
0

In Illustrator 2019, I'm trying to "Minus Front" 2 objects in Pathfinder but keep getting this message:

Screen Shot 2019-08-21 at 4.41.51 PM.png

 

So I try divide (thinking I will just delete what I don't need and get this:

Screen Shot 2019-08-21 at 4.42.04 PM.png

Do any of the Adobe Creative Suite programs function the way the previous versions used to function?!

 

Acrobat constantly is beachballing.

InDesign takes 1 minute to save a complex file.

 

I keep back-versioning my programs just get get some work done!

逆再生した素材をフレーム保持することはできない???

$
0
0

素材Aをシーケンスに入れます。

そして、任意のシーンのところにカーソルを持っていき、「フレーム保持オプション」をすれば、そのクリップが静止画になりますよね?

 

一方、シーケンスに置いたクリップを「速度・デュレーション」で逆再生に設定し、その後、任意のシーンで「フレーム保持オプション」をすると、

クリップ(素材A)の冒頭のシーンが静止画になったりして、任意のシーンを静止画にできません。

 

逆再生したクリップの任意の画を静止画にするには、どうすればいいでしょうか?

 

よろしくお願いします。

SeakingSubHunter

$
0
0

Adobe,

 

The export of Captivate to Cardboard and SGVR is pitiful.  Are you going to increase the export to WMR and everything else, and will it be soon?  Because im not buying until my clients can see it on something they have in their locker

AEM Servlet Unit Test

$
0
0

I have the servlet below to use com.adobe.fd.forms.api.FormsService. I'm trying to create a unit test (see below) but I'm getting the following error. It's failing at line 33 of the servlet:

 

Document xmlDocument = new Document(xmlData.getBytes());

 

It seems that the servelt is not initialized correctly or messing the references. Can you please help?

 

Error:

java.lang.NoClassDefFoundError: com/adobe/aemfd/docmanager/source/DocumentSourceHandler

        at org.civ.forms.core.servlets.FormRenderServletTest.doGet(FormRenderServletTest.java:30)

Caused by: java.lang.ClassNotFoundException: com.adobe.aemfd.docmanager.source.DocumentSourceHandler

        at org.civ.forms.core.servlets.FormRenderServletTest.doGet(FormRenderServletTest.java:30)

 

Servlet:

import java.io.IOException;
import javax.servlet.Servlet;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.io.IOUtils;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.servlets.HttpConstants;
import org.civ.forms.core.services.document.FormsDocumentServices;
import org.osgi.framework.Constants;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.adobe.aemfd.docmanager.Document;

@Component(service = Servlet.class,
property = 
{ Constants.SERVICE_DESCRIPTION + "= ",
"sling.servlet.methods=" + HttpConstants.METHOD_POST, 
"sling.servlet.paths=/bin/render", 
"sling.auth.requirements=/bin/render"
})
public class FormRenderServlet extends org.apache.sling.api.servlets.SlingAllMethodsServlet {
@Reference
private transient FormsDocumentServices documentServices;
private static final String APPLICATION_PDF = "application/pdf";
private final transient Logger logger = LoggerFactory.getLogger(getClass());
@Override
protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) throws IOException {
try {
String xdpName = request.getParameter("xdpname");
String xmlData = request.getParameter("xmldata");
Document xmlDocument = new Document(xmlData.getBytes());
Document renderedPDF = documentServices.render(xdpName, xmlDocument);
String pdfFileName = xdpName.replace(".xdp", ".pdf");
response.setContentType(APPLICATION_PDF);
response.addHeader("Content-Disposition", "attachment; filename=" + pdfFileName);
response.setContentLength((int) renderedPDF.length());
IOUtils.copy(renderedPDF.getInputStream(), response.getOutputStream());
} catch (Exception e) {
response.setStatus(HttpStatus.SC_INTERNAL_SERVER_ERROR);
logger.error("reading or writing opertion failed : {}", e);
}
}
}

 

Test:


import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.io.IOException;
import javax.servlet.ServletException;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.testing.mock.sling.junit.SlingContext;
import org.eclipse.jetty.http.HttpStatus;
import org.junit.Rule;
import org.junit.Test;


public class FormRenderServletTest {


    @Rule    public final SlingContext context = new SlingContext();    private FormRenderServlet fixture = new FormRenderServlet();    @Test    public void doGet() throws ServletException, IOException {    SlingHttpServletRequest request = mock(SlingHttpServletRequest.class);               SlingHttpServletResponse response = mock(SlingHttpServletResponse.class);                    when(request.getParameter("xdpname")).thenReturn("xdpTemplate.xdp");        when(request.getParameter("xmldata")).thenReturn("");        fixture.doPost(request, response);        assertEquals(HttpStatus.OK_200, response.getStatus());    }
}

Pdf page become white after random time

$
0
0

Hi,

 

we have a problem for one of our customer with Adobe Acrobat Reader DC (actual version 2019.012.20035). This problem occur now for months and we can't find any solution after tried everything we found on your forum, and on the web.

 

So, every PDF can be opened without any issue. Customers open more than one pdf at the time, and there is still no problem.

 

BUT, randomly, when the customer do something else, and would like to come back in Adobe (program is still open, with different tabs for the different pdf that are still open), the PDF are showing blank page, and sometimes, but not all the time, he get the message "Adobe insufficient data for an image".

 

It's important to mention that this error never display when you open the PDF, but after a while, when you leave the pdf on the side, and would like to come back into it.

 

The customer works on Terminal Server 2016, on a farm of 3 servers, problem is occuring on the 3 servers, for everyuser.

 

I already deleted the whole Adobe installation, cleaning with the cleanup tools, and make a clean installation, but the problem still persist.

 

Can i get tips, help to solve this problem?

AEM Pattern Detector Interpretation

$
0
0

Hi all

 

We're analyzing the output of the Pattern Detector and some of the violations seems strange.

 

1. Non-Backwards Compatible Changes

For instance, we getting:

The content stored at /apps/<...>/cq:dialog/content/items/section3/items/column/items/details-group/items/detai ls by including (sling:resourceType) the JCR path at /libs/cq/gui/components/authoring/dialog/richtext might be incompatible after update and might need some adaption

 

We would like to learn more about the severity of this issue, like what type of change is expected? Is there a backward compatible alternative for richtext, for instance?

 

2. Content Area Violation

For instance, we getting:

The content stored at /apps/<...> by overriding (sling:superResourceType) the JCR path at /libs/cq/workflow/components/model/process might be incompatible after update and might need some adaption

 

However /libs/cq/workflow/components/model/processis is explicitly marked as granite:PublicArea which is safe for that type of actions.

 

If anyone has answers, please share.

 

Thanks in advance!


Getting java.lang.ClassNotFoundException: com.adobe.aemfd.docmanager.source.DocumentSourceHandler

$
0
0

Hi All,

 

While trying testing the addSignatureField from link below:

Adobe Experience Manager Help | Using AEM Document Services Programmatically

 

I am getting java.lang.ClassNotFoundException: com.adobe.aemfd.docmanager.source.DocumentSourceHandler.

 

Can you please advise which jar contain DocumentSourceHandler? why it is not included?

 

Testing with AEM 6.2 jar

aemfd-client-sdk-6.2.0.jar

org.apache.sling.api-2.16.4.jar

 

Thanks and regards

Jia Jiunn Wong

Import Chapter Markers from Premiere Pro CC 2018 into Encore 5.1

$
0
0

Hi,

 

I have made a timeline in Premiere Pro CC 2018 with Chapter Markers.

 

I am using Media Encoder to make an H.264 Blu Ray File to make a Blu-Ray DVD in Encore 5.1.

 

When I import the H.264 Blu-Ray file into Encore, will the chapters show up and come along with it?

 

If not, is it possible to somehow import just the chapters from the Premiere Pro Timeline into Encore and place them on the Timeline into Encore instead of making the chapters inside Encore?

 

Thanks in advance

 

Tilt shift technique to create this? Depth map?

$
0
0

Hi there,

 

i want to find a technique to create this at 0:58 https://www.youtube.com/watch?v=Nb5GpV_LUuU

 

tiltshift_orig.jpg

 

im guessing i would be using Premiere Pro but im happy to use any other program to achieve this, im also capturing video.

(rather than individual pictures shot from a DSLR and stitching them together.)

 

notice that in the picture below the first silver statue is all in focus and the rest gradually get blurrier. which is the perfect example of what i want to create, as it creates more depth

 

tiltshift_notice.jpg

 

by using a standard tilt shift edit (where you apply a reflected gradient) you would get something like the image below, and the statues become blurry,

 

tiltshift_trad.jpg

 

i know how to create the desired image in PS by creating a depth map shown in this very useful tutorial at 7:15

https://www.youtube.com/watch?v=12qgZNbgIB4

 

the problem is i want to create a video rather than just a single image.

 

can i import the depth map created in Photoshop into Premiere Pro or can you create a depth map in Premiere Pro? or is there another method and i'm going about it completely the wrong way?

 

look forward to hearing from you all!

 

thanks, Steve

Photoshop Elements 2018: Open closed eyes - no faces found

$
0
0

19-06_047.JPG

I've got a photo with two faces. I'd like to open the closed eyes of one person, but

photoshop elements 18 says: "No faces found" .

What can be the reason?

 

Kind regards

Rudolf

 

Nachricht geändert durch Rudolf Meyer

 

Message was edited by: Akash Sharma

Creating Subtitles / Closed Captions in Premiere?

$
0
0

Hi there,

 

I need to create Closed Captions for my film (as per requirements for some VOD websites); my budget is low so I want to do as much as I can myself for the project as possible. I am wondering if it is advisable to do it myself in Premiere?

 

The film will also be released on Blu-ray and DVD. If I create a closed caption or subtitles file in Premiere, is it possible to use this same file for the various formats? Or do they have to be done from scratch?

 

Many thanks

How can I count fields with different names together when there is content (letters or numbers)?

$
0
0

I use this script, but i have different field names in different places in the document and not form 10 to 19 like the examble.

How i can write the script to iclude all fields i want to count (only if there a number or letter)?

 

var count = 0;

 

    for (var i=10; i<=19; i++) {

 

        if (this.getField(i).valueAsString == "E") count++;

 

    }

 

    event.value = count; 

Adobe XD opens with a white screen and Crashes in XD version(22.1.12.5).

$
0
0

OS details: Windows 10, version 1903 (OS Build 18362.239)

AdobeXD version: 22.1.12.5

 

I've spent a day searching and trying various fixes, and have tried:

  • Uninstalling AdobeXD via Creative Cloud several times, and then restarting my PC, before reinstalling AdobeXD
  • Editing the Registry
  • Updating the graphics cards drivers
  • Using Creative Cloud Cleaner
  • Repairing and Resetting the app from the Windows App settings
  • Taking control of the WindowsApp folder

 

From the Windows Event Viewer:

Faulting application name: XD.exe, version: 22.1.12.5, time stamp: 0x5d562d62

Faulting module name: Windows.UI.Xaml.dll, version: 10.0.18362.207, time stamp: 0xbf30fb52

Exception code: 0xc000027b

Fault offset: 0x0000000000712720

Faulting process id: 0x20e4

Faulting application start time: 0x01d556a995dcb07e

Faulting application path: C:\Program Files\WindowsApps\Adobe.CC.XD_22.1.12.5_x64__adky2gkssdxte\XD.exe

Faulting module path: C:\Windows\System32\Windows.UI.Xaml.dll

Report Id: e1c73e00-57fb-45d2-901c-e26d8321e14c

Faulting package full name: Adobe.CC.XD_22.1.12.5_x64__adky2gkssdxte

Faulting package-relative application ID: App

 

I can provide other logs and crash files, if it would help.

 

The Title was edited by Moderator.


Combining segments into segments on AAM

$
0
0

Hello!

 

I would like to know if it is possible to combine different segments into one on AAM, instead of combining traits.

For example:

Segment 1: Visitors of page A OR Visitors of page B

Segment 2: Buyers of product A OR Product B

 

I want to create segment 3: Segment 1 AND NOT Segment 2

 

Is this possible? How can I set-up this rule?

 

Many thanks!

Maria

how to stop web page from maximizing when opening pdf?

$
0
0

Hello - Whenever I open a new pdf a web page that i have open, either minimized or in the background, will first maximize and come to the foreground before the pdf opens.  If I don't have a web page open, then a new one will open.

I have changed default browers (IE, Chrome) and it happens with both.  Please note the pdf is not opening IN the webpage, its opening separately (which is what I want).  Basically opening a pdf ends up being a 2 step process - first browser opens then pdf opens.  I'd like to eliminate the first step. I view a lot of pdf's and having the browser maximize and get in the way is an inconvenience.  I've tried switching to open in a browser, then back out, just in case it needed a "reset" of sorts.

Thank you

 

 

 

[Moved by moderator fromAdobe Creative Cloud to Acrobat General Troubleshooting]

Weird lines appear in some pdf when entering edit mode

$
0
0

Hi guys, i have a problem, sometimes when entering "edit" mode in pdf acrobat pro, some very weird lines appear in the pdf. Look for picture attached, anyone know how to remove these?
These lines go straight through the text.

 

Have blurred the content, but check the lines in the back.

 

 

 

 

 

image.jpg

Where is ProRes 4444 in Windows AME 2019?

$
0
0

Hi, I'm trying to export a prores 4444 with alpha from After Effects. Under the Quicktime Format there is only GoPro, NTSC and PAL presets. Codecs have cineform and DnXHD too, but no ProRes. I thought it was supported now?

 

Cheers!

Small circle pointer

$
0
0

For the past week my arrow pointers at times, when over tool bar or the File, Edit etc. bar turn into a small circle with four pointers, a bit like a target. Any ideas why?

Viewing all 238792 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>