JUST OPEN THE UoM_DMS_Toolkit_by_Patric.ipynb in Google Colab and Run 🧑💻
UoM_DMS_Toolkit streamlines file tasks for students at UoM. Enjoy data-free downloads/uploads and multimedia processing, including Torrents, Youtube, M3U8 links. Say goodbye to bandwidth worries and focus on your education! 😁
-
Update package lists:
sudo apt update -y
-
Install ffmpeg for multimedia processing:
sudo apt install ffmpeg -y
wget -O <fileName> <downloadLink>
OR
curl -o <fileName> <downloadLink>
ffmpeg -i <downloadLink> -c copy -threads 8 <fileName>
curl -u <userName>:<userPassword> -T <fileName> "https://dms.uom.lk/remote.php/webdav/"
curl -u <userName>:<userPassword> -X POST -d "path=<fileName>&shareType=3&permissions=1" "https://dms.uom.lk/ocs/v2.php/apps/files_sharing/api/v1/shares?format=json" -H "OCS-APIRequest: true"
curl -u <userName>:<userPassword> -X GET "https://dms.uom.lk/ocs/v2.php/apps/files_sharing/api/v1/shares?format=json" -H "OCS-APIRequest: true"
curl -u <userName>:<userPassword> -X DELETE "https://dms.uom.lk/ocs/v2.php/apps/files_sharing/api/v1/shares/<share_ID>" -H "OCS-APIRequest: true"
OPTIONAL
-
Run this command inside a new Command Prompt in Windows to see DMS as a Local Disk in My Computer
net use Z: https://dms.uom.lk/remote.php/webdav/ /user:<userName> <userPassword>
These CLI codes provide a convenient way to interact with the DMS for educational purposes, enabling data-free downloads, uploads, and sharing of files and folders.🧑💻