Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Weird Deinterlace module non-start

New Here ,
Dec 04, 2024 Dec 04, 2024

Hi folks,

 

I seem to have a weird bug that keeps popping up.

 

The 'deinterlace' option in the Filter/Video menu won't run/appear.

 

I've tried moving window/palettes out the way to see if it's opened underneath something but there's no sign of it.

 

I need to deinterlace quite a lot as we work from video screen grabs from time to time.

 

There's probably a way of doing it manually with the transfer modes or something but I'm doing it in GIMP for the time being.

 

Anyone heard of this or, even better, know of a solution?

(version is 26.0.0 - running on 2 year old workstation build with plenty RAM and disk space)

 

Thanks

TOPICS
Windows
141
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Dec 04, 2024 Dec 04, 2024

Perhaps a reset of the Photoshop preferences will fix the issue:

https://helpx.adobe.com/photoshop/using/preferences.html

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 05, 2024 Dec 05, 2024
LATEST

This could be scripted, if the filter is actually loaded and available under installed plugins.

 

var iddeInterlace = stringIDToTypeID( "deInterlace" );
var desc8 = new ActionDescriptor();
var idinterlaceEliminateType = stringIDToTypeID( "interlaceEliminateType" );
var idinterlaceEliminateType = stringIDToTypeID( "interlaceEliminateType" );
var ideliminateOddFields = stringIDToTypeID("eliminateOddFields"); // "eliminateEvenFields"
desc8.putEnumerated( idinterlaceEliminateType, idinterlaceEliminateType, ideliminateOddFields ); // ideliminateEvenFields
var idinterlaceCreateType = stringIDToTypeID( "interlaceCreateType" );
var idinterlaceCreateType = stringIDToTypeID( "interlaceCreateType" );
var idcreateDroplet = stringIDToTypeID( "createDroplet" ); // "createInterpolation"
desc8.putEnumerated( idinterlaceCreateType, idinterlaceCreateType, idcreateDroplet );
executeAction( iddeInterlace, desc8, DialogModes.NO );

 

Let's see what happens with that, if it works more can be done. 

 

For interactivity, you can change the last line's NO to ALL, which should be the same as running the filter with the GUI:

 

executeAction( iddeInterlace, desc8, DialogModes.ALL );

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines