Hello
I got one weird little problem when i tried to webcast today, our transcoder stops after about one our. both live stream and the recording part is stopped, the source stream keeps going. i can reproduce this and i got two different “error” messages
I’m running Wowza 4.0.3 i have started to remove some of my modules i use. But if someone could shed some lights on the error messages i would be nice since it takes an hour for me to reproduce the error after each change.
This is the first one
WARN server comment - TranscodingSession.close[nyhem-broadcast/_definst_/nyhemshallen] Timeout waiting for transcoder workers to shutdown: 3000
WARN server comment - TranscodingSession.close[nyhem-broadcast/_definst_/nyhemshallen] Stuck worker: _defaultVHost_:nyhem-broadcast/_definst_/nyhemshallen:360p
WARN server comment - TranscodingSession#DelayedTranscoderShutdown.run[nyhem-broadcast/_definst_/nyhemshallen]: Delayed shutdown failed. Over time limite: 120000
WARN server comment - TranscodingSession#DelayedTranscoderShutdown.run[nyhem-broadcast/_definst_/nyhemshallen] Stuck worker: _defaultVHost_:nyhem-broadcast/_definst_/nyhemshallen:360p
This is the second one
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Video behind filter state change. New state: SKIP1FRAME
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Video behind filter state change. New state: SKIP2FRAME
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Video behind filter state change. New state: SKIP4FRAME
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Video behind filter state change. New state: KEYFRAMESONLY
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Video behind filter state change. New state: ALLFRAMESOFF
INFO server comment - TranscodingSession.updateBehindFilter[nyhem-broadcast/_definst_/nyhemshallen]: Audio behind filter state change. New state: ALLFRAMESOFF
This is my transcode.xml
<Root>
<Transcode>
<Encodes>
<Encode>
<Enable>true</Enable>
<Name>576p</Name>
<StreamName>mp4:${SourceStreamName}_576p</StreamName>
<Video>
<Implementation>quicksync</Implementation>
<Codec>PassThru</Codec>
<Bitrate>${SourceVideoBitrate}</Bitrate>
<Parameters>
</Parameters>
</Video>
<Audio>
<Codec>AAC</Codec>
<Bitrate>192000</Bitrate>
<Parameters>
</Parameters>
</Audio>
</Encode>
<Encode>
<Enable>true</Enable>
<Name>480p</Name>
<StreamName>mp4:${SourceStreamName}_480p</StreamName>
<Video>
<Implementation>quicksync</Implementation>
<Codec>H.264</Codec>
<Bitrate>900000</Bitrate>
<FrameSize>
<FitMode>match-source</FitMode>
<Width>852</Width>
<Height>480</Height>
</FrameSize>
<Profile>baseline</Profile>
<KeyFrameInterval>
<FollowSource>true</FollowSource>
</KeyFrameInterval>
<Parameters>
</Parameters>
</Video>
<Audio>
<Codec>AAC</Codec>
<Bitrate>128000</Bitrate>
<Parameters>
</Parameters>
</Audio>
</Encode>
<Encode>
<Enable>true</Enable>
<Name>360p</Name>
<StreamName>mp4:${SourceStreamName}_360p</StreamName>
<Video>
<Implementation>default</Implementation>
<Codec>H.264</Codec>
<Bitrate>500000</Bitrate>
<FrameSize>
<FitMode>match-source</FitMode>
<Width>640</Width>
<Height>360</Height>
</FrameSize>
<Profile>baseline</Profile>
<KeyFrameInterval>
<FollowSource>true</FollowSource>
</KeyFrameInterval>
<Parameters>
</Parameters>
</Video>
<Audio>
<Codec>AAC</Codec>
<Bitrate>96000</Bitrate>
<Parameters>
<Parameter>
<Name>mainconcept.hf_cutoff</Name>
<Value>15000</Value>
<Type>Integer</Type>
</Parameter>
</Parameters>
</Audio>
</Encode>
<Encode>
<Enable>true</Enable>
<Name>270p</Name>
<StreamName>mp4:${SourceStreamName}_270p</StreamName>
<Video>
<Implementation>quicksync</Implementation>
<Codec>H.264</Codec>
<Bitrate>300000</Bitrate>
<FrameSize>
<FitMode>match-source</FitMode>
<Width>480</Width>
<Height>270</Height>
</FrameSize>
<Profile>baseline</Profile>
<KeyFrameInterval>
<FollowSource>true</FollowSource>
</KeyFrameInterval>
<Parameters>
</Parameters>
</Video>
<Audio>
<Codec>AAC</Codec>
<Bitrate>64000</Bitrate>
<Parameters>
<Parameter>
<Name>mainconcept.hf_cutoff</Name>
<Value>12000</Value>
<Type>Integer</Type>
</Parameter>
</Parameters>
</Audio>
</Encode>
</Encodes>
<Decode>
<Video>
<Deinterlace>false</Deinterlace>
<Parameters>
</Parameters>
</Video>
</Decode>
<Properties>
</Properties>
</Transcode>
</Root>