ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Discussion of the HandBrake command line interface (CLI)
Forum rules
An Activity Log is required for support requests. Please read How-to get an activity log? for details on how and why this should be provided.
Post Reply
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

I have no idea what this means, there's no reference in the error. A handbrake script for mythtv stopped working with an update. Can anyone tell me what is causing this error?

Code: Select all

 

#!/bin/bash

###################################################
#
# mythconvert.sh
# A utility to convert recordings from mythtv as a user job
# using HandbrakeCLI
#
# Dominique Tardif
# March 2013
#
###################################################
#arguments order:
# 1 - %JOBID% : job id as given by mythtv
# 2- %DIR%: input directory as given by mythtv
# 3- %FILE%: input file as given by mythtv
# 4- %TITLE%: show title as given by mythtv
# 5 - %SUBTITLE%: show subtitle as given by mythtv -> this is optionnal
#	In the absence of a subtitle, could also be a handbrake preset in form of --preset=\"PRESET\"
# 6 - Handbrake preset -> this is optionnal
#	Should be of form --preset=\"PRESET\"


###################################################
#
# Script configuration section
#
###################################################

#Values for transcoder
#
# niceValue : nice value for encoding job. Default: 15
# transcodeOptions :   command line options for handbrake.
#				This will be overwritten if a handbrake preset is specified with the command --preset=\"PRESET\"
#				Be sure to escape " as written : \"
#				Default: --format mkv --two-pass --turbo --vb 1500
# outputExtension: Desired output file extension, without period. Default: mkv
niceValue="15"
transcodeOptions="--format mkv --two-pass --turbo --vb 1500"
outputExtension="mp4"

#Change permissions of output file if desired, set to 1 to enable
chmodON="0"
chmodMOD="644"

#Folder for output - do not add trailing slash
outputFolder="/media/RAID/mythtv/handbraked"

#Enter mythtv database information here
dbServer="localhost"
dbUser="root"
dbPwd=""
dbName="mythconverg"

###################################################
#
# Script internal variables - do not edit
#
###################################################
id="$1"
preset='(--preset=".*")'
inputFile="$2/$3"
outputFile=""
title="$4"
subtitle="$5"

statusStarting=3
statusRunning=4
statusStopping=5
statusPaused=6
statusErroring=8
statusDone=256
statusFinished=272
statusErrored=304

currentCommand=""
newCommand=""
encodePID=""

# getCommand - get command set by mythtv in jobqueue table
# Parameters : none
getCommand()
{
	newCommand=$(echo "SELECT cmds FROM jobqueue WHERE id='$id'" | mysql -h $dbServer -u $dbUser --password=$dbPwd $dbName | tail -1)
}

# setStatus - sets current job status in jobqueue table
# Parameters: takes one parameter as integer - see internal variables for status definitions
setStatus()
{
	status=$1
	echo "UPDATE jobqueue SET status='$status' WHERE id='$id'" | mysql -h $dbServer -u $dbUser --password=$dbPwd $dbName
}

# updateComment - changes the comment for the running job in jobqueue table
# Parameters: takes one parameter as string 
updateComment()
{
	comment=$1
	echo "UPDATE jobqueue SET comment='$comment' WHERE id='$id'" | mysql -h $dbServer -u $dbUser --password=$dbPwd $dbName
}

# startEncode - starthe actual encoding when getCommand returns 0
# Parameters: none 
startEncode()
{
	setStatus $statusStarting
	updateComment "starting mv2vids job with id $id"
	nice -n $niceValue HandBrakeCLI $transcodeOptions	-i "$inputFile" -o "$outputFile" > /tmp/mv2vids.log 2> /tmp/mv2vids.err.log &
	encodePID=$!
	setStatus $statusRunning
	updateComment "Job id $id is running"
}

# stopEncode - stop the encoding when getCommand returns 4
# Parameters: none 
stopEncode()
{
	setStatus $statusStopping
	updateComment "stoping mv2vids job with id $id"
	kill -15 $encodePID
	tryKill=$?
	if [ $tryKill -eq -1 ]
		then error "Could not cleanly terminate process"
	fi
	rm /tmp/mv2vids.log
	setStatus $statusDone
	updateComment "Job stopped"
}

# pause - pause the encoding when getCommand returns 1
# Parameters: none 
pause()
{
	kill -19 $encodePID
	setStatus $statusPaused
	updateComment "Job id $id is paused"
}

# resume - resume the encoding when getCommand returns 2
# Parameters: none 
resume()
{
	setStatus $statusStarting
	updateComment "Resuming mv2vids job with id $id"
	kill -18 $encodePID
	setStatus $statusRunning
	updateComment "Job id $id is running"
}

# error - exits script when error
# Parameters: takes one string to send back to mythtv as error message
error()
{
	setStatus $statusErroring
	updateComment "mv2vids job with id $id encountered an error"
	setStatus $statusErrored
	updateComment "$1"
	if [ -n "$encodePID" ]
		then kill -9 $encodePID
	fi
	#Un-comment next line to remove log file
	#Kept by default to see if there is an error
	#rm /tmp/mv2vids.log
	exit 1
}

# restartEncode - stops current job and restart it
# Parameters: none
restart()
{
	setStatus $statusStopping
	updateComment "mv2vids job with id $id is stoping for a restart"
	stopEncode
	startEncode
}

# main - controls job flow
# Parameters: takes two parameters
# 1 - Recording title 
# 2 - Recording subtitle

main()
{
	getCommand
	currentCommand=$newCommand
	if [ "$currentCommand -eq $0" ] #Verify if job is set to run in mythtv database
		then 
		if [ -n "$2" ] #Verify if there is a subtitle attached to the job, set outputFile accordingly
			then
			outputFile="$outputFolder/$1 - $2.$outputExtension"
			startEncode
		else
			if [ -n "$1" ]
				then
				outputFile="$outputFolder/$1.$outputExtension"
				startEncode
			else
				error "Not enough parameters, should have ID,DIR,FILE,TITLE,SUBTITLE(optional). Check job configuration in mythtv"
			fi
		fi
	else error "Job $id not set to run in jobqueue"
	fi
	
	#Main control loop - checks if process is running and if command change in mythtv database
	
	kill -0 $encodePID
	jobRunning=$?
	while [ $jobRunning -eq 0 ]
	do
		getCommand
		currentCommand=$newCommand
		case "$currentCommand" in
			"0" )
			progress=$(strings /tmp/mv2vids.log | tail -1 | grep "" | tail -1)
			updateComment "$progress"
			;;
			"4" )
			stopEncode
			exit 0
			;;
			"1" )
			pause
			;;
			"2" )
			resume
			;;
		esac
		sleep 10
		kill -0 $encodePID
		jobRunning=$?
	done
	setStatus $statusFinished
	updateComment "Job successful"
	if [ "$chmodON" -eq "1" ]
		then chmod $chmodMOD $outputFile
	fi
	exit 0
	
}

#Check is user entered --preset and overwrite default transcodeOptions
if [ -n "$6" ]
	then
	if [[ $6 =~ $preset ]]
		then transcodeOptions="$6"
	fi
