How to Fix Sign-In Hang on the Appodeal AdMob Sync App (a Desktop App) on Windows
Solution
Roaming Folder
Fast access to Roaming Folder
%APPDATA% in windows explorer
%APPDATA% in windows explorer
This tutorial will show you how to run paint.net image editing software from a php script. Paint.NET is image and photo editing software for PCs that run Windows. It features an intuitive and innovative user interface with support for layers, unlimited undo, special effects, and a wide variety of useful and powerful tools.
XAMPP is an easy to install free Apache distribution containing MariaDB, PHP and Perl.
Goto official website, download and install it :
https://www.apachefriends.org/index.html
In search bar type "env", click on "Edit the system environment variable" and "Open".
Open Windows command prompt ( cmd )
Type following command and press Enter button on keyboard :
php -version
Create file on Desktop. Name it automation.php.
Paste following code into php file :
Change path to your image !!!. I used Yumeko.png image on Desktop.
Open new window command prompt.
Type following command and press Enter ( change to your script path ! ):
CD C:\Users\Dev\Desktop
Type following command to run PHP script :
php automation.php
As result PHP should open Paint.Net with image you provided.
FFmpeg is a free and open-source software project consisting of a large suite of libraries and programs for handling video, audio, and other multimedia files and streams. At its core is the FFmpeg program itself, designed for command-line-based processing of video and audio files. It is widely used for format transcoding, basic editing (trimming and concatenation), video scaling, video post-production effects and standards compliance (SMPTE, ITU).
- download and install 7-Zip free opensource archive tool
from official website : https://www.7-zip.org/
- visit official FFMPEG Window build provider website :
https://www.gyan.dev/ffmpeg/builds/
- scroll down page until "Release" section, and click on ffmpeg-release-full link
- add C:\ffmpeg\bin\ to Path environment variables
- check ffmpeg setup in cmd, open CMD and type ffmpeg -version
- in CMD change directory to folder with .webp images
- type following conversion command + press Enter
for /f %f in ('dir /b .') do ffmpeg -i "%f" "%f".png
Command explanation :
for /f %f in - for loop
('dir /b .') - select all files in current directory ( dot ) you can use path
do - do for each iteration in for loop
ffmpeg -i "%f" "%f".png - command to make ffmpeg convertion