— iIT-Services

Archive
2024 Yearly archive

As written a while ago already, password-protected Excel worksheets can be unlocked through a VBA script:

Even more simple is the approach through editing the XML source of the Excel file, as described by paracon.ca/…:

  1. Rename your file by adding *.zip to its extension.
  2. Open the zip file.
  3. Browse to the path ‘xl > worksheets’ folder.
  4. Extract the protected sheet xml file to local drive.
  5. Open the xml and delete the markup text <sheetProtection …>.
  6. Save and close the xml file.
  7. Overwrite the original xml in the zip folder with the file from local drive.
  8. Close the zip file and rename the file by removing the .zip extension.
Read More

Links being in the following format: https://cfvod.kaltura.com/hls/p/<other link text>/name/a.mp4/seg-1-v1-a1.ts

Here is my full method for Chrome:

  1. open developer tools F12, go to network tab
  2. reload page
  3. play video, look for ts entries in left pane, e.g. seg-11-v1-a1.ts, click on name
  4. copy request URL in right pane e.g. https://cfvod.kaltura.com/hls/p/<link text>/name/a.mp4/seg-11-v1-a1.ts
  5. paste this in new browser window
  6. remove “hls” at beginning of link and the final subdirectory, e.g.
    https://cfvod.kaltura.com/hls/p/<link text>/name/a.mp4/seg-11-v1-a1.ts
    becomes
    https://cfvod.kaltura.com/p/<more link text>/name/a.mp4
  7. load page
  8. MP4 can now be downloaded by clicking Download on HTML player controls (three dots menu)

Source: https://stackoverflow.com/questions/56366523/obtaining-direct-download-link-for-an-embedded-kaltura-video.

Read More