Notes
ImageMagick Usage Examples
- By Ercan S.
- 13/04/2025
- 0 comments
You can download ImageMagick by using link below. https://imagemagick.org/script/download.php Adding Watermark to Photo composite -gravity <<position>> <<watermark_file>> <<input_file>> <<output_file>> Possible position values; SouthEast, SouthWest, NorthEast, NorthWest
Rest API Response Standards
- By Ercan S.
- 13/04/2025
- 0 comments
List - GET --------------------------------------------------------------------- Success - 200 OK - Return list of resulting entities matching the search criteria Success - 200 OK - Return an empty array Get Specific - GET --------------------------------------------------------------------- Success - 200 OK - The entity matching the identifier specified is returned as content Failure - 404 Not Found - No content Create - POST --------------------------------------------------------------------- Success - 201 Created ..
FFmpeg Usage Examples
- By Ercan S.
- 13/04/2025
- 0 comments
You can download FFmpeg by using link below. https://ffmpeg.org/download.html Cutting the Video/Audio file at certain intervals ffmpeg.exe -ss 00:16:10 -to 00:18:26 -i <<input_file>> <<output_file>> Changing video size and frame rate ffmpeg.exe -i <<input_file>> -vf "scale=960:540,fps=25" <<output_file>> Changing video size and frame rate by using Nvidia GPU ffmpeg.exe -hwaccel cuda -i <<input_file>> -vf "scale=960:540,fps=25" <<output_file>>
ExifTool Usage Examples
- By Ercan S.
- 13/04/2025
- 0 comments
You can download ExifTool by using link below. https://exiftool.org/ Changing the date information of the file exiftool -AllDates="2021:11:28 00:00:00" FolderOrFile Adding or changing GPS data to the file exiftool -XMP:GPSLongitude="<<value>>" -XMP:GPSLatitude="<<value>>" -GPSLongitudeRef="East" -GPSLatitudeRef="North" <<path>>
Removing Old Eclipse Versions
- By Ercan S.
- 13/04/2025
- 0 comments
In Eclipse-based IDEs, after performing an update, files from previous versions are retained. To remove these files, first delete the old versions from the Installation History. Then, retrieve the value of eclipse.p2.profile from the «installation_path»/configuration/config.ini file. Use this value in the following command: eclipse -application org.eclipse.equinox.p2.garbagecollector.application -profile <<profile>> Example usage: .\dbeaver.exe -application org.eclipse.equinox.p2.garbagecollector.application -profile DefaultProfile .\eclipse.exe -applica..