How can I find the URL for a flash video in Firefox?
At Nasul TV is a TV recorded show, free.
I want to be able to find the URL for the video and then to use wget to download it. How can I achieve this?
url
add a comment |
At Nasul TV is a TV recorded show, free.
I want to be able to find the URL for the video and then to use wget to download it. How can I achieve this?
url
1
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00
add a comment |
At Nasul TV is a TV recorded show, free.
I want to be able to find the URL for the video and then to use wget to download it. How can I achieve this?
url
At Nasul TV is a TV recorded show, free.
I want to be able to find the URL for the video and then to use wget to download it. How can I achieve this?
url
url
edited Nov 21 '13 at 16:22
Flyk
1,38931624
1,38931624
asked May 14 '13 at 18:49
user157244user157244
1113
1113
1
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00
add a comment |
1
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00
1
1
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00
add a comment |
2 Answers
2
active
oldest
votes
Running following command in terminal:
sudo apt-get install flashplayer-installer
Will let you watch videos in firefox.
add a comment |
More detail is needed. What do you mean by "viewing a link"? Normally you can find the link to video files in the page source, or via the Firebug network tab (if you don't have Firebug, you should get it). It should be something that ends in ".flv", or sometimes ".mp4", and once you have it it's easy to download: just open a terminal and type:
wget "http://www.nasul.tv/wp-content/uploads/2013/05/nasul1305.m4v" -O filename.m4v
(with the quotes).
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
|
show 3 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f295424%2fhow-can-i-find-the-url-for-a-flash-video-in-firefox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Running following command in terminal:
sudo apt-get install flashplayer-installer
Will let you watch videos in firefox.
add a comment |
Running following command in terminal:
sudo apt-get install flashplayer-installer
Will let you watch videos in firefox.
add a comment |
Running following command in terminal:
sudo apt-get install flashplayer-installer
Will let you watch videos in firefox.
Running following command in terminal:
sudo apt-get install flashplayer-installer
Will let you watch videos in firefox.
answered May 14 '13 at 19:15
Bhavin DoshiBhavin Doshi
1,8181733
1,8181733
add a comment |
add a comment |
More detail is needed. What do you mean by "viewing a link"? Normally you can find the link to video files in the page source, or via the Firebug network tab (if you don't have Firebug, you should get it). It should be something that ends in ".flv", or sometimes ".mp4", and once you have it it's easy to download: just open a terminal and type:
wget "http://www.nasul.tv/wp-content/uploads/2013/05/nasul1305.m4v" -O filename.m4v
(with the quotes).
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
|
show 3 more comments
More detail is needed. What do you mean by "viewing a link"? Normally you can find the link to video files in the page source, or via the Firebug network tab (if you don't have Firebug, you should get it). It should be something that ends in ".flv", or sometimes ".mp4", and once you have it it's easy to download: just open a terminal and type:
wget "http://www.nasul.tv/wp-content/uploads/2013/05/nasul1305.m4v" -O filename.m4v
(with the quotes).
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
|
show 3 more comments
More detail is needed. What do you mean by "viewing a link"? Normally you can find the link to video files in the page source, or via the Firebug network tab (if you don't have Firebug, you should get it). It should be something that ends in ".flv", or sometimes ".mp4", and once you have it it's easy to download: just open a terminal and type:
wget "http://www.nasul.tv/wp-content/uploads/2013/05/nasul1305.m4v" -O filename.m4v
(with the quotes).
More detail is needed. What do you mean by "viewing a link"? Normally you can find the link to video files in the page source, or via the Firebug network tab (if you don't have Firebug, you should get it). It should be something that ends in ".flv", or sometimes ".mp4", and once you have it it's easy to download: just open a terminal and type:
wget "http://www.nasul.tv/wp-content/uploads/2013/05/nasul1305.m4v" -O filename.m4v
(with the quotes).
edited May 14 '13 at 19:47
answered May 14 '13 at 18:58
MatthewMatthew
111
111
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
|
show 3 more comments
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
I got Firebug but it didn't help. At that link above, there is a video. I'd like to have it's URL. isn't that something like http:..... ? There isn't any .flv there or .mp4, you could check for yourself.
– user157244
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
Why am I being downvoted? He asked how to use "uget" (which I assumed meant wget) to download it, that's what I'm providing instructions to do.
– Matthew
May 14 '13 at 19:27
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
@user157244 are you actually talking about having the file on your computer to keep, or just watching in your browser? can you post the link to the page the video is on?
– Matthew
May 14 '13 at 19:29
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
nasul.tv Here it is, I also posted it in the question. Of course I want to download it.
– user157244
May 14 '13 at 19:35
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
link_italic_ bold 'code'
– user157244
May 14 '13 at 19:39
|
show 3 more comments
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f295424%2fhow-can-i-find-the-url-for-a-flash-video-in-firefox%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
1
You probably need to install flash player from the software center to view videos online.
– w4etwetewtwet
May 14 '13 at 19:00