else
	if [ -n "$5" ]
		then
		if [[ $5 =~ $preset ]]
			then
			transcodeOptions="$5"
			subtitle=""
		fi
	fi	
fi	

#This line is simply to start the main function, passing title and subtitle as arguments
main "$title" "$subtitle"
 
 
 
Woodstock
Veteran User
Posts: 4614
Joined: Tue Aug 27, 2013 6:39 am

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Woodstock »

We need the log from handbrake, not the script from mythtv.

You can log the output by adding "2>logfilename" on the line that invokes handbrake.
mduell
Veteran User
Posts: 8187
Joined: Sat Apr 21, 2007 8:54 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by mduell »

Activity Log is required for support requests.
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

Woodstock wrote: Wed Mar 08, 2017 9:08 pm We need the log from handbrake, not the script from mythtv.

You can log the output by adding "2>logfilename" on the line that invokes handbrake.
Ok, give me a little bit and I'll see if I can get a log going.
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

Code: Select all

[mpeg4 @ 0x7efd58041aa0] AVFrame.format is not set
[mpeg4 @ 0x7efd58041aa0] AVFrame.width or height is not set
[mpeg4 @ 0x7efd58041aa0] AVFrame.format is not set
[mpeg4 @ 0x7efd58041aa0] AVFrame.width or height is not set
[16:46:27] work: average encoding speed for job is 117.012512 fps
[16:46:27] sync: got 215756 frames, 215045 expected
Encoding: task 1 of 2, 100.00 %[16:46:27] render: lost time: 0 (0 frames)
[16:46:27] render: gained time: 0 (0 frames) (0 not accounted for)
[16:46:27] mpeg2video-decoder done: 215757 frames, 0 decoder errors, 0 drops
[16:46:27] ac3-decoder done: 0 frames, 0 decoder errors, 0 drops
[aac @ 0x7efd587d8220] Qavg: 670.899
[aac @ 0x7efd587d8220] 1 frames left in the queue on closing
[16:46:27] stream: 215760 good frames, 41 errors (0%)
[16:46:27] starting job
[16:46:27] work: mixdown not specified, track 1 setting mixdown Dolby Pro Logic II
[16:46:27] work: bitrate not specified, track 1 setting bitrate 160 Kbps
[16:46:27] sync: expecting 215756 video frames
[16:46:27] job configuration:
[16:46:27]  * source
[16:46:27]    + /media/RAID/mythtv/recordings/1221_20170308120000.ts
[16:46:27]    + title 1, chapter(s) 1 to 1
[16:46:27]  * destination
[16:46:27]    + /media/RAID/mythtv/handbraked/CBSThisMorning.mp4
[16:46:27]    + container: MPEG-4 (libavformat)
[16:46:27]  * video track
[16:46:27]    + decoder: mpeg2video
[16:46:27]      + bitrate 200 kbps
[16:46:27]    + filters
[16:46:27]      + Framerate Shaper (0:27000000:900900)
[16:46:27]        + frame rate: same as source (around 29.970 fps)
[16:46:27]      + Crop and Scale (1920:1078:2:0:0:0)
[16:46:27]        + source: 1920 * 1080, crop (2/0/0/0): 1920 * 1078, scale: 1920 * 1078
[16:46:27]    + dimensions: 1920 * 1078, mod 0
[16:46:27]    + encoder: MPEG-4 (libavcodec)
[16:46:27]      + bitrate: 1000 kbps, pass: 2
[16:46:27]  * audio track 1
[16:46:27]    + decoder: English (AC3) (5.1 ch) (track 1, id 0x34)
[16:46:27]      + bitrate: 384 kbps, samplerate: 48000 Hz
[16:46:27]    + mixdown: Dolby Pro Logic II
[16:46:27]    + encoder: AAC (libavcodec)
[16:46:27]      + bitrate: 160 kbps, samplerate: 48000 Hz
[16:46:27] file is MPEG Transport Stream with 188 byte packets offset 0 bytes
[16:46:27] encavcodecInit: MPEG-4 ASP encoder
[16:46:27] reader: first SCR 3610211137 id 0x31 DTS 3610245697
[16:46:27] encavcodec: truncating framerate 6749906 / 225225
[16:46:27] mpeg2video: "Chapter 1" (1) at frame 0 time 9009
Encoding: task 2 of 2, 0.00 %[mpeg4 @ 0x7efd580402e0] [lavc rc] Error: bitrate too low for this video with these parameters.
[16:46:31] encavcodecInit: avcodec_open failed
[16:46:31] encavcodecaInit: Unknown avcodec option stereo_mode
[16:46:31] sync: first pts is 9009
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.07 %ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.15 %ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.21 %ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.28 %ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.37 % (157.32 fps, avg 160.33 fps, ETA 00h22m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.44 % (157.72 fps, avg 159.64 fps, ETA 00h22m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 167 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.51 % (162.25 fps, avg 161.03 fps, ETA 00h22m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 171 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.58 % (165.56 fps, avg 162.57 fps, ETA 00h22m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.67 % (166.72 fps, avg 162.29 fps, ETA 00h22m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.74 % (163.35 fps, avg 161.80 fps, ETA 00h22m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 171 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.81 % (163.62 fps, avg 162.89 fps, ETA 00h21m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.90 % (164.45 fps, avg 162.88 fps, ETA 00h21m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 0.97 % (167.33 fps, avg 163.18 fps, ETA 00h21m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.04 % (164.84 fps, avg 163.34 fps, ETA 00h21m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.13 % (168.16 fps, avg 164.01 fps, ETA 00h21m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.20 % (165.95 fps, avg 163.73 fps, ETA 00h21m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.27 % (163.95 fps, avg 163.45 fps, ETA 00h21m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.37 % (164.23 fps, avg 164.05 fps, ETA 00h21m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.44 % (167.22 fps, avg 164.31 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.50 % (168.44 fps, avg 164.24 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.59 % (164.39 fps, avg 164.10 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.66 % (161.24 fps, avg 163.88 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.73 % (160.97 fps, avg 163.79 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.82 % (160.41 fps, avg 163.62 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 177 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.90 % (166.56 fps, avg 164.21 fps, ETA 00h21m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 1.96 % (168.83 fps, avg 164.40 fps, ETA 00h21m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.05 % (168.16 fps, avg 164.14 fps, ETA 00h21m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.12 % (164.51 fps, avg 164.24 fps, ETA 00h21m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.21 % (162.40 fps, avg 164.18 fps, ETA 00h21m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.27 % (160.40 fps, avg 163.76 fps, ETA 00h21m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.34 % (156.02 fps, avg 163.42 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.40 % (152.03 fps, avg 163.01 fps, ETA 00h21m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.49 % (154.69 fps, avg 162.91 fps, ETA 00h21m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.56 % (158.63 fps, avg 162.99 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.62 % (161.73 fps, avg 162.90 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.71 % (159.91 fps, avg 162.65 fps, ETA 00h21m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.78 % (157.48 fps, avg 162.53 fps, ETA 00h21m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.85 % (158.65 fps, avg 162.55 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.93 % (158.80 fps, avg 162.35 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 2.99 % (156.43 fps, avg 162.06 fps, ETA 00h21m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 146 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.05 % (150.93 fps, avg 161.68 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.14 % (150.17 fps, avg 161.46 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.20 % (149.93 fps, avg 161.19 fps, ETA 00h21m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.27 % (151.88 fps, avg 161.00 fps, ETA 00h21m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.36 % (154.84 fps, avg 161.00 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.43 % (159.48 fps, avg 161.08 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.50 % (160.81 fps, avg 160.98 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.58 % (161.62 fps, avg 161.04 fps, ETA 00h21m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 144 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.64 % (155.30 fps, avg 160.72 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.70 % (152.21 fps, avg 160.45 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 145 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.79 % (146.37 fps, avg 160.16 fps, ETA 00h21m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.85 % (148.64 fps, avg 160.01 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 3.91 % (149.30 fps, avg 159.80 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.00 % (150.30 fps, avg 159.60 fps, ETA 00h21m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.06 % (150.50 fps, avg 159.48 fps, ETA 00h21m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.12 % (150.73 fps, avg 159.31 fps, ETA 00h21m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.21 % (151.86 fps, avg 159.19 fps, ETA 00h21m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.28 % (153.64 fps, avg 159.17 fps, ETA 00h21m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.34 % (156.34 fps, avg 159.15 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.42 % (157.11 fps, avg 159.08 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 146 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.49 % (152.85 fps, avg 158.85 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.55 % (153.00 fps, avg 158.85 fps, ETA 00h21m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.64 % (150.98 fps, avg 158.69 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.70 % (152.41 fps, avg 158.55 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.77 % (150.75 fps, avg 158.47 fps, ETA 00h21m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.85 % (154.59 fps, avg 158.50 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.92 % (155.81 fps, avg 158.42 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 4.98 % (156.32 fps, avg 158.38 fps, ETA 00h21m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.07 % (154.77 fps, avg 158.34 fps, ETA 00h21m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.14 % (157.37 fps, avg 158.38 fps, ETA 00h21m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.20 % (158.37 fps, avg 158.38 fps, ETA 00h21m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.29 % (158.42 fps, avg 158.34 fps, ETA 00h21m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.36 % (157.58 fps, avg 158.34 fps, ETA 00h21m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.43 % (157.63 fps, avg 158.35 fps, ETA 00h21m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.51 % (157.75 fps, avg 158.32 fps, ETA 00h21m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.58 % (158.80 fps, avg 158.36 fps, ETA 00h21m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.65 % (157.48 fps, avg 158.31 fps, ETA 00h21m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.73 % (159.24 fps, avg 158.35 fps, ETA 00h21m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.80 % (156.32 fps, avg 158.28 fps, ETA 00h21m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.86 % (154.79 fps, avg 158.18 fps, ETA 00h21m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 5.95 % (151.89 fps, avg 158.11 fps, ETA 00h21m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.02 % (155.58 fps, avg 158.18 fps, ETA 00h21m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.09 % (160.32 fps, avg 158.26 fps, ETA 00h21m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.17 % (162.30 fps, avg 158.26 fps, ETA 00h21m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.24 % (159.80 fps, avg 158.24 fps, ETA 00h21m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.31 % (158.96 fps, avg 158.28 fps, ETA 00h21m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 167 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.40 % (161.46 fps, avg 158.37 fps, ETA 00h21m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.47 % (163.07 fps, avg 158.41 fps, ETA 00h21m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.53 % (162.52 fps, avg 158.43 fps, ETA 00h21m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.62 % (159.20 fps, avg 158.40 fps, ETA 00h21m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.68 % (158.10 fps, avg 158.40 fps, ETA 00h21m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.75 % (154.33 fps, avg 158.29 fps, ETA 00h21m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.84 % (153.87 fps, avg 158.25 fps, ETA 00h21m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.90 % (154.97 fps, avg 158.29 fps, ETA 00h21m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 6.98 % (160.64 fps, avg 158.36 fps, ETA 00h21m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.07 % (164.84 fps, avg 158.46 fps, ETA 00h21m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.14 % (165.34 fps, avg 158.51 fps, ETA 00h21m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.20 % (163.18 fps, avg 158.51 fps, ETA 00h21m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.29 % (160.25 fps, avg 158.52 fps, ETA 00h21m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.36 % (157.98 fps, avg 158.49 fps, ETA 00h21m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.42 % (158.93 fps, avg 158.53 fps, ETA 00h21m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.51 % (159.32 fps, avg 158.54 fps, ETA 00h20m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.58 % (160.65 fps, avg 158.56 fps, ETA 00h20m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.65 % (161.70 fps, avg 158.62 fps, ETA 00h20m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.74 % (160.76 fps, avg 158.60 fps, ETA 00h20m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.81 % (164.02 fps, avg 158.71 fps, ETA 00h20m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.87 % (161.19 fps, avg 158.69 fps, ETA 00h20m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 7.96 % (162.46 fps, avg 158.71 fps, ETA 00h20m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.03 % (158.68 fps, avg 158.71 fps, ETA 00h20m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.10 % (159.73 fps, avg 158.72 fps, ETA 00h20m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.18 % (159.63 fps, avg 158.74 fps, ETA 00h20m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.25 % (159.08 fps, avg 158.72 fps, ETA 00h20m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.32 % (162.14 fps, avg 158.81 fps, ETA 00h20m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.41 % (160.37 fps, avg 158.78 fps, ETA 00h20m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.47 % (159.97 fps, avg 158.75 fps, ETA 00h20m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.54 % (156.20 fps, avg 158.74 fps, ETA 00h20m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.63 % (158.30 fps, avg 158.77 fps, ETA 00h20m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.70 % (160.08 fps, avg 158.79 fps, ETA 00h20m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.77 % (161.18 fps, avg 158.81 fps, ETA 00h20m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.85 % (161.62 fps, avg 158.84 fps, ETA 00h20m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.92 % (160.17 fps, avg 158.82 fps, ETA 00h20m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 8.99 % (157.40 fps, avg 158.77 fps, ETA 00h20m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.08 % (157.42 fps, avg 158.80 fps, ETA 00h20m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.14 % (157.88 fps, avg 158.80 fps, ETA 00h20m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.20 % (158.71 fps, avg 158.77 fps, ETA 00h20m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.29 % (154.94 fps, avg 158.71 fps, ETA 00h20m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.36 % (155.43 fps, avg 158.72 fps, ETA 00h20m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.42 % (156.35 fps, avg 158.71 fps, ETA 00h20m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.51 % (157.53 fps, avg 158.68 fps, ETA 00h20m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.58 % (156.58 fps, avg 158.67 fps, ETA 00h20m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.65 % (157.53 fps, avg 158.69 fps, ETA 00h20m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.74 % (159.35 fps, avg 158.70 fps, ETA 00h20m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.81 % (163.90 fps, avg 158.79 fps, ETA 00h20m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.87 % (163.29 fps, avg 158.79 fps, ETA 00h20m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 9.96 % (160.74 fps, avg 158.75 fps, ETA 00h20m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.02 % (156.20 fps, avg 158.73 fps, ETA 00h20m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.09 % (156.02 fps, avg 158.73 fps, ETA 00h20m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.18 % (158.02 fps, avg 158.73 fps, ETA 00h20m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.25 % (157.86 fps, avg 158.71 fps, ETA 00h20m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.31 % (160.29 fps, avg 158.76 fps, ETA 00h20m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.40 % (161.29 fps, avg 158.78 fps, ETA 00h20m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.47 % (162.07 fps, avg 158.78 fps, ETA 00h20m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.54 % (161.25 fps, avg 158.81 fps, ETA 00h20m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.62 % (159.20 fps, avg 158.79 fps, ETA 00h20m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.69 % (157.75 fps, avg 158.76 fps, ETA 00h20m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.75 % (153.21 fps, avg 158.70 fps, ETA 00h20m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.85 % (154.33 fps, avg 158.70 fps, ETA 00h20m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 179 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 10.93 % (165.73 fps, avg 158.90 fps, ETA 00h20m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 195 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.01 % (178.68 fps, avg 159.10 fps, ETA 00h20m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 174 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.09 % (183.51 fps, avg 159.20 fps, ETA 00h20m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.16 % (171.65 fps, avg 159.16 fps, ETA 00h20m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 147 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.22 % (157.14 fps, avg 159.06 fps, ETA 00h20m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 147 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.30 % (148.64 fps, avg 158.99 fps, ETA 00h20m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.37 % (148.41 fps, avg 158.95 fps, ETA 00h20m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.43 % (152.57 fps, avg 158.94 fps, ETA 00h20m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.52 % (154.77 fps, avg 158.91 fps, ETA 00h20m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.58 % (156.09 fps, avg 158.89 fps, ETA 00h20m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 145 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.64 % (151.47 fps, avg 158.80 fps, ETA 00h20m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 147 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.73 % (150.05 fps, avg 158.74 fps, ETA 00h20m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.79 % (149.19 fps, avg 158.71 fps, ETA 00h19m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.85 % (150.86 fps, avg 158.65 fps, ETA 00h19m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 146 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.93 % (148.44 fps, avg 158.55 fps, ETA 00h19m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 139 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 11.99 % (144.80 fps, avg 158.45 fps, ETA 00h19m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.05 % (145.45 fps, avg 158.40 fps, ETA 00h19m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 144 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.14 % (147.07 fps, avg 158.34 fps, ETA 00h19m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.20 % (151.91 fps, avg 158.33 fps, ETA 00h19m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.26 % (150.45 fps, avg 158.26 fps, ETA 00h19m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 141 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.34 % (149.64 fps, avg 158.18 fps, ETA 00h19m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.41 % (145.27 fps, avg 158.10 fps, ETA 00h19m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.47 % (147.13 fps, avg 158.06 fps, ETA 00h19m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.56 % (149.60 fps, avg 158.03 fps, ETA 00h19m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.62 % (152.46 fps, avg 158.00 fps, ETA 00h19m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.68 % (151.18 fps, avg 157.94 fps, ETA 00h19m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.77 % (151.88 fps, avg 157.92 fps, ETA 00h19m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.83 % (152.09 fps, avg 157.90 fps, ETA 00h19m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.90 % (154.92 fps, avg 157.89 fps, ETA 00h19m50s)[16:49:27] stream: error near frame 27858: continuity error: got 14 expected 15
[ac3 @ 0x7efd58044b80] exponent -2 is out-of-range
[ac3 @ 0x7efd58044b80] error decoding the audio block
[ac3 @ 0x7efd58044b80] frame sync error
[16:49:27] sync: adding 110 ms of silence to audio 0x34  start 83636515, next 83626560
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 147 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 12.98 % (150.66 fps, avg 157.80 fps, ETA 00h19m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.04 % (151.81 fps, avg 157.79 fps, ETA 00h19m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.11 % (151.24 fps, avg 157.78 fps, ETA 00h19m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.20 % (156.22 fps, avg 157.77 fps, ETA 00h19m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.27 % (158.82 fps, avg 157.81 fps, ETA 00h19m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.33 % (159.48 fps, avg 157.81 fps, ETA 00h19m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.42 % (160.53 fps, avg 157.82 fps, ETA 00h19m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.49 % (158.87 fps, avg 157.83 fps, ETA 00h19m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.56 % (159.10 fps, avg 157.83 fps, ETA 00h19m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.65 % (160.98 fps, avg 157.87 fps, ETA 00h19m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.71 % (160.97 fps, avg 157.88 fps, ETA 00h19m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.78 % (164.01 fps, avg 157.93 fps, ETA 00h19m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.87 % (162.30 fps, avg 157.94 fps, ETA 00h19m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 13.94 % (164.12 fps, avg 157.98 fps, ETA 00h19m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.01 % (163.41 fps, avg 158.01 fps, ETA 00h19m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.10 % (163.01 fps, avg 158.02 fps, ETA 00h19m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.17 % (162.18 fps, avg 158.04 fps, ETA 00h19m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.23 % (159.35 fps, avg 158.03 fps, ETA 00h19m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.32 % (159.63 fps, avg 158.05 fps, ETA 00h19m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.39 % (158.35 fps, avg 158.05 fps, ETA 00h19m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.45 % (157.81 fps, avg 158.03 fps, ETA 00h19m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.54 % (157.65 fps, avg 158.04 fps, ETA 00h19m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.60 % (155.50 fps, avg 158.01 fps, ETA 00h19m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.67 % (154.79 fps, avg 157.98 fps, ETA 00h19m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.76 % (155.12 fps, avg 158.00 fps, ETA 00h19m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.82 % (155.94 fps, avg 157.98 fps, ETA 00h19m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.89 % (157.93 fps, avg 157.98 fps, ETA 00h19m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 14.98 % (158.37 fps, avg 158.00 fps, ETA 00h19m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.04 % (159.38 fps, avg 158.00 fps, ETA 00h19m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.11 % (160.25 fps, avg 158.01 fps, ETA 00h19m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.20 % (157.65 fps, avg 158.00 fps, ETA 00h19m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.26 % (157.25 fps, avg 157.99 fps, ETA 00h19m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.33 % (156.76 fps, avg 158.00 fps, ETA 00h19m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.42 % (157.81 fps, avg 157.99 fps, ETA 00h19m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.49 % (160.97 fps, avg 158.03 fps, ETA 00h19m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.56 % (162.07 fps, avg 158.05 fps, ETA 00h19m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.65 % (161.63 fps, avg 158.04 fps, ETA 00h19m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.71 % (159.08 fps, avg 158.05 fps, ETA 00h19m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.78 % (156.43 fps, avg 158.03 fps, ETA 00h19m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.86 % (157.04 fps, avg 158.03 fps, ETA 00h19m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 15.93 % (155.76 fps, avg 158.02 fps, ETA 00h19m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.00 % (155.76 fps, avg 158.00 fps, ETA 00h19m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.09 % (158.58 fps, avg 158.04 fps, ETA 00h19m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.15 % (161.79 fps, avg 158.07 fps, ETA 00h19m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.22 % (163.79 fps, avg 158.08 fps, ETA 00h19m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.29 % (161.24 fps, avg 158.08 fps, ETA 00h19m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.39 % (164.23 fps, avg 158.15 fps, ETA 00h19m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.45 % (165.89 fps, avg 158.18 fps, ETA 00h19m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.52 % (167.00 fps, avg 158.20 fps, ETA 00h18m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.61 % (165.23 fps, avg 158.24 fps, ETA 00h18m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.68 % (163.96 fps, avg 158.26 fps, ETA 00h18m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.75 % (164.40 fps, avg 158.28 fps, ETA 00h18m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.84 % (163.95 fps, avg 158.32 fps, ETA 00h18m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.91 % (164.17 fps, avg 158.34 fps, ETA 00h18m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 16.98 % (163.90 fps, avg 158.36 fps, ETA 00h18m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.07 % (163.18 fps, avg 158.38 fps, ETA 00h18m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.14 % (162.02 fps, avg 158.38 fps, ETA 00h18m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.20 % (160.37 fps, avg 158.38 fps, ETA 00h18m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.29 % (159.20 fps, avg 158.39 fps, ETA 00h18m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.36 % (160.86 fps, avg 158.42 fps, ETA 00h18m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 171 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.43 % (163.46 fps, avg 158.45 fps, ETA 00h18m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.52 % (160.08 fps, avg 158.41 fps, ETA 00h18m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.59 % (159.48 fps, avg 158.43 fps, ETA 00h18m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.65 % (156.91 fps, avg 158.43 fps, ETA 00h18m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.75 % (165.67 fps, avg 158.51 fps, ETA 00h18m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.82 % (165.17 fps, avg 158.51 fps, ETA 00h18m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.89 % (170.59 fps, avg 158.58 fps, ETA 00h18m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 17.98 % (164.73 fps, avg 158.58 fps, ETA 00h18m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.04 % (164.51 fps, avg 158.59 fps, ETA 00h18m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.11 % (160.40 fps, avg 158.60 fps, ETA 00h18m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.20 % (160.35 fps, avg 158.60 fps, ETA 00h18m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.27 % (159.85 fps, avg 158.60 fps, ETA 00h18m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.33 % (156.88 fps, avg 158.58 fps, ETA 00h18m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.42 % (156.12 fps, avg 158.57 fps, ETA 00h18m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.49 % (157.44 fps, avg 158.59 fps, ETA 00h18m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.56 % (163.79 fps, avg 158.64 fps, ETA 00h18m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.65 % (165.89 fps, avg 158.66 fps, ETA 00h18m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.72 % (167.61 fps, avg 158.70 fps, ETA 00h18m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.80 % (167.99 fps, avg 158.75 fps, ETA 00h18m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.89 % (170.32 fps, avg 158.80 fps, ETA 00h18m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 167 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 18.96 % (169.43 fps, avg 158.82 fps, ETA 00h18m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.03 % (168.16 fps, avg 158.86 fps, ETA 00h18m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.13 % (169.32 fps, avg 158.92 fps, ETA 00h18m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.20 % (172.81 fps, avg 158.98 fps, ETA 00h18m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 179 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.27 % (174.81 fps, avg 159.05 fps, ETA 00h18m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.37 % (171.98 fps, avg 159.07 fps, ETA 00h18m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.43 % (169.05 fps, avg 159.10 fps, ETA 00h18m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.50 % (163.73 fps, avg 159.10 fps, ETA 00h18m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.59 % (164.90 fps, avg 159.14 fps, ETA 00h18m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.67 % (164.35 fps, avg 159.16 fps, ETA 00h18m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 171 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.74 % (168.21 fps, avg 159.20 fps, ETA 00h18m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.83 % (169.92 fps, avg 159.26 fps, ETA 00h18m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.89 % (166.94 fps, avg 159.25 fps, ETA 00h18m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 19.96 % (162.85 fps, avg 159.24 fps, ETA 00h18m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.05 % (158.42 fps, avg 159.25 fps, ETA 00h18m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.12 % (159.47 fps, avg 159.25 fps, ETA 00h18m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.19 % (163.07 fps, avg 159.29 fps, ETA 00h18m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.28 % (167.05 fps, avg 159.33 fps, ETA 00h18m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.35 % (166.83 fps, avg 159.33 fps, ETA 00h17m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.42 % (164.40 fps, avg 159.34 fps, ETA 00h17m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.51 % (161.02 fps, avg 159.35 fps, ETA 00h17m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.58 % (161.18 fps, avg 159.35 fps, ETA 00h17m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 184 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.65 % (168.05 fps, avg 159.44 fps, ETA 00h17m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.74 % (167.50 fps, avg 159.44 fps, ETA 00h17m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.81 % (167.50 fps, avg 159.44 fps, ETA 00h17m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.87 % (160.90 fps, avg 159.45 fps, ETA 00h17m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 20.96 % (158.75 fps, avg 159.43 fps, ETA 00h17m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.03 % (160.86 fps, avg 159.45 fps, ETA 00h17m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.10 % (159.47 fps, avg 159.45 fps, ETA 00h17m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.18 % (158.09 fps, avg 159.42 fps, ETA 00h17m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.25 % (156.65 fps, avg 159.42 fps, ETA 00h17m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.32 % (158.98 fps, avg 159.45 fps, ETA 00h17m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.40 % (159.75 fps, avg 159.42 fps, ETA 00h17m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.47 % (157.25 fps, avg 159.40 fps, ETA 00h17m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.54 % (155.92 fps, avg 159.41 fps, ETA 00h17m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.62 % (158.02 fps, avg 159.41 fps, ETA 00h17m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.69 % (157.63 fps, avg 159.38 fps, ETA 00h17m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.76 % (158.30 fps, avg 159.40 fps, ETA 00h17m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.85 % (159.81 fps, avg 159.41 fps, ETA 00h17m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.92 % (163.85 fps, avg 159.43 fps, ETA 00h17m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 21.99 % (163.19 fps, avg 159.44 fps, ETA 00h17m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.08 % (162.35 fps, avg 159.44 fps, ETA 00h17m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.15 % (161.46 fps, avg 159.45 fps, ETA 00h17m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.22 % (165.61 fps, avg 159.50 fps, ETA 00h17m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.31 % (167.89 fps, avg 159.53 fps, ETA 00h17m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.38 % (170.10 fps, avg 159.56 fps, ETA 00h17m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.45 % (167.11 fps, avg 159.57 fps, ETA 00h17m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 173 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.55 % (167.99 fps, avg 159.61 fps, ETA 00h17m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.61 % (167.77 fps, avg 159.64 fps, ETA 00h17m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.68 % (164.23 fps, avg 159.62 fps, ETA 00h17m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.77 % (159.85 fps, avg 159.61 fps, ETA 00h17m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.84 % (158.42 fps, avg 159.62 fps, ETA 00h17m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.90 % (159.08 fps, avg 159.62 fps, ETA 00h17m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 22.99 % (159.14 fps, avg 159.61 fps, ETA 00h17m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.05 % (157.65 fps, avg 159.61 fps, ETA 00h17m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.12 % (155.84 fps, avg 159.58 fps, ETA 00h17m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.20 % (153.92 fps, avg 159.55 fps, ETA 00h17m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.27 % (154.89 fps, avg 159.56 fps, ETA 00h17m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.34 % (157.75 fps, avg 159.56 fps, ETA 00h17m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.42 % (159.17 fps, avg 159.55 fps, ETA 00h17m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.49 % (155.84 fps, avg 159.53 fps, ETA 00h17m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.55 % (154.49 fps, avg 159.51 fps, ETA 00h17m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.64 % (155.76 fps, avg 159.51 fps, ETA 00h17m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.71 % (158.70 fps, avg 159.52 fps, ETA 00h17m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.78 % (161.68 fps, avg 159.53 fps, ETA 00h17m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 171 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.87 % (163.46 fps, avg 159.55 fps, ETA 00h17m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 23.93 % (160.36 fps, avg 159.53 fps, ETA 00h17m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.01 % (161.91 fps, avg 159.56 fps, ETA 00h17m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.10 % (163.01 fps, avg 159.58 fps, ETA 00h17m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.17 % (167.88 fps, avg 159.60 fps, ETA 00h17m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.24 % (166.61 fps, avg 159.62 fps, ETA 00h17m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.33 % (163.79 fps, avg 159.62 fps, ETA 00h17m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.39 % (161.63 fps, avg 159.62 fps, ETA 00h17m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.46 % (161.74 fps, avg 159.64 fps, ETA 00h17m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 167 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.55 % (163.46 fps, avg 159.66 fps, ETA 00h17m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.62 % (163.90 fps, avg 159.66 fps, ETA 00h16m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.69 % (164.45 fps, avg 159.68 fps, ETA 00h16m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.78 % (165.06 fps, avg 159.70 fps, ETA 00h16m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.85 % (164.40 fps, avg 159.70 fps, ETA 00h16m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 24.91 % (159.42 fps, avg 159.68 fps, ETA 00h16m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.00 % (152.19 fps, avg 159.64 fps, ETA 00h16m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 146 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.07 % (152.39 fps, avg 159.64 fps, ETA 00h16m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.13 % (157.70 fps, avg 159.66 fps, ETA 00h16m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.22 % (160.08 fps, avg 159.64 fps, ETA 00h16m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.29 % (158.42 fps, avg 159.63 fps, ETA 00h16m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.35 % (155.71 fps, avg 159.63 fps, ETA 00h16m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.44 % (158.24 fps, avg 159.63 fps, ETA 00h16m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.51 % (159.31 fps, avg 159.62 fps, ETA 00h16m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.58 % (160.08 fps, avg 159.63 fps, ETA 00h16m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.66 % (160.58 fps, avg 159.64 fps, ETA 00h16m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.73 % (160.41 fps, avg 159.63 fps, ETA 00h16m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.80 % (160.13 fps, avg 159.64 fps, ETA 00h16m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.89 % (159.42 fps, avg 159.64 fps, ETA 00h16m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 25.95 % (157.09 fps, avg 159.61 fps, ETA 00h16m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.02 % (155.40 fps, avg 159.60 fps, ETA 00h16m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.11 % (156.27 fps, avg 159.61 fps, ETA 00h16m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.18 % (163.07 fps, avg 159.64 fps, ETA 00h16m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 181 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.26 % (171.54 fps, avg 159.70 fps, ETA 00h16m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.35 % (171.37 fps, avg 159.71 fps, ETA 00h16m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.41 % (166.33 fps, avg 159.69 fps, ETA 00h16m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.48 % (158.82 fps, avg 159.69 fps, ETA 00h16m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.57 % (160.92 fps, avg 159.72 fps, ETA 00h16m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 173 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.64 % (166.00 fps, avg 159.75 fps, ETA 00h16m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.71 % (169.77 fps, avg 159.78 fps, ETA 00h16m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.80 % (168.05 fps, avg 159.79 fps, ETA 00h16m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.87 % (165.23 fps, avg 159.79 fps, ETA 00h16m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 26.94 % (159.42 fps, avg 159.78 fps, ETA 00h16m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.03 % (159.97 fps, avg 159.79 fps, ETA 00h16m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.10 % (158.75 fps, avg 159.78 fps, ETA 00h16m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.16 % (163.18 fps, avg 159.80 fps, ETA 00h16m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.25 % (159.43 fps, avg 159.78 fps, ETA 00h16m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.31 % (156.17 fps, avg 159.75 fps, ETA 00h16m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.38 % (153.54 fps, avg 159.75 fps, ETA 00h16m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.46 % (154.20 fps, avg 159.74 fps, ETA 00h16m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 146 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.52 % (154.51 fps, avg 159.71 fps, ETA 00h16m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.59 % (151.17 fps, avg 159.68 fps, ETA 00h16m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.68 % (152.70 fps, avg 159.68 fps, ETA 00h16m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.75 % (158.98 fps, avg 159.71 fps, ETA 00h16m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.81 % (160.03 fps, avg 159.69 fps, ETA 00h16m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.90 % (157.32 fps, avg 159.66 fps, ETA 00h16m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 27.97 % (158.03 fps, avg 159.69 fps, ETA 00h16m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.03 % (159.42 fps, avg 159.68 fps, ETA 00h16m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.12 % (162.57 fps, avg 159.69 fps, ETA 00h16m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.19 % (158.54 fps, avg 159.68 fps, ETA 00h16m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.26 % (158.75 fps, avg 159.68 fps, ETA 00h16m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.35 % (161.35 fps, avg 159.70 fps, ETA 00h16m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.42 % (163.39 fps, avg 159.71 fps, ETA 00h16m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.48 % (163.62 fps, avg 159.71 fps, ETA 00h16m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.58 % (162.46 fps, avg 159.72 fps, ETA 00h16m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.65 % (162.35 fps, avg 159.73 fps, ETA 00h16m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 177 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.72 % (170.15 fps, avg 159.79 fps, ETA 00h16m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.82 % (173.86 fps, avg 159.83 fps, ETA 00h16m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 178 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.89 % (178.56 fps, avg 159.88 fps, ETA 00h15m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 28.96 % (172.09 fps, avg 159.88 fps, ETA 00h15m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.05 % (168.77 fps, avg 159.90 fps, ETA 00h15m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.12 % (163.07 fps, avg 159.90 fps, ETA 00h15m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.19 % (164.01 fps, avg 159.91 fps, ETA 00h15m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.28 % (165.50 fps, avg 159.94 fps, ETA 00h15m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.35 % (166.83 fps, avg 159.96 fps, ETA 00h15m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.42 % (165.39 fps, avg 159.96 fps, ETA 00h15m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.51 % (163.95 fps, avg 159.97 fps, ETA 00h15m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.58 % (163.01 fps, avg 159.98 fps, ETA 00h15m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.65 % (163.51 fps, avg 159.98 fps, ETA 00h15m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.74 % (164.45 fps, avg 160.01 fps, ETA 00h15m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.81 % (164.17 fps, avg 160.01 fps, ETA 00h15m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.88 % (165.34 fps, avg 160.02 fps, ETA 00h15m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 29.97 % (165.11 fps, avg 160.04 fps, ETA 00h15m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.04 % (165.84 fps, avg 160.05 fps, ETA 00h15m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.11 % (164.23 fps, avg 160.05 fps, ETA 00h15m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.20 % (164.57 fps, avg 160.08 fps, ETA 00h15m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.27 % (163.18 fps, avg 160.08 fps, ETA 00h15m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.34 % (163.18 fps, avg 160.08 fps, ETA 00h15m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.42 % (159.71 fps, avg 160.07 fps, ETA 00h15m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.49 % (158.37 fps, avg 160.06 fps, ETA 00h15m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.55 % (157.96 fps, avg 160.06 fps, ETA 00h15m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.64 % (158.12 fps, avg 160.06 fps, ETA 00h15m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.71 % (157.74 fps, avg 160.05 fps, ETA 00h15m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.77 % (156.91 fps, avg 160.04 fps, ETA 00h15m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.86 % (157.04 fps, avg 160.04 fps, ETA 00h15m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 30.93 % (159.31 fps, avg 160.04 fps, ETA 00h15m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.00 % (159.75 fps, avg 160.04 fps, ETA 00h15m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.09 % (160.24 fps, avg 160.04 fps, ETA 00h15m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.15 % (158.86 fps, avg 160.03 fps, ETA 00h15m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.21 % (156.43 fps, avg 160.01 fps, ETA 00h15m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.31 % (156.86 fps, avg 160.02 fps, ETA 00h15m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.38 % (160.36 fps, avg 160.04 fps, ETA 00h15m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.45 % (167.83 fps, avg 160.07 fps, ETA 00h15m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 173 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.54 % (168.71 fps, avg 160.08 fps, ETA 00h15m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.61 % (165.84 fps, avg 160.08 fps, ETA 00h15m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.67 % (160.80 fps, avg 160.07 fps, ETA 00h15m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 167 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.77 % (162.68 fps, avg 160.10 fps, ETA 00h15m19s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.84 % (166.11 fps, avg 160.12 fps, ETA 00h15m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 31.91 % (170.26 fps, avg 160.14 fps, ETA 00h15m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.00 % (167.11 fps, avg 160.15 fps, ETA 00h15m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 168 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.07 % (167.11 fps, avg 160.17 fps, ETA 00h15m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.14 % (165.62 fps, avg 160.18 fps, ETA 00h15m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.23 % (164.51 fps, avg 160.18 fps, ETA 00h15m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.30 % (161.29 fps, avg 160.18 fps, ETA 00h15m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.36 % (157.53 fps, avg 160.16 fps, ETA 00h15m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.45 % (157.04 fps, avg 160.16 fps, ETA 00h15m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.52 % (157.77 fps, avg 160.16 fps, ETA 00h15m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.58 % (158.71 fps, avg 160.15 fps, ETA 00h15m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.67 % (158.70 fps, avg 160.15 fps, ETA 00h15m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.74 % (157.63 fps, avg 160.14 fps, ETA 00h15m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.80 % (155.79 fps, avg 160.12 fps, ETA 00h15m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 149 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.88 % (155.64 fps, avg 160.11 fps, ETA 00h15m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 32.95 % (152.87 fps, avg 160.09 fps, ETA 00h15m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.01 % (154.59 fps, avg 160.09 fps, ETA 00h15m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.10 % (152.75 fps, avg 160.06 fps, ETA 00h15m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.17 % (156.18 fps, avg 160.07 fps, ETA 00h15m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.24 % (157.30 fps, avg 160.07 fps, ETA 00h15m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.32 % (159.03 fps, avg 160.06 fps, ETA 00h14m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.39 % (157.23 fps, avg 160.05 fps, ETA 00h14m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.46 % (159.06 fps, avg 160.06 fps, ETA 00h14m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.54 % (159.44 fps, avg 160.05 fps, ETA 00h14m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.61 % (160.42 fps, avg 160.05 fps, ETA 00h14m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.67 % (156.17 fps, avg 160.03 fps, ETA 00h14m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.76 % (156.27 fps, avg 160.03 fps, ETA 00h14m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.83 % (158.49 fps, avg 160.04 fps, ETA 00h14m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.90 % (162.46 fps, avg 160.05 fps, ETA 00h14m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 33.99 % (162.23 fps, avg 160.04 fps, ETA 00h14m50s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.05 % (159.85 fps, avg 160.04 fps, ETA 00h14m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 154 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.12 % (156.37 fps, avg 160.03 fps, ETA 00h14m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.21 % (157.04 fps, avg 160.02 fps, ETA 00h14m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.27 % (155.81 fps, avg 160.01 fps, ETA 00h14m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.34 % (156.97 fps, avg 160.01 fps, ETA 00h14m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 151 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.42 % (153.31 fps, avg 159.98 fps, ETA 00h14m44s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.49 % (154.85 fps, avg 159.98 fps, ETA 00h14m43s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 164 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.56 % (156.79 fps, avg 159.99 fps, ETA 00h14m42s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.65 % (161.57 fps, avg 159.99 fps, ETA 00h14m41s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.72 % (163.73 fps, avg 160.00 fps, ETA 00h14m40s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.79 % (164.57 fps, avg 160.02 fps, ETA 00h14m39s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.88 % (163.24 fps, avg 160.01 fps, ETA 00h14m38s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 34.95 % (163.24 fps, avg 160.02 fps, ETA 00h14m37s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.02 % (163.40 fps, avg 160.04 fps, ETA 00h14m36s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.10 % (163.62 fps, avg 160.03 fps, ETA 00h14m35s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.17 % (159.12 fps, avg 160.02 fps, ETA 00h14m34s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.23 % (155.87 fps, avg 160.01 fps, ETA 00h14m33s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.32 % (155.43 fps, avg 160.01 fps, ETA 00h14m32s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.38 % (157.09 fps, avg 160.00 fps, ETA 00h14m31s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 157 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.45 % (158.14 fps, avg 160.00 fps, ETA 00h14m30s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 163 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.54 % (158.42 fps, avg 160.00 fps, ETA 00h14m29s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.61 % (159.26 fps, avg 159.99 fps, ETA 00h14m28s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.68 % (159.99 fps, avg 160.00 fps, ETA 00h14m27s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.77 % (160.65 fps, avg 160.00 fps, ETA 00h14m26s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 158 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.84 % (162.75 fps, avg 160.01 fps, ETA 00h14m25s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.91 % (164.73 fps, avg 160.03 fps, ETA 00h14m24s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 35.99 % (161.31 fps, avg 160.01 fps, ETA 00h14m23s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 144 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.06 % (158.77 fps, avg 160.00 fps, ETA 00h14m22s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.13 % (156.99 fps, avg 160.01 fps, ETA 00h14m21s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.23 % (168.11 fps, avg 160.06 fps, ETA 00h14m20s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 181 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.31 % (175.59 fps, avg 160.10 fps, ETA 00h14m18s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 185 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.38 % (180.19 fps, avg 160.13 fps, ETA 00h14m17s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.47 % (173.48 fps, avg 160.14 fps, ETA 00h14m16s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.54 % (167.94 fps, avg 160.15 fps, ETA 00h14m15s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.60 % (164.12 fps, avg 160.16 fps, ETA 00h14m14s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.69 % (160.24 fps, avg 160.14 fps, ETA 00h14m13s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.75 % (156.81 fps, avg 160.13 fps, ETA 00h14m12s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 153 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.82 % (151.73 fps, avg 160.11 fps, ETA 00h14m11s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.91 % (154.18 fps, avg 160.10 fps, ETA 00h14m10s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 156 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 36.97 % (156.47 fps, avg 160.10 fps, ETA 00h14m09s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.05 % (163.74 fps, avg 160.13 fps, ETA 00h14m08s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 178 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.14 % (167.16 fps, avg 160.15 fps, ETA 00h14m07s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.20 % (167.00 fps, avg 160.15 fps, ETA 00h14m06s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 150 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.27 % (158.77 fps, avg 160.12 fps, ETA 00h14m05s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.36 % (155.84 fps, avg 160.12 fps, ETA 00h14m04s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 152 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.42 % (155.71 fps, avg 160.12 fps, ETA 00h14m03s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.49 % (158.96 fps, avg 160.11 fps, ETA 00h14m02s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.58 % (159.40 fps, avg 160.12 fps, ETA 00h14m01s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.64 % (159.17 fps, avg 160.11 fps, ETA 00h14m00s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.71 % (157.68 fps, avg 160.10 fps, ETA 00h13m59s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 161 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.81 % (162.40 fps, avg 160.13 fps, ETA 00h13m58s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 175 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.87 % (163.24 fps, avg 160.13 fps, ETA 00h13m57s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 148 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 37.93 % (162.24 fps, avg 160.11 fps, ETA 00h13m56s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 155 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.03 % (157.14 fps, avg 160.11 fps, ETA 00h13m55s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 162 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.09 % (157.86 fps, avg 160.12 fps, ETA 00h13m54s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 159 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.16 % (162.90 fps, avg 160.13 fps, ETA 00h13m53s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.26 % (165.78 fps, avg 160.15 fps, ETA 00h13m52s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.32 % (166.28 fps, avg 160.16 fps, ETA 00h13m51s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 165 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.40 % (169.32 fps, avg 160.18 fps, ETA 00h13m49s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 169 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.49 % (168.05 fps, avg 160.19 fps, ETA 00h13m48s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 166 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.56 % (165.67 fps, avg 160.19 fps, ETA 00h13m47s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 160 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.63 % (165.12 fps, avg 160.21 fps, ETA 00h13m46s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 170 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
Encoding: task 2 of 2, 38.72 % (168.05 fps, avg 160.24 fps, ETA 00h13m45s)ERROR: encavcodec: codec context has uninitialized codec; skipping frame
ERROR: Last error repeated 172 times
ERROR: encavcodec: codec context has uninitialized codec; skipping frame
[1]+  Stopped                 HandBrakeCLI --f mp4 --two-pass --turbo -i /media/RAID/mythtv/recordings/1221_20170308120000.ts -o /media/RAID/mythtv/handbraked/CBSThisMorning.mp4
 
I've posted as much as I can because of the character limit on this forum.
User avatar
JohnAStebbins
HandBrake Team
Posts: 5712
Joined: Sat Feb 09, 2008 7:21 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by JohnAStebbins »

You didn't post the entire log. So we can't tell what version of HaneBrake you are running. But it looks like it is at best an old version of HandBrake and at worst a broken build that you got from who knows where.
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

JohnAStebbins wrote: Wed Mar 08, 2017 10:03 pm You didn't post the entire log. So we can't tell what version of HaneBrake you are running. But it looks like it is at best an old version of HandBrake and at worst a broken build that you got from who knows where.
[16:35:29] hb_init: starting libhb thread
HandBrake 0.10.5 (2016042900) - Linux x86_64 - https://handbrake.fr
6 CPUs detected
Opening /media/RAID/mythtv/recordings/1221_20170308120000.ts...
[16:35:29] CPU:
[16:35:29] - logical processor count: 6
[16:35:29] OpenCL: library not available
[16:35:29] hb_scan: path=/media/RAID/mythtv/recordings/1221_20170308120000.ts, title_index=1
udfread ERROR: ECMA 167 Volume Recognition failed
disc.c:274: failed opening UDF image /media/RAID/mythtv/recordings/1221_20170308120000.ts

There is a character limit on the forum, you cannot post the entire log.

Is the solution to download and install it manually? Is the version corrupted and part of the ppa?
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

JohnAStebbins wrote: Wed Mar 08, 2017 10:03 pm You didn't post the entire log. So we can't tell what version of HaneBrake you are running. But it looks like it is at best an old version of HandBrake and at worst a broken build that you got from who knows where.
I removed the old version, purged the config, added the ppa's from the wiki, and reinstalled. That worked.

The Lubuntu ppa's seem to have a broken version. If there's any way of notifying them.

Thanks,

John A Stebbins
mduell
Veteran User
Posts: 8187
Joined: Sat Apr 21, 2007 8:54 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by mduell »

Espryon wrote: Thu Mar 09, 2017 2:56 amThe Lubuntu ppa's seem to have a broken version. If there's any way of notifying them.
It's generally intentional.
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

mduell wrote: Thu Mar 09, 2017 3:10 am
Espryon wrote: Thu Mar 09, 2017 2:56 amThe Lubuntu ppa's seem to have a broken version. If there's any way of notifying them.
It's generally intentional.
Why would they intentionally have a broken version? (out of curiosity)
mduell
Veteran User
Posts: 8187
Joined: Sat Apr 21, 2007 8:54 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by mduell »

Usually politics, one way or another.
Woodstock
Veteran User
Posts: 4614
Joined: Tue Aug 27, 2013 6:39 am

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Woodstock »

There are parts of handbrake that, in the past, used licensing that did not match the politics of Debian, on which Ubuntu is based. An example is the AAC encoder that was in place until version 0.10.5.

So they would build handbrake for distribution WITHOUT those key libraries.
mduell
Veteran User
Posts: 8187
Joined: Sat Apr 21, 2007 8:54 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by mduell »

Woodstock wrote: Thu Mar 09, 2017 2:02 pmThere are parts of handbrake that, in the past, used licensing that did not match the politics of Debian, on which Ubuntu is based. An example is the AAC encoder that was in place until version 0.10.5.

So they would build handbrake for distribution WITHOUT those key libraries.
I think the good AAC encoded was ripped out before 0.10.5.

They also like to omit the mp4 output libs.

They also like to use system libs instead of patched libs HB provides.

Etc.
Espryon
Posts: 7
Joined: Wed Mar 08, 2017 6:45 pm

Re: ERROR: encavcodec: codec context has uninitialized codec; skipping frame

Post by Espryon »

Woodstock wrote: Thu Mar 09, 2017 2:02 pm There are parts of handbrake that, in the past, used licensing that did not match the politics of Debian, on which Ubuntu is based. An example is the AAC encoder that was in place until version 0.10.5.

So they would build handbrake for distribution WITHOUT those key libraries.
Kinda weird that its not included in the "Optional Codecs" section during install or part of the GUI when ubuntu, lubuntu, or kubuntu is installed.
Post Reply