[PLUG] Downloading a video file

2020-03-27 Thread Rich Shepard
I was sent a URL to a long series of characters at https://clicks.aweber.com/ which is a 75 minute video file. Going to that address permits watching it, but I'd like to download the file and watch it using local software. wget fails to download the file: wget https://clicks.aweber.com/y/ct/?l=D

Re: [PLUG] Downloading a video file

2020-03-27 Thread wes
On Fri, Mar 27, 2020 at 5:31 PM Rich Shepard wrote: > I was sent a URL to a long series of characters at > https://clicks.aweber.com/ > which is a 75 minute video file. Going to that address permits watching it, > but I'd like to download the file and watch it using local software. > > wget fails

Re: [PLUG] Downloading a video file

2020-03-27 Thread J. Hart
try this : wget https://dl.dropboxusercontent.com/s/j9wpsjdja4mfm4r/COVID-19-Session-1-Video.mp4 On 03/28/2020 09:28 AM, Rich Shepard wrote: I was sent a URL to a long series of characters at https://clicks.aweber.com/ which is a 75 minute video file. Going to that address permits watching

Re: [PLUG] Downloading a video file

2020-03-27 Thread Rich Shepard
On Sat, 28 Mar 2020, J. Hart wrote: try this : wget https://dl.dropboxusercontent.com/s/j9wpsjdja4mfm4r/COVID-19-Session-1-Video.mp4 Thanks for the suggestion. I wrapped the URL in double quotes and ran 'file' on the downloaded result. It is an mp4 so I renamed it so it makes sense. Rich __

Re: [PLUG] Downloading a video file [RESOLVED]

2020-03-27 Thread Rich Shepard
On Fri, 27 Mar 2020, wes wrote: The problem is that bash interprets characters like & and ? to have special meanings. Try putting the URL in quotes. Wes, Yep, quotes make the difference. I didn't pay attention to the string and missed seeing this. Much appreciated, Rich