Video converter with directory watcher
I have a windows 7 ultimate PC setup as my media server which uses media center to push video/music/tv/etc. to different extenders including dma2100, dma2200.
I was trying to find a video conversion software that has a director watcher so it automatically converts new files in a directory to the specified video format.
The closest solution I've found was the DVRMStoolbox but I found it very complicated and couldn't exactly figure out the right process to accomplish what I'm looking for. I've also used AVS Video conversion which is very user friendly but lacks the directory watcher.
windows-media-center video-conversion media-center-extender
add a comment |
I have a windows 7 ultimate PC setup as my media server which uses media center to push video/music/tv/etc. to different extenders including dma2100, dma2200.
I was trying to find a video conversion software that has a director watcher so it automatically converts new files in a directory to the specified video format.
The closest solution I've found was the DVRMStoolbox but I found it very complicated and couldn't exactly figure out the right process to accomplish what I'm looking for. I've also used AVS Video conversion which is very user friendly but lacks the directory watcher.
windows-media-center video-conversion media-center-extender
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30
add a comment |
I have a windows 7 ultimate PC setup as my media server which uses media center to push video/music/tv/etc. to different extenders including dma2100, dma2200.
I was trying to find a video conversion software that has a director watcher so it automatically converts new files in a directory to the specified video format.
The closest solution I've found was the DVRMStoolbox but I found it very complicated and couldn't exactly figure out the right process to accomplish what I'm looking for. I've also used AVS Video conversion which is very user friendly but lacks the directory watcher.
windows-media-center video-conversion media-center-extender
I have a windows 7 ultimate PC setup as my media server which uses media center to push video/music/tv/etc. to different extenders including dma2100, dma2200.
I was trying to find a video conversion software that has a director watcher so it automatically converts new files in a directory to the specified video format.
The closest solution I've found was the DVRMStoolbox but I found it very complicated and couldn't exactly figure out the right process to accomplish what I'm looking for. I've also used AVS Video conversion which is very user friendly but lacks the directory watcher.
windows-media-center video-conversion media-center-extender
windows-media-center video-conversion media-center-extender
asked May 3 '12 at 23:15
NickNick
94872044
94872044
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30
add a comment |
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30
add a comment |
2 Answers
2
active
oldest
votes
To name three...
Mainconcept Reference supports "watch folder" for background transcoding
ProCoder 3 supports "watch folder"
Sorenson Squeeze 8 supports "watch folder"
This Thread at Videohelp.com also details a method to use Windows Media Encoder and a looping batch file to be able to do it.
use a more batch oriented method to convert via command line. Look at this page
http://www.microsoft.com/windows/windowsmedia/howto/articles/AutomatingEncoding.aspx
and the section "Using the Command Line Encoder Sample"
The latest version of wmcmd.vbs is at
http://forum.doom9.org/showthread.php?t=123812
What you'd do is to set up a looping batch file which
1) looks for the presence of an AVI in the folder
2) runs the command line encoder
3) moves the source file to a "completed" folder so it isn't encoded again
4) loops back to step 1
In general, I find that Videohelp.com is an invaluable resource for all things encoding... or video related for that matter.
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
add a comment |
Watchfolder for Handbrake is a great solution on Windows -> http://videoscripts.wordpress.com/2010/12/03/watchfolder-for-handbrake/
Preferably with an older version of HandBrake which allows you to specify an output file size (version 0.9.5 or older): http://www.videohelp.com/download/HandBrake-0.9.5-Win_GUI.exe
Use it for converting 720p MKV to MP4 files (for playback on XBOX360) with the following command:
-f mp4 --strict-anamorphic -e ffmpeg -S 4000 -a 1 -E faac -6 dpl2 -R 48 -B 320 -D 4
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%2f420323%2fvideo-converter-with-directory-watcher%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
To name three...
Mainconcept Reference supports "watch folder" for background transcoding
ProCoder 3 supports "watch folder"
Sorenson Squeeze 8 supports "watch folder"
This Thread at Videohelp.com also details a method to use Windows Media Encoder and a looping batch file to be able to do it.
use a more batch oriented method to convert via command line. Look at this page
http://www.microsoft.com/windows/windowsmedia/howto/articles/AutomatingEncoding.aspx
and the section "Using the Command Line Encoder Sample"
The latest version of wmcmd.vbs is at
http://forum.doom9.org/showthread.php?t=123812
What you'd do is to set up a looping batch file which
1) looks for the presence of an AVI in the folder
2) runs the command line encoder
3) moves the source file to a "completed" folder so it isn't encoded again
4) loops back to step 1
In general, I find that Videohelp.com is an invaluable resource for all things encoding... or video related for that matter.
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
add a comment |
To name three...
Mainconcept Reference supports "watch folder" for background transcoding
ProCoder 3 supports "watch folder"
Sorenson Squeeze 8 supports "watch folder"
This Thread at Videohelp.com also details a method to use Windows Media Encoder and a looping batch file to be able to do it.
use a more batch oriented method to convert via command line. Look at this page
http://www.microsoft.com/windows/windowsmedia/howto/articles/AutomatingEncoding.aspx
and the section "Using the Command Line Encoder Sample"
The latest version of wmcmd.vbs is at
http://forum.doom9.org/showthread.php?t=123812
What you'd do is to set up a looping batch file which
1) looks for the presence of an AVI in the folder
2) runs the command line encoder
3) moves the source file to a "completed" folder so it isn't encoded again
4) loops back to step 1
In general, I find that Videohelp.com is an invaluable resource for all things encoding... or video related for that matter.
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
add a comment |
To name three...
Mainconcept Reference supports "watch folder" for background transcoding
ProCoder 3 supports "watch folder"
Sorenson Squeeze 8 supports "watch folder"
This Thread at Videohelp.com also details a method to use Windows Media Encoder and a looping batch file to be able to do it.
use a more batch oriented method to convert via command line. Look at this page
http://www.microsoft.com/windows/windowsmedia/howto/articles/AutomatingEncoding.aspx
and the section "Using the Command Line Encoder Sample"
The latest version of wmcmd.vbs is at
http://forum.doom9.org/showthread.php?t=123812
What you'd do is to set up a looping batch file which
1) looks for the presence of an AVI in the folder
2) runs the command line encoder
3) moves the source file to a "completed" folder so it isn't encoded again
4) loops back to step 1
In general, I find that Videohelp.com is an invaluable resource for all things encoding... or video related for that matter.
To name three...
Mainconcept Reference supports "watch folder" for background transcoding
ProCoder 3 supports "watch folder"
Sorenson Squeeze 8 supports "watch folder"
This Thread at Videohelp.com also details a method to use Windows Media Encoder and a looping batch file to be able to do it.
use a more batch oriented method to convert via command line. Look at this page
http://www.microsoft.com/windows/windowsmedia/howto/articles/AutomatingEncoding.aspx
and the section "Using the Command Line Encoder Sample"
The latest version of wmcmd.vbs is at
http://forum.doom9.org/showthread.php?t=123812
What you'd do is to set up a looping batch file which
1) looks for the presence of an AVI in the folder
2) runs the command line encoder
3) moves the source file to a "completed" folder so it isn't encoded again
4) loops back to step 1
In general, I find that Videohelp.com is an invaluable resource for all things encoding... or video related for that matter.
answered May 3 '12 at 23:34
Bon GartBon Gart
12.5k11834
12.5k11834
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
add a comment |
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Wow this is great stuff, thank you very much.
– Nick
May 3 '12 at 23:41
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
Not to forget Handbrake + DropFolders @nick
– slhck
May 4 '12 at 7:15
add a comment |
Watchfolder for Handbrake is a great solution on Windows -> http://videoscripts.wordpress.com/2010/12/03/watchfolder-for-handbrake/
Preferably with an older version of HandBrake which allows you to specify an output file size (version 0.9.5 or older): http://www.videohelp.com/download/HandBrake-0.9.5-Win_GUI.exe
Use it for converting 720p MKV to MP4 files (for playback on XBOX360) with the following command:
-f mp4 --strict-anamorphic -e ffmpeg -S 4000 -a 1 -E faac -6 dpl2 -R 48 -B 320 -D 4
add a comment |
Watchfolder for Handbrake is a great solution on Windows -> http://videoscripts.wordpress.com/2010/12/03/watchfolder-for-handbrake/
Preferably with an older version of HandBrake which allows you to specify an output file size (version 0.9.5 or older): http://www.videohelp.com/download/HandBrake-0.9.5-Win_GUI.exe
Use it for converting 720p MKV to MP4 files (for playback on XBOX360) with the following command:
-f mp4 --strict-anamorphic -e ffmpeg -S 4000 -a 1 -E faac -6 dpl2 -R 48 -B 320 -D 4
add a comment |
Watchfolder for Handbrake is a great solution on Windows -> http://videoscripts.wordpress.com/2010/12/03/watchfolder-for-handbrake/
Preferably with an older version of HandBrake which allows you to specify an output file size (version 0.9.5 or older): http://www.videohelp.com/download/HandBrake-0.9.5-Win_GUI.exe
Use it for converting 720p MKV to MP4 files (for playback on XBOX360) with the following command:
-f mp4 --strict-anamorphic -e ffmpeg -S 4000 -a 1 -E faac -6 dpl2 -R 48 -B 320 -D 4
Watchfolder for Handbrake is a great solution on Windows -> http://videoscripts.wordpress.com/2010/12/03/watchfolder-for-handbrake/
Preferably with an older version of HandBrake which allows you to specify an output file size (version 0.9.5 or older): http://www.videohelp.com/download/HandBrake-0.9.5-Win_GUI.exe
Use it for converting 720p MKV to MP4 files (for playback on XBOX360) with the following command:
-f mp4 --strict-anamorphic -e ffmpeg -S 4000 -a 1 -E faac -6 dpl2 -R 48 -B 320 -D 4
answered Oct 19 '13 at 23:22
ouijaouija
11
11
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%2f420323%2fvideo-converter-with-directory-watcher%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
What an awesome question. Great idea, glad this got answers.
– bwerks
Dec 27 '12 at 19:30