How to quickly watch security camera footage?Webcam security camera software that runs as a serviceHow do I...
What is this high flying aircraft over Pennsylvania?
Why would five hundred and five same as one?
Offset in split text content
What should be the ideal length of sentences in a blog post for ease of reading?
Are all namekians brothers?
What is the purpose of using a decision tree?
Do native speakers use "ultima" and "proxima" frequently in spoken English?
Trouble reading roman numeral notation with flats
If the Dominion rule using their Jem'Hadar troops, why is their life expectancy so low?
Why is participating in the European Parliamentary elections used as a threat?
Why didn't Voldemort know what Grindelwald looked like?
Would a primitive species be able to learn English from reading books alone?
Mortal danger in mid-grade literature
Put the phone down / Put down the phone
Air travel with refrigerated insulin
How to test the sharpness of a knife?
Should a narrator ever describe things based on a character's view instead of facts?
Connection Between Knot Theory and Number Theory
What can I do if I am asked to learn different programming languages very frequently?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
Do people actually use the word "kaputt" in conversation?
Make a Bowl of Alphabet Soup
Do I have to take mana from my deck or hand when tapping this card?
What is the tangent at a sharp point on a curve?
How to quickly watch security camera footage?
Webcam security camera software that runs as a serviceHow do I get old footage off an old (tape-based) video camera?VLC (Server) re-stream Security Camera FeedRecording game footage with ffmpeg - issueshow to watch / convert cctv footage with apparently no extension on it?Access to IP camera streamWatch movie while downloading itDisplay issue NVIDIA GeForce GTX 960 on HDMI - blue tint on some 1080p web videos/video files/games/etcHow to watch 360 videos on LinuxHow to convert raw 264 file to MP4 provided by Luowice IP camera?
I have an IP camera which records 10s .AVI video clips and uploads to my FTP server once motion is detected. So at the end of the day, I have hundreds of small video clips on my FTP server.
I want to quickly fast-forward through them. I tried drag-dropping all videos into VLC, which is fine but it doesn't work well when I increase playback speed to more than 10x.
Is there a better way of viewing all of these videos at an increased playback rate?
video vlc-media-player
|
show 1 more comment
I have an IP camera which records 10s .AVI video clips and uploads to my FTP server once motion is detected. So at the end of the day, I have hundreds of small video clips on my FTP server.
I want to quickly fast-forward through them. I tried drag-dropping all videos into VLC, which is fine but it doesn't work well when I increase playback speed to more than 10x.
Is there a better way of viewing all of these videos at an increased playback rate?
video vlc-media-player
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
1
You can probably stitch the videos together withavconf
orffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.
– LawrenceC
May 23 '16 at 12:43
you can try to concatenate all files into single one. Since those are avi you can do following on linuxcat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it usingtype file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can usecat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25
|
show 1 more comment
I have an IP camera which records 10s .AVI video clips and uploads to my FTP server once motion is detected. So at the end of the day, I have hundreds of small video clips on my FTP server.
I want to quickly fast-forward through them. I tried drag-dropping all videos into VLC, which is fine but it doesn't work well when I increase playback speed to more than 10x.
Is there a better way of viewing all of these videos at an increased playback rate?
video vlc-media-player
I have an IP camera which records 10s .AVI video clips and uploads to my FTP server once motion is detected. So at the end of the day, I have hundreds of small video clips on my FTP server.
I want to quickly fast-forward through them. I tried drag-dropping all videos into VLC, which is fine but it doesn't work well when I increase playback speed to more than 10x.
Is there a better way of viewing all of these videos at an increased playback rate?
video vlc-media-player
video vlc-media-player
edited Oct 25 '18 at 12:27
bertieb
5,662112542
5,662112542
asked May 23 '16 at 11:35
MatasMatas
1063
1063
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
1
You can probably stitch the videos together withavconf
orffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.
– LawrenceC
May 23 '16 at 12:43
you can try to concatenate all files into single one. Since those are avi you can do following on linuxcat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it usingtype file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can usecat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25
|
show 1 more comment
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
1
You can probably stitch the videos together withavconf
orffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.
– LawrenceC
May 23 '16 at 12:43
you can try to concatenate all files into single one. Since those are avi you can do following on linuxcat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it usingtype file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can usecat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
1
1
You can probably stitch the videos together with
avconf
or ffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.– LawrenceC
May 23 '16 at 12:43
You can probably stitch the videos together with
avconf
or ffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.– LawrenceC
May 23 '16 at 12:43
you can try to concatenate all files into single one. Since those are avi you can do following on linux
cat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it using type file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can use cat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25
you can try to concatenate all files into single one. Since those are avi you can do following on linux
cat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it using type file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can use cat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25
|
show 1 more comment
1 Answer
1
active
oldest
votes
is is possible to fast forward to the time that a particular area has movement? what software can do that?
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1079866%2fhow-to-quickly-watch-security-camera-footage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
is is possible to fast forward to the time that a particular area has movement? what software can do that?
New contributor
add a comment |
is is possible to fast forward to the time that a particular area has movement? what software can do that?
New contributor
add a comment |
is is possible to fast forward to the time that a particular area has movement? what software can do that?
New contributor
is is possible to fast forward to the time that a particular area has movement? what software can do that?
New contributor
New contributor
answered 2 mins ago
JohnJohn
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1079866%2fhow-to-quickly-watch-security-camera-footage%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
If you load the clips into a video editor, you can swipe through the clips at any speed you want, though I don't see the value of playing a 10 second clip in less than a second.
– AFH
May 23 '16 at 12:04
My camera can't record and upload clips longer than 10 seconds. So 5minutes of action becomes 30 video clips.
– Matas
May 23 '16 at 12:10
In that case a video editor seems the right solution: copy all the clips in succession on to the time-line and swipe through the combined stream with the mouse.
– AFH
May 23 '16 at 12:15
1
You can probably stitch the videos together with
avconf
orffmpeg
. Not sure of the exact options but it seems like something ffmpeg could do.– LawrenceC
May 23 '16 at 12:43
you can try to concatenate all files into single one. Since those are avi you can do following on linux
cat file1.avi file2.avi file3.avi > concat.avi
on windows you can do it usingtype file1.avi file2.avi file3.avi > concat.avi
if the filenames have numbers and are sorted in your filesystem you can usecat *.avi > concat.avi
– incBrain
May 24 '16 at 5:25