UoM_DMS_Toolkit

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! 😁

Stars
6
Committers
1

UoM DMS Toolkit 💻

JUST OPEN THE UoM_DMS_Toolkit_by_Patric.ipynb in Google Colab and Run 🧑‍💻

BRIEF EXPLANATION IS GIVEN BELOW

Introduction 📋

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! 😁

Prerequisites 🎯

  • Update package lists:

    sudo apt update -y

  • Install ffmpeg for multimedia processing:

    sudo apt install ffmpeg -y


Variable are written inside angular brackets < >


Download File from URL 📥

wget -O <fileName> <downloadLink>

OR

curl -o <fileName> <downloadLink>

Download M3U8 files to MP4 🔗

ffmpeg -i <downloadLink> -c copy -threads 8 <fileName>

Uploading File to DMS 📤

curl -u <userName>:<userPassword> -T <fileName> "https://dms.uom.lk/remote.php/webdav/"

Share file from the DMS 🔁

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"

Get details of all shares in DMS Account 📢

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"

Delete a share with its share_ID 🗑️

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"

Mount DMS WebDAV in My Computer 🖥️ (OPTIONAL)

To map DMS as a local disk in Windows 🪟, run this command in Command Prompt

net use Z: https://dms.uom.lk/remote.php/webdav/ /user:<userName> <userPassword>

  • Replace 'userName' and 'userPassword' with actual values

To access DMS in Linux 🐧, enter this address in the Enter server address field in your File Manager

davs://dms.uom.lk/remote.php/webdav/

Conclusion 😎

This notebook provides a convenient way to interact with the DMS for educational purposes, enabling data-free downloads, uploads, and sharing of files and folders.🧑‍💻

© PATRIC NILACKSHAN ([email protected])

Related Projects