Programs: media archiving: Difference between revisions

From wikinotes
Line 11: Line 11:
|}
|}


== streaming video archiving ==


''' isolating the url '''
<syntaxhighlight lang="bash">
* go to website in chrome
* options > More Tools > Developer Tools
* Networking Tab
* hit F5 to reload the page with the video
  * look for the items with the longest urls in the list
  * right click on it, and Copy > Copy Link Address
</syntaxhighlight>
''' downloading the url '''
The issue with downloading is that you need to be able to reuse the website's
cookies/ssl cert. You can obtain all of this automatically with curl (although I need to learn how)
but alternatively you can just create a simple website with a link, open it from the same browser
(in a new tab), and right-click to download.
<syntaxhighlight lang="html4strict">
<!-- HTML -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML><BODY>
<a href="https://big/log/website/url">RightClick to Save</a>
</BODY></HTML>
</syntaxhighlight>
</blockquote><!-- website archiving -->
</blockquote><!-- website archiving -->



Revision as of 15:06, 2 July 2022

web

web archiving tools

youtube-dl download from youtube, several other sites
khan-dl download from khan academy
wget general purpose website downloader


DVD Archiving (video)

Unix

devede videoDVD/CD authoring tool (compatible with DVD players)
brasero gui iso burning tool
mkvtoolsnix split/merge mkv files from CLI or GUI. (even by chapter!)

win32

dvd decrypter decrypt DVDs, saving decrypted copy
Roxio vhs to DVD software to record VHS
handbrake video encoder

Recording from USB device

ffmpeg ffmpeg can be used to stream from a usb-connected device

Image Files

Unix

Images (iso,bin,cue,...)