How to download streaming flash videos?
up vote
1
down vote
favorite
I am acquainted with Firefox extensions like VideoDownloadHeper, DownThemAll etc. and also other command line tools like youtube-dl for downloading flash videos from popular sites like Youtude,Metacafe etc. But these are not working in the present case.
I want to download streaming flash videos from sites like NEJM. Greasemonkey with the unembed script is not working either. Could you please help me download this small video from the above site?
Thanks in advance!
Moksha
firefox video flash
add a comment |
up vote
1
down vote
favorite
I am acquainted with Firefox extensions like VideoDownloadHeper, DownThemAll etc. and also other command line tools like youtube-dl for downloading flash videos from popular sites like Youtude,Metacafe etc. But these are not working in the present case.
I want to download streaming flash videos from sites like NEJM. Greasemonkey with the unembed script is not working either. Could you please help me download this small video from the above site?
Thanks in advance!
Moksha
firefox video flash
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am acquainted with Firefox extensions like VideoDownloadHeper, DownThemAll etc. and also other command line tools like youtube-dl for downloading flash videos from popular sites like Youtude,Metacafe etc. But these are not working in the present case.
I want to download streaming flash videos from sites like NEJM. Greasemonkey with the unembed script is not working either. Could you please help me download this small video from the above site?
Thanks in advance!
Moksha
firefox video flash
I am acquainted with Firefox extensions like VideoDownloadHeper, DownThemAll etc. and also other command line tools like youtube-dl for downloading flash videos from popular sites like Youtude,Metacafe etc. But these are not working in the present case.
I want to download streaming flash videos from sites like NEJM. Greasemonkey with the unembed script is not working either. Could you please help me download this small video from the above site?
Thanks in advance!
Moksha
firefox video flash
firefox video flash
asked Mar 14 '15 at 5:37
Br. Sayan
10615
10615
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
When you are using Firefox (this works for mp4 Videos)
Note: First disable your flash plugin in the plugin settings.
Then do this:
- Press Ctrl+shift+q
- Play the video
You will see below in the debug window a file being pulled. If it is an mp4 file then just copy the link address and do
wget
.
For example:
wget http://89.40.181.19/ivuqjoscyu2qedz7nljb7fjfaainuqpqufkh5xk6kkheqzdny3rzc2uhnkka/v.mp4 -O outputfile.mp4
Then your download will begin.
add a comment |
up vote
0
down vote
For NEJM, you can right-click the video and choose Save link as (Firefox has to save it). If it doesn't work, you can use wget
in terminal.
For this video, the URL is this.
With wget
there are two ways of downloading.
The first will keep the video file name and copy it to the current directory while rhe second will change it. /path/to/file
is the path to the renamed video.
wget [video url]
wget [video url] -o /path/to/file
If the video has special characters you can try like this (or the same but using -o
):
wget 'http://www.nejm.org/doi/video_original/10.1056/NEJMoa1414123/NEJMoa1414123_v01.mp4'
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
When you are using Firefox (this works for mp4 Videos)
Note: First disable your flash plugin in the plugin settings.
Then do this:
- Press Ctrl+shift+q
- Play the video
You will see below in the debug window a file being pulled. If it is an mp4 file then just copy the link address and do
wget
.
For example:
wget http://89.40.181.19/ivuqjoscyu2qedz7nljb7fjfaainuqpqufkh5xk6kkheqzdny3rzc2uhnkka/v.mp4 -O outputfile.mp4
Then your download will begin.
add a comment |
up vote
1
down vote
When you are using Firefox (this works for mp4 Videos)
Note: First disable your flash plugin in the plugin settings.
Then do this:
- Press Ctrl+shift+q
- Play the video
You will see below in the debug window a file being pulled. If it is an mp4 file then just copy the link address and do
wget
.
For example:
wget http://89.40.181.19/ivuqjoscyu2qedz7nljb7fjfaainuqpqufkh5xk6kkheqzdny3rzc2uhnkka/v.mp4 -O outputfile.mp4
Then your download will begin.
add a comment |
up vote
1
down vote
up vote
1
down vote
When you are using Firefox (this works for mp4 Videos)
Note: First disable your flash plugin in the plugin settings.
Then do this:
- Press Ctrl+shift+q
- Play the video
You will see below in the debug window a file being pulled. If it is an mp4 file then just copy the link address and do
wget
.
For example:
wget http://89.40.181.19/ivuqjoscyu2qedz7nljb7fjfaainuqpqufkh5xk6kkheqzdny3rzc2uhnkka/v.mp4 -O outputfile.mp4
Then your download will begin.
When you are using Firefox (this works for mp4 Videos)
Note: First disable your flash plugin in the plugin settings.
Then do this:
- Press Ctrl+shift+q
- Play the video
You will see below in the debug window a file being pulled. If it is an mp4 file then just copy the link address and do
wget
.
For example:
wget http://89.40.181.19/ivuqjoscyu2qedz7nljb7fjfaainuqpqufkh5xk6kkheqzdny3rzc2uhnkka/v.mp4 -O outputfile.mp4
Then your download will begin.
edited 2 days ago
Zanna
48.9k13123234
48.9k13123234
answered Nov 17 '15 at 9:54
maximusotepus
111
111
add a comment |
add a comment |
up vote
0
down vote
For NEJM, you can right-click the video and choose Save link as (Firefox has to save it). If it doesn't work, you can use wget
in terminal.
For this video, the URL is this.
With wget
there are two ways of downloading.
The first will keep the video file name and copy it to the current directory while rhe second will change it. /path/to/file
is the path to the renamed video.
wget [video url]
wget [video url] -o /path/to/file
If the video has special characters you can try like this (or the same but using -o
):
wget 'http://www.nejm.org/doi/video_original/10.1056/NEJMoa1414123/NEJMoa1414123_v01.mp4'
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
add a comment |
up vote
0
down vote
For NEJM, you can right-click the video and choose Save link as (Firefox has to save it). If it doesn't work, you can use wget
in terminal.
For this video, the URL is this.
With wget
there are two ways of downloading.
The first will keep the video file name and copy it to the current directory while rhe second will change it. /path/to/file
is the path to the renamed video.
wget [video url]
wget [video url] -o /path/to/file
If the video has special characters you can try like this (or the same but using -o
):
wget 'http://www.nejm.org/doi/video_original/10.1056/NEJMoa1414123/NEJMoa1414123_v01.mp4'
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
add a comment |
up vote
0
down vote
up vote
0
down vote
For NEJM, you can right-click the video and choose Save link as (Firefox has to save it). If it doesn't work, you can use wget
in terminal.
For this video, the URL is this.
With wget
there are two ways of downloading.
The first will keep the video file name and copy it to the current directory while rhe second will change it. /path/to/file
is the path to the renamed video.
wget [video url]
wget [video url] -o /path/to/file
If the video has special characters you can try like this (or the same but using -o
):
wget 'http://www.nejm.org/doi/video_original/10.1056/NEJMoa1414123/NEJMoa1414123_v01.mp4'
For NEJM, you can right-click the video and choose Save link as (Firefox has to save it). If it doesn't work, you can use wget
in terminal.
For this video, the URL is this.
With wget
there are two ways of downloading.
The first will keep the video file name and copy it to the current directory while rhe second will change it. /path/to/file
is the path to the renamed video.
wget [video url]
wget [video url] -o /path/to/file
If the video has special characters you can try like this (or the same but using -o
):
wget 'http://www.nejm.org/doi/video_original/10.1056/NEJMoa1414123/NEJMoa1414123_v01.mp4'
edited 2 days ago
Zanna
48.9k13123234
48.9k13123234
answered Mar 14 '15 at 6:10
aastefanov
988815
988815
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
add a comment |
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Right click doesn't give download option. wget doesn't work either.Please check the link for yourself if you can download.
– Br. Sayan
Mar 14 '15 at 11:08
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
Thank you! Please let me know how did you get this? In my case, right click doesn't give any option. wget is showing HTTP request sent, awaiting response... 500 Internal Server Error 2015-03-16 09:48:52 ERROR 500: Internal Server Error. Please let me know the specific wget command.
– Br. Sayan
Mar 16 '15 at 4:19
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
I don't know really. Just right clicked the video frame. You can try looking the page source for the mp4 file. For the error 500 - try waiting some time and do it again.
– aastefanov
Mar 16 '15 at 4:30
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f596618%2fhow-to-download-streaming-flash-videos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown