View Full Version : RipBot264 v1.18.3 - Simple and easy to use GUI -> IPOD . PSP . CONSOLES . BLURAY
phred1
6th February 2018, 22:33
Fresh install of Win 10 Pro, new download of RipBot264 (v1.22.0).
At first run of Ripbot: complains over missing Haali Media Splitter so I download and install it.
At second run: starts fine, I add a file for conversion and click OK. In the bottom of the app window progress info flashes by. Last text I see is "Gathering information.." then a more-or-less empty window opens saying "Decoding Error".
I've tried updating to v1.22.1 but the issue persists. What am I doing wrong?
In the file "test.log" the last line is "C:\Temp\RipBot264temp\job1\getinfo.avs: Unknown error occurred"
BTW, thanks for a great app!
byteshare
7th February 2018, 10:02
Fresh install of Win 10 Pro, new download of RipBot264 (v1.22.0).
At first run of Ripbot: complains over missing Haali Media Splitter so I download and install it.
At second run: starts fine, I add a file for conversion and click OK. In the bottom of the app window progress info flashes by. Last text I see is "Gathering information.." then a more-or-less empty window opens saying "Decoding Error".
I've tried updating to v1.22.1 but the issue persists. What am I doing wrong?
In the file "test.log" the last line is "C:\Temp\RipBot264temp\job1\getinfo.avs: Unknown error occurred"
BTW, thanks for a great app!
Try using an image service as attached photos don't tend to get approved. Sounds like AVISynth might not be installed correctly. If you go the job (click on it) and click Edit > AviSynth > Preview Script does it work or do you get an error (might need to click play to see if you have an error).
byteshare
7th February 2018, 10:02
Is it possible to have a manual option for the crop settings in the batch mode rather than only auto crop?
Atak_Snajpera
7th February 2018, 11:51
Fresh install of Win 10 Pro, new download of RipBot264 (v1.22.0).
At first run of Ripbot: complains over missing Haali Media Splitter so I download and install it.
At second run: starts fine, I add a file for conversion and click OK. In the bottom of the app window progress info flashes by. Last text I see is "Gathering information.." then a more-or-less empty window opens saying "Decoding Error".
I've tried updating to v1.22.1 but the issue persists. What am I doing wrong?
In the file "test.log" the last line is "C:\Temp\RipBot264temp\job1\getinfo.avs: Unknown error occurred"
BTW, thanks for a great app!
https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
Is it possible to have a manual option for the crop settings in the batch mode rather than only auto crop?
Cropping manually in batch mode may be dangerous! You may easily crop to much!
phred1
7th February 2018, 15:39
https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
Sweet, that did it! Thanks!
byteshare
7th February 2018, 16:39
Cropping manually in batch mode may be dangerous! You may easily crop to much!
I completely agree, but when I'm working with a batch of file with all the same crop it is nice to have them uniform. Sometimes the auto crop decides to under crop as well.
Currently, I'm working with some old DVDs and I'd rather over crop by 2px then under...trying for a simple 4px on the left and the right.
Another question,
I've been generating time codes for variable frame rate files manually for a while then importing them back into the encoded file afterwards. I've seen at least one other application do this automatically but it isn't as awesome as RipBot. This comes up with cartoons generally older ones, and/or on DVD. Often they are trying to save work by having 1 frame stay for longer or slow frame rate in spots, etc...
A batch to add timecodes looks like:
FOR %%A IN (*.mkv) DO "..\mkvtoolnix\mkvmerge.exe" -o "..\output\%%A" --timecodes "0:%%~dpnA.mkv.avs_timecodes.txt" "%%~A"
AVISynth Script for exporting timecodes from a file looks like:
video0 = FFVideoSource("C:\FileName.mkv", timecodes="C:\FileName.mkv_timecodes.txt")
Don't know if you can export timecodes from the source from MKVMerge directly? Just thought about it for the first time lol.
Atak_Snajpera
7th February 2018, 19:24
@soneca
x64 framesever debug mode has appeared!
https://forum.videohelp.com/threads/387939-64bit-DebugMode-FrameServer
Atak_Snajpera
8th February 2018, 12:44
Is it possible to have a manual option for the crop settings in the batch mode rather than only auto crop?
Create custom script and save it in Tools\AviSynth plugins\Scripts\Custom
CropDVD.avs (left,top,right,bottom)
#Crop
video=Crop(video,2,2,-2,-2)
Do not forget to select this script in batch mode!
dracore
8th February 2018, 12:45
hello, im having issues with dolby atmos audio when i encode it to ac3 640kbs all the audio is jumbled up and distorted - is there a fix for this please :thanks:
Atak_Snajpera
8th February 2018, 12:51
In demux window select CORE
http://i.cubeupload.com/34x2JF.png
soneca
8th February 2018, 13:23
@soneca
x64 framesever debug mode has appeared!
https://forum.videohelp.com/threads/387939-64bit-DebugMode-FrameServer
Cool, great news! :cool:
I'll test later.
Thanks for the info!
byteshare
8th February 2018, 16:46
Create custom script and save it in Tools\AviSynth plugins\Scripts\Custom
CropDVD.avs (left,top,right,bottom)
#Crop
video=Crop(video,2,2,-2,-2)
Do not forget to select this script in batch mode!
I had thought about that but wasn't sure how to combine it with my other custom scripts like this one:
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\masktools\masktools2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\mvtools\mvtools2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\dither.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\avstp.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\LSFmod.avsi")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\RgTools\RgTools.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\SMDegrain.avsi")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\medianblur2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\smoothadjust.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\dither.avsi")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\HQDeringmod_v1.8.avsi")
video=video.SMDegrain(tr=10,thSAD=1000,subpixel=3,contrasharp=true,refinemotion=true,lsb=true,pel=1).HQDeringmod(nrmode=2,Y=3,U=3,V=3,lsb=False,thr=255.0,darkthr=255.0)
Atak_Snajpera
8th February 2018, 18:05
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\masktools\masktools2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\mvtools\mvtools2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\dither.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\avstp.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\LSFmod.avsi")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\RgTools\RgTools.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\SMDegrain.avsi")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\medianblur2.dll")
Loadplugin("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\smoothadjust.dll")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\dither.avsi")
Import("C:\RipBot264v1.22.0\Tools\AviSynth plugins\Custom\HQDeringmod_v1.8.avsi")
video=Crop(video,2,2,-2,-2)
video=video.SMDegrain(tr=10,thSAD=1000,subpixel=3,contrasharp=true,refinemotion=true,lsb=true,pel=1).HQDeringmod(nrmode=2,Y=3,U=3,V=3,lsb=False,thr=255.0,darkthr=255.0)
Wishbringer
8th February 2018, 21:15
Do something else. Start CMD.exe and then run job1_EncodeAudio1.cmd from console.
Ps. Do not add any pauses!
PS D:\Temp\RipBot264temp\job1> .\job1_EncodeAudio1.cmd
D:\Temp\RipBot264temp\job1>cd "E:\RipBot264v1.22.1\tools\ffmpeg\bin\"
D:\Temp\RipBot264temp\job1>del "D:\Temp\RipBot264temp\job1\AUDIO1_max_volume.txt"
D:\Temp\RipBot264temp\job1\AUDIO1_max_volume.txt konnte nicht gefunden werden
D:\Temp\RipBot264temp\job1>ffmpeg.exe -i "D:\Temp\RipBot264temp\job1\job1_AUDIO1.avs" -af "volumedetect" -vn -sn -dn -f null nul 2>&1 | findstr /I "max_volume:" | awk.exe -F": " "{print $2}" | cut.exe -d" " -f1 1>>"D:\Temp\RipBot264temp\job1\AUDIO1_max_volume.txt"
PS D:\Temp\RipBot264temp\job1>
No Audioencoding job started with "normalize".
PS D:\Temp\RipBot264temp\job1> .\job1_EncodeAudio1.cmd
D:\Temp\RipBot264temp\job1>"E:\RipBot264v1.22.1\tools\ffmpeg\bin\ffmpeg.exe" -i "D:\Temp\RipBot264temp\job1\job1_AUDIO1.avs" -f wav - | "E:\RipBot264v1.22.1\Tools\fhgaacenc\fhgaacenc.exe" --profile lc --cbr 320 --adts --ignorelength --quiet - "D:\Temp\RipBot264temp\job1\Encoded_Audio_1.aac"
ffmpeg version N-89803-g856b7cae9f Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7.2.0 (GCC)
configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-amf --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth --enable-libmfx
libavutil 56. 7.100 / 56. 7.100
libavcodec 58. 9.100 / 58. 9.100
libavformat 58. 3.100 / 58. 3.100
libavdevice 58. 0.100 / 58. 0.100
libavfilter 7. 11.101 / 7. 11.101
libswscale 5. 0.101 / 5. 0.101
libswresample 3. 0.101 / 3. 0.101
libpostproc 55. 0.100 / 55. 0.100
Guessed Channel Layout for Input Stream #0.1 : 5.1
Input #0, avisynth, from 'D:\Temp\RipBot264temp\job1\job1_AUDIO1.avs':
Duration: 02:21:15.97, start: 0.000000, bitrate: 0 kb/s
Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 1920x800, 23.98 fps, 23.98 tbr, 23.98 tbn, 23.98 tbc
Stream #0:1: Audio: pcm_s16le, 48000 Hz, 5.1, s16, 4608 kb/s
Stream mapping:
Stream #0:1 -> #0:0 (pcm_s16le (native) -> pcm_s16le (native))
Press [q] to stop, [?] for help
Output #0, wav, to 'pipe:':
Metadata:
ISFT : Lavf58.3.100
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 48000 Hz, 5.1, s16, 4608 kb/s
Metadata:
encoder : Lavc58.9.100 pcm_s16le
size= 4767732kB time=02:21:15.96 bitrate=4608.0kbits/s speed=26.9x
video:0kB audio:4767732kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000002%
PS D:\Temp\RipBot264temp\job1>
And with Normalize off.
dracore
8th February 2018, 21:19
In demux window select CORE
http://i.cubeupload.com/34x2JF.png
sorry i didnt say im using a remux of the bluray in mkv container with the dolby atmos kept so i dont get the core option as its not bluray structure
Atak_Snajpera
9th February 2018, 12:37
@Wishbringer
I've installed win10 PRO x64 (german version) on virtual machine and audio normalization works flawlessly. Problem is definitely on your side. That's gonna be all from me regarding this issue.
@dracore
use eac3to to extract ac3 core from extracted .thd file.
iSeries
9th February 2018, 15:59
Im having the same issue as Wishbringer - I have increase centre channel ticked in the general settings menu, and within the job I have normalise set (AC3 2.0 192kbps). Muxing fails because the audio job didn't run. If I double click the .cmd job nothing happens.
soneca
9th February 2018, 19:07
@soneca
x64 framesever debug mode has appeared!
https://forum.videohelp.com/threads/387939-64bit-DebugMode-FrameServer
Atak, did you ever take a test?
This is where I get this message when I load the .avi file. :confused:
https://s20.postimg.org/8rqv3h4gd/ripbot.png
Atak_Snajpera
9th February 2018, 19:44
Not yet... I've been busy with other stuff.
dracore
9th February 2018, 19:57
@Wishbringer
I've installed win10 PRO x64 (german version) on virtual machine and audio normalization works flawlessly. Problem is definitely on your side. That's gonna be all from me regarding this issue.
@dracore
use eac3to to extract ac3 core from extracted .thd file.
thank you that worked perfect :thanks:
Atak_Snajpera
9th February 2018, 21:47
Atak, did you ever take a test?
This is where I get this message when I load the .avi file. :confused:
Yep! It works!
http://i.cubeupload.com/lKrQmG.png
soneca
9th February 2018, 22:53
I did not understand...
The only thing we have to do is copy the two dll files to C: \ Windows \ system32
And merge dfsc64.reg to the registry.
slalom
10th February 2018, 20:02
@Atak
The data from the column "year" at the download poster window disappeared again
Atak_Snajpera
10th February 2018, 20:37
Yes I know. I've already fixed that. They really like to change that particular part in html code. Almost exactly one year ago they did the same.
BabyPuncher
11th February 2018, 03:18
One minor QoL suggestion: Add "HDR to SDR conversion" option to the New Job dialog. I like to queue up 4k and 1080p rips of the same content. Having to manually switch the option off after RipBot is done processing the 1080p versions limits how many jobs I can set and forget.
slalom
11th February 2018, 10:16
Yes I know. I've already fixed that. They really like to change that particular part in html code. Almost exactly one year ago they did the same.
Checked again today, I didn't get that update
Viper714
12th February 2018, 05:23
I converted two Blu ray movies [Mission Impossible(MI) 2 and MI 3] using the new version 1.22.1 and I am getting a lip sync issue on both movies. It is is roughly about 1/2 a second off. I've converted several movies in the past using a previous 1.20.0 and had not issues. Is anyone else having this issue as well??
Appreciate your time and thanks in advance...
GZZ
12th February 2018, 14:06
I converted two Blu ray movies [Mission Impossible(MI) 2 and MI 3] using the new version 1.22.1 and I am getting a lip sync issue on both movies. It is is roughly about 1/2 a second off. I've converted several movies in the past using a previous 1.20.0 and had not issues. Is anyone else having this issue as well??
Appreciate your time and thanks in advance...
That only happen to me when FFMpeg crashed in DE mode, then it missed to encode the last few frames and that makes the audio out of sync. So if you use DE mode, then make sure all the parts have been encoded properly by checking the 1.txt, 2.txt.... in the chunks folder see if the among of encoded frames match the expected input frames.
Atak_Snajpera
12th February 2018, 14:45
I converted two Blu ray movies [Mission Impossible(MI) 2 and MI 3] using the new version 1.22.1 and I am getting a lip sync issue on both movies. It is is roughly about 1/2 a second off. I've converted several movies in the past using a previous 1.20.0 and had not issues. Is anyone else having this issue as well??
Appreciate your time and thanks in advance...
Are you recompressing audio? Is source audio True-HD?
byteshare
12th February 2018, 16:50
C:\>"C:\RipBot264v1.22.0\EncodingClient.exe" "C:\Temp\RipBot264temp\job23\job23_EncodingClient.meta"
C:\>"C:\RipBot264v1.22.0\tools\mkvtoolnix\mkvmerge.exe" -o "C:\Fresh Off the Boat S04E02 1080p Amazon WEB-DL DD+ 5 1 x264-TrollHD.mkv" --compression 0:none --title "Fresh Off the Boat S04E02 1080p Amazon WEB-DL DD+ 5 1 x264-TrollHD" --default-duration 0:24000/1001fps "C:\Temp\RipBot264temp\video.265" --compression 0:none --language 0:eng "C:\Temp\RipBot264temp\job23\Encoded_Audio_1.opus"
mkvmerge v19.0.0 ('Brave Captain') 32-bit
Error: The file 'C:\Temp\RipBot264temp\job23\Encoded_Audio_1.opus' could not be opened for reading: open file error.
-------------------------
Elapsed Time: 04h:21m:57s
I had 4 jobs give me this error over the weekend. This is during the muxing at the end. Not sure why because other files of the same audio/video specifications didn't error out.
I am taking EAC3 5.1 (for 3 of the files) and AC3 5.1 and encoding them down to 2.0 OPUS 64bit....just a fast encode since I can't easily have "no-audio" as an option when batching and "copy audio" takes up too much space for some DTS files when I let the computer run for weeks without deleting files. I know that I'm using EAC3 here and not DTS but it is more of a default setting in this case.
Media Info of one of the files:
General
Unique ID : 188870380750488812638541235010041210742 (0x8E171CB873C8E72192811096A83AE776)
Complete name : C:\Fresh Off the Boat S04E02 1080p Amazon WEB-DL DD+ 5.1 x264-TrollHD.mkv
Format : Matroska
Format version : Version 4 / Version 2
File size : 1.99 GiB
Duration : 21 min 33 s
Overall bit rate mode : Variable
Overall bit rate : 13.2 Mb/s
Encoded date : UTC 2017-10-14 20:50:44
Writing application : mkvmerge v13.0.0 ('The Juggler') 64bit
Writing library : libebml v1.3.4 + libmatroska v1.4.5
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4
Format settings : CABAC / 4 Ref Frames
Format settings, CABAC : Yes
Format settings, ReFrames : 4 frames
Codec ID : V_MPEG4/ISO/AVC
Duration : 21 min 33 s
Bit rate mode : Variable
Bit rate : 12.6 Mb/s
Maximum bit rate : 15.0 Mb/s
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 23.976 (24000/1001) FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.253
Stream size : 1.89 GiB (95%)
Default : Yes
Forced : No
Color range : Limited
Color primaries : BT.709
Transfer characteristics : BT.709
Matrix coefficients : BT.709
Audio
ID : 2
Format : E-AC-3
Format/Info : Enhanced Audio Coding 3
Codec ID : A_EAC3
Duration : 21 min 33 s
Bit rate mode : Constant
Bit rate : 640 kb/s
Channel(s) : 6 channels
Channel positions : Front: L C R, Side: L R, LFE
Sampling rate : 48.0 kHz
Frame rate : 187.500 FPS (256 SPF)
Compression mode : Lossy
Stream size : 98.7 MiB (5%)
Language : English
Service kind : Complete Main
Default : Yes
Forced : No
Text
ID : 3
Format : UTF-8
Codec ID : S_TEXT/UTF8
Codec ID/Info : UTF-8 Plain Text
Duration : 21 min 22 s
Bit rate : 104 b/s
Count of elements : 572
Stream size : 16.3 KiB (0%)
Language : English
Default : No
Forced : No
Atak_Snajpera
12th February 2018, 17:13
Does audio decoding work in "Preview Script" in this job23?
iSeries
12th February 2018, 19:11
byteshare is having the same problem as me (and wishbringer I believe). The muxing fails with that message because the audio job hasn't run (or wasn't successful for some reason) so the audio file doesn't exist. I am also downmixing to 2.0 if that helps.
byteshare
12th February 2018, 21:12
Does audio decoding work in "Preview Script" in this job23?
It is really choppy but I can hear audio...my filters are giving me a slow FPS.
Update: hasn't happened again with the last few encodes. I'd just like an option to not have audio selected by default when running a batch job, but that is because I'm used to having my audio done separately with a different program.
GZZ
14th February 2018, 13:28
I have a Dolby Atmos file from a UHD where FFIndex fails and the batch import failes with "No Audio Track Error"
From the Test.log file
ffprobe version N-89803-g856b7cae9f Copyright (c) 2007-2018 the FFmpeg developers
built with gcc 7.2.0 (GCC)
configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-amf --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth --enable-libmfx
libavutil 56. 7.100 / 56. 7.100
libavcodec 58. 9.100 / 58. 9.100
libavformat 58. 3.100 / 58. 3.100
libavdevice 58. 0.100 / 58. 0.100
libavfilter 7. 11.101 / 7. 11.101
libswscale 5. 0.101 / 5. 0.101
libswresample 3. 0.101 / 3. 0.101
libpostproc 55. 0.100 / 55. 0.100
[avisynth @ 0000025021f2d140] FFAudioSource: No audio track found
(E:\Temp\RipBot264temp\job95\getinfo.avs, line 4)
E:\Temp\RipBot264temp\job95\getinfo.avs: Unknown error occurred
The demuxed *.thd file is fine, but the FFindex file is only 73 byte.
1_audio_English.thd 3.760.647.946
1_audio_English.thd.ffindex 73
With a previous movie I removed the audio from the input mkv file and then manual muxed it afterwards. But is there anyway to fix this ?
manson.reznor
14th February 2018, 22:55
Many thanks for the job on ripbot264.
Ripbot264 works fine to recode UHD files keeping HDR.
But there is plan to add UHD Bluray output ?
Because I want to re-create UHD BD from 4K HDR files.
Also Cuda or AMD App will be supported for 4K HEVC encoding ?
Ryushin
16th February 2018, 15:21
Many thanks for the job on ripbot264.
Ripbot264 works fine to recode UHD files keeping HDR.
But there is plan to add UHD Bluray output ?
Because I want to re-create UHD BD from 4K HDR files.
Also Cuda or AMD App will be supported for 4K HEVC encoding ?
I think CloneBD is perhaps what you are looking for. I don't think RipBot264 ever output Blu-ray disc structure (or DVD for that mater) format.
I think you will need some kind of Blu-ray UHD authoring software.
manson.reznor
16th February 2018, 20:31
CloneBD like DVDFab can only output 4K UHD structure from original structure - not from a MKV.
An I want to play recoded discs on any UHD players. I don't want MKV because compatibility on almost all UHD players...
dracore
18th February 2018, 22:34
is there any issues with ripbot with the threadripper 1950x as im not getting any diffrent speed encodeing hevc than when i use a 12 core haswell v3 cpu (xeon) ... sorry if this has been asked already i just expected better speeds thats all :)
GZZ
19th February 2018, 07:04
is there any issues with ripbot with the threadripper 1950x as im not getting any diffrent speed encodeing hevc than when i use a 12 core haswell v3 cpu (xeon) ... sorry if this has been asked already i just expected better speeds thats all :)
Try to uncheck "Limit to the following filter" in settings and make sure "Use multiple processing threads" is set to 0 if not already.
If that dosnt improve speed, then try activate the Distrubted Encoding (DE) and start a second Client Server (you find the exe in ripboots folder), then it will run 2 instance of the encoder which should help you to max out your CPU.
Atak_Snajpera
19th February 2018, 11:57
is there any issues with ripbot with the threadripper 1950x as im not getting any diffrent speed encodeing hevc than when i use a 12 core haswell v3 cpu (xeon) ... sorry if this has been asked already i just expected better speeds thats all :)
Looks familiar?
https://forum.doom9.org/showthread.php?p=1831443#post1831443
What is cpu usage? If below 100% then activate DE mode with extra servers.
https://forum.doom9.org/showthread.php?p=1831550#post1831550
dracore
19th February 2018, 12:36
Looks familiar?
https://forum.doom9.org/showthread.php?p=1831443#post1831443
What is cpu usage? If below 100% then activate DE mode with extra servers.
https://forum.doom9.org/showthread.php?p=1831550#post1831550
the cpu usage is 47% max so i will look into what you said and thank you for getting back to me :)
dracore
19th February 2018, 16:52
ive added the encode to run on 12 servers as 6 just uses half of the cpu but no matter what i try i can not get 12 servers to be active encoding - is there somthing im missing
Atak_Snajpera
19th February 2018, 17:55
You need to provide more information about your settings/script and so on. I do not even know where to start with questions...
dracore
19th February 2018, 23:26
i have it encoding fine now but after a while i get an ntdll.dll error is this fixable please
Atak_Snajpera
20th February 2018, 11:36
post your script.
Viper714
21st February 2018, 15:06
Are you recompressing audio? Is source audio True-HD?
Atak:
Sorry for the late response. Work has been quite overwhelming lately.
I am not re-compressing. I am using the core audio file as I want to keep the Dolby, DTS, or Atmos coding. See settings below:
http://i361.photobucket.com/albums/oo54/pcubillos/RipBot/Snag_8b266dc.png
http://i361.photobucket.com/albums/oo54/pcubillos/RipBot/Snag_8b28d50.png
Viper714
21st February 2018, 15:13
That only happen to me when FFMpeg crashed in DE mode, then it missed to encode the last few frames and that makes the audio out of sync. So if you use DE mode, then make sure all the parts have been encoded properly by checking the 1.txt, 2.txt.... in the chunks folder see if the among of encoded frames match the expected input frames.
GZZ:
I must apologize first as I am a noob when it comes to in-depth encoding details. I do not use DE mode (I think this means Denoise). I am able to find the .txt files, but where can I find the "expected input frames" count to see if it matches?
http://i361.photobucket.com/albums/oo54/pcubillos/RipBot/Snag_8b28d50.png
GZZ
21st February 2018, 17:48
GZZ:
I must apologize first as I am a noob when it comes to in-depth encoding details. I do not use DE mode (I think this means Denoise). I am able to find the .txt files, but where can I find the "expected input frames" count to see if it matches?
http://i361.photobucket.com/albums/oo54/pcubillos/RipBot/Snag_8b28d50.png
DE is Distrubuted Encoding and the txt file I talk about you will find in the chunck folder, not the interface. But if your not using DE, then forget about it.
Viper714
21st February 2018, 18:31
DE is Distrubuted Encoding and the txt file I talk about you will find in the chunck folder, not the interface. But if your not using DE, then forget about it.
Ahh!! Okay I do use Distributed Encoding (DE). So I looked at the file "DE_log_pass1.txt and found the following
Node Address : 192.168.1.5:1000
Encoded Chunks : 21 of 125 (17%)
Encoded Frames : 30244
Encoding Speed : 9.84 fps
Node Work Time : 00:51:12
-----------------------------------
Node Address : 192.168.1.5:2000
Encoded Chunks : 21 of 125 (17%)
Encoded Frames : 30243
Encoding Speed : 9.88 fps
Node Work Time : 00:51:02
-----------------------------------
Node Address : 192.168.1.6:1000
Encoded Chunks : 26 of 125 (21%)
Encoded Frames : 37468
Encoding Speed : 12.98 fps
Node Work Time : 00:48:06
-----------------------------------
Node Address : 192.168.1.6:2000
Encoded Chunks : 26 of 125 (21%)
Encoded Frames : 37830
Encoding Speed : 13.28 fps
Node Work Time : 00:47:28
-----------------------------------
Node Address : 192.168.1.8:1000
Encoded Chunks : 31 of 125 (25%)
Encoded Frames : 44623
Encoding Speed : 15.88 fps
Node Work Time : 00:46:50
-----------------------------------
So if I add the chunks encoded by each machine I get 125. When looking in the "Chunks" folder, it starts from 1 and continues sequentially to 125. All of the chuck numbered files "###.264" range from 19,699 through 180,271.
So I guess this is good as it does not show any missing chunks.
GZZ
22nd February 2018, 18:31
Ahh!! Okay I do use Distributed Encoding (DE). So I looked at the file "DE_log_pass1.txt and found the following
Node Address : 192.168.1.5:1000
Encoded Chunks : 21 of 125 (17%)
Encoded Frames : 30244
Encoding Speed : 9.84 fps
Node Work Time : 00:51:12
-----------------------------------
Node Address : 192.168.1.5:2000
Encoded Chunks : 21 of 125 (17%)
Encoded Frames : 30243
Encoding Speed : 9.88 fps
Node Work Time : 00:51:02
-----------------------------------
Node Address : 192.168.1.6:1000
Encoded Chunks : 26 of 125 (21%)
Encoded Frames : 37468
Encoding Speed : 12.98 fps
Node Work Time : 00:48:06
-----------------------------------
Node Address : 192.168.1.6:2000
Encoded Chunks : 26 of 125 (21%)
Encoded Frames : 37830
Encoding Speed : 13.28 fps
Node Work Time : 00:47:28
-----------------------------------
Node Address : 192.168.1.8:1000
Encoded Chunks : 31 of 125 (25%)
Encoded Frames : 44623
Encoding Speed : 15.88 fps
Node Work Time : 00:46:50
-----------------------------------
So if I add the chunks encoded by each machine I get 125. When looking in the "Chunks" folder, it starts from 1 and continues sequentially to 125. All of the chuck numbered files "###.264" range from 19,699 through 180,271.
So I guess this is good as it does not show any missing chunks.
The problem before the FFMpeg fix, was incomplete chuncks. Lets say you have chunck 4 and it crash midway, then it would only have encoded like 40% of the expected frames in the chunck, but before version 1.22.1 it would assume the chunck was completed and when it merge them all together the audio would go out of sync after this incomplete chunck. I normally just check the complete file and see if audio is in sync for the last part of the movie and if so, then everything should be fine.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.