Tuesday, April 25, 2023

Delete Action Center tasks from backend; UiPath RPA

 To delete Action Center tasks from the backend using UiPath RPA, you can use the delete action center task activity. This activity allows you to delete a task or set of tasks from the Action Center. You will need to provide the Action Center task ID and decide whether to delete the task permanently or move it to the Recycle Bin.

Friday, April 21, 2023

Tool to compress video recordings; FFmpeg

 FFmpeg is a powerful open-source audio and video processing tool which can be used to compress videos. It can be used to reduce the size of a video file while maintaining the same quality. It supports a wide range of video and audio codecs and offers a variety of features including video scaling, cropping, and merging videos. It can also be used to convert videos from one format to another.


https://ffmpeg.org/

https://youtu.be/26Mayv5JPz0



ffmpeg -i input.mp4 -c:v libx264 -crf 20 output.mp4
In this command, you are specifying the video codec (libx264) and the Constant Rate Factor (CRF) to 20. The lower the CRF value, the higher the quality and the larger the file size.



Tuesday, April 11, 2023

Extract JSON Queue elements on Orchestrator to Excel; UiPath RPA

 

Extract to Excel to upload to another Queue. 


Extract the contents from here to Excel and source it to below code for Cleaning up data.


https://drive.google.com/drive/folders/16L6kei1CpPH8gX957i4qKDtg5A4VnGxd?usp=share_link

Output of above code is an excel to be able to upload to a Queue.