Windows server crashs in video transcode during
I'm using ffmpeg for transcoding of my videos on a HP Blade dedicated server with these details:
OS: Windows Server 2012 R2 64Bit
CPU: Intel XEON X5650
RAM: 16GB
Hard disk: A sas normal disk
This command is a sample for creating qualities which has 4K as top level and I use this command for creating lower qualities from that as parallel at the same time.
ffmpeg -i input.mp4 -filter_complex
[0:v]split=4[s0][s1][s2][s3];
[s0]scale=uhd2160[v0];
[s1]scale=hd1080[v1];
[s2]scale=hd720[v2];
[s3]scale=hd480[v3];
[s4]scale=nhd[v4];
[s5]scale=cga[v5]
-map [v0] -map [v1] -map [v2] -map [v3] -map [v4] -map [v5] -map 0:a
-c:v libx264 -c:a aac -f tee -g 48 -threads 0
"[select='v:0,a':f=hls:hls_list_size=0:hls_time=6]../video/2160p/out.m3u8|
[select='v:1,a':f=hls:hls_list_size=0:hls_time=6]../video/1080p/out.m3u8|
[select='v:2,a':f=hls:hls_list_size=0:hls_time=6]../video/720p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/360p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/200p/out.m3u8"
Some times in transcoding time windows goes to reconnecting and count up to 20 and then goes to black screen. I cannot find anythings in windows logs. And finally I restart server from button of that server. What's hapenning? How can I find a clue, about this issue?
Any one know anything about this issue?
video ffmpeg windows-server-2012-r2
|
show 2 more comments
I'm using ffmpeg for transcoding of my videos on a HP Blade dedicated server with these details:
OS: Windows Server 2012 R2 64Bit
CPU: Intel XEON X5650
RAM: 16GB
Hard disk: A sas normal disk
This command is a sample for creating qualities which has 4K as top level and I use this command for creating lower qualities from that as parallel at the same time.
ffmpeg -i input.mp4 -filter_complex
[0:v]split=4[s0][s1][s2][s3];
[s0]scale=uhd2160[v0];
[s1]scale=hd1080[v1];
[s2]scale=hd720[v2];
[s3]scale=hd480[v3];
[s4]scale=nhd[v4];
[s5]scale=cga[v5]
-map [v0] -map [v1] -map [v2] -map [v3] -map [v4] -map [v5] -map 0:a
-c:v libx264 -c:a aac -f tee -g 48 -threads 0
"[select='v:0,a':f=hls:hls_list_size=0:hls_time=6]../video/2160p/out.m3u8|
[select='v:1,a':f=hls:hls_list_size=0:hls_time=6]../video/1080p/out.m3u8|
[select='v:2,a':f=hls:hls_list_size=0:hls_time=6]../video/720p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/360p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/200p/out.m3u8"
Some times in transcoding time windows goes to reconnecting and count up to 20 and then goes to black screen. I cannot find anythings in windows logs. And finally I restart server from button of that server. What's hapenning? How can I find a clue, about this issue?
Any one know anything about this issue?
video ffmpeg windows-server-2012-r2
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
@harrymc Yes I have
– parsa
Feb 9 at 10:32
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41
|
show 2 more comments
I'm using ffmpeg for transcoding of my videos on a HP Blade dedicated server with these details:
OS: Windows Server 2012 R2 64Bit
CPU: Intel XEON X5650
RAM: 16GB
Hard disk: A sas normal disk
This command is a sample for creating qualities which has 4K as top level and I use this command for creating lower qualities from that as parallel at the same time.
ffmpeg -i input.mp4 -filter_complex
[0:v]split=4[s0][s1][s2][s3];
[s0]scale=uhd2160[v0];
[s1]scale=hd1080[v1];
[s2]scale=hd720[v2];
[s3]scale=hd480[v3];
[s4]scale=nhd[v4];
[s5]scale=cga[v5]
-map [v0] -map [v1] -map [v2] -map [v3] -map [v4] -map [v5] -map 0:a
-c:v libx264 -c:a aac -f tee -g 48 -threads 0
"[select='v:0,a':f=hls:hls_list_size=0:hls_time=6]../video/2160p/out.m3u8|
[select='v:1,a':f=hls:hls_list_size=0:hls_time=6]../video/1080p/out.m3u8|
[select='v:2,a':f=hls:hls_list_size=0:hls_time=6]../video/720p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/360p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/200p/out.m3u8"
Some times in transcoding time windows goes to reconnecting and count up to 20 and then goes to black screen. I cannot find anythings in windows logs. And finally I restart server from button of that server. What's hapenning? How can I find a clue, about this issue?
Any one know anything about this issue?
video ffmpeg windows-server-2012-r2
I'm using ffmpeg for transcoding of my videos on a HP Blade dedicated server with these details:
OS: Windows Server 2012 R2 64Bit
CPU: Intel XEON X5650
RAM: 16GB
Hard disk: A sas normal disk
This command is a sample for creating qualities which has 4K as top level and I use this command for creating lower qualities from that as parallel at the same time.
ffmpeg -i input.mp4 -filter_complex
[0:v]split=4[s0][s1][s2][s3];
[s0]scale=uhd2160[v0];
[s1]scale=hd1080[v1];
[s2]scale=hd720[v2];
[s3]scale=hd480[v3];
[s4]scale=nhd[v4];
[s5]scale=cga[v5]
-map [v0] -map [v1] -map [v2] -map [v3] -map [v4] -map [v5] -map 0:a
-c:v libx264 -c:a aac -f tee -g 48 -threads 0
"[select='v:0,a':f=hls:hls_list_size=0:hls_time=6]../video/2160p/out.m3u8|
[select='v:1,a':f=hls:hls_list_size=0:hls_time=6]../video/1080p/out.m3u8|
[select='v:2,a':f=hls:hls_list_size=0:hls_time=6]../video/720p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/360p/out.m3u8|
[select='v:3,a':f=hls:hls_list_size=0:hls_time=6]video/200p/out.m3u8"
Some times in transcoding time windows goes to reconnecting and count up to 20 and then goes to black screen. I cannot find anythings in windows logs. And finally I restart server from button of that server. What's hapenning? How can I find a clue, about this issue?
Any one know anything about this issue?
video ffmpeg windows-server-2012-r2
video ffmpeg windows-server-2012-r2
asked Feb 9 at 6:52
parsaparsa
1063
1063
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
@harrymc Yes I have
– parsa
Feb 9 at 10:32
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41
|
show 2 more comments
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
@harrymc Yes I have
– parsa
Feb 9 at 10:32
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
@harrymc Yes I have
– parsa
Feb 9 at 10:32
@harrymc Yes I have
– parsa
Feb 9 at 10:32
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41
|
show 2 more comments
1 Answer
1
active
oldest
votes
Tools to analyze such a problem:
- Look in the Event Viewer for information of what happened.
- Use BlueScreenView
to see if you had Windows crashes and for help in analyzing them.
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't updatehal.dll
- it's an essential Windows component that only Windows can update. What was done?
– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
|
show 5 more comments
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%2f1403778%2fwindows-server-crashs-in-video-transcode-during%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
Tools to analyze such a problem:
- Look in the Event Viewer for information of what happened.
- Use BlueScreenView
to see if you had Windows crashes and for help in analyzing them.
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't updatehal.dll
- it's an essential Windows component that only Windows can update. What was done?
– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
|
show 5 more comments
Tools to analyze such a problem:
- Look in the Event Viewer for information of what happened.
- Use BlueScreenView
to see if you had Windows crashes and for help in analyzing them.
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't updatehal.dll
- it's an essential Windows component that only Windows can update. What was done?
– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
|
show 5 more comments
Tools to analyze such a problem:
- Look in the Event Viewer for information of what happened.
- Use BlueScreenView
to see if you had Windows crashes and for help in analyzing them.
Tools to analyze such a problem:
- Look in the Event Viewer for information of what happened.
- Use BlueScreenView
to see if you had Windows crashes and for help in analyzing them.
answered Feb 14 at 9:23
harrymcharrymc
262k14271578
262k14271578
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't updatehal.dll
- it's an essential Windows component that only Windows can update. What was done?
– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
|
show 5 more comments
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't updatehal.dll
- it's an essential Windows component that only Windows can update. What was done?
– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
After about 1 week, the server crashed again
– parsa
Feb 18 at 5:35
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
These are analysis tools. But what have you found? What does BlueScreenView show? Add screenshots if you want us to have a look. Or use another conversion utility.
– harrymc
Feb 18 at 7:39
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
It showed that log of last crashed that related to hal.dll. I Update hal.dll, but cashing occured again, After last crash, in BlueScreenView there are not any new crash log. But it occured again
– parsa
Feb 19 at 15:34
You can't update
hal.dll
- it's an essential Windows component that only Windows can update. What was done?– harrymc
Feb 19 at 16:06
You can't update
hal.dll
- it's an essential Windows component that only Windows can update. What was done?– harrymc
Feb 19 at 16:06
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
In some servers,hal.dll was update, and in some of servers os couldn't run
– parsa
Feb 20 at 6:33
|
show 5 more comments
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%2f1403778%2fwindows-server-crashs-in-video-transcode-during%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
Is it a single command? If yes then add backslash after every line and use it from a batch file.
– Biswapriyo
Feb 9 at 8:19
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. See Merge my accounts to get your accounts merged, which will solve the problem.
– fixer1234
Feb 9 at 8:57
Do you have enough free disk space on the system disk?
– harrymc
Feb 9 at 10:03
@harrymc Yes I have
– parsa
Feb 9 at 10:32
Ideas: Look in the Event Viewer for information of what happened. Use BlueScreenView to see if you had Windows crashes and to analyze them.
– harrymc
Feb 9 at 10:41