NightFox
Автор того AMV, lolligerjoj пишет:

The hardest part of course is that in anime the animation isn't drawn every frame, but mostly every 3rd or 2nd frame, which meant I had to go through everything I recorded and remove every duplicate frame manually through time-remapping.

"Тяжелейшая часть конечно же это то, что движения в аниме не прорисованы в каждом кадре, а чаще всего в каждом 3-м или 2-м кадре, это означало, что мне пришлось пройтись через все записи и удалить каждый кадр-дубль вручную с ипользованием тайм-римэпера."
Так что и тут не обошлось без ручного удаления кадров-дублей wink

Слишком осторожным оказался мой телек Philips 40PFL5007T, подключенный по HDMI. На любые нестандартные режимы с частотой выше 60 ГЦ он сообщает русским языком: "Неподдерживаемый видеоформат" sad
Добавлял высокие частоты при помощи Custom Resolution Utility и при помощи панели NVIDIA:
NVIDIA Control Panel - Display - Change resolution - TV Philips - Customize... - Create Custom Resolution... - указывал и тестировал новую частоту.
Оба метода показали одинаковый результат: мой ТВ не поддерживает высокую частоту кадров.

3,053

(42 replies, posted in Using SVP)

JT!
About bandwidth.
What results in Speedtest.net?

3,054

(42 replies, posted in Using SVP)

I mean open browser at 1080p screen (drag to it), open any YouTube video in browser. After that open SVPTube and copy URL.

gaunt
Можно сделать с отрицательным 8*8 блок и -2 перекрытие
Нельзя.

Если уже мы жертвуем какие-то координаты , ограничивая радиус поиска , почему напрочь отвергаем идею уменьшить размер блока поиска ?
офтоп

farookh1
Все объяснимо. i7-3770 имеет базовую частоу 3,4 и турбобуст до 3,9. Xeon E3-1230 v2 имеет базовую частоу 3,3 и турбобуст до 3,7.

James D
6 - 6x6 перекрытие 0
7 - 7x7 перекрытие 0
8 - 8x8 перекрытие 0

Нет.
6 - 8x8 перекрытие 2
7 - 8x8 перекрытие 1
8 - 8x8 перекрытие 0

почему нельяз сделать с таким же нулевым перекрытием и 10x10
dlr5668 прав. Потому что сторона блока должна быть степенью двойки, а SVP поддерживает только три таких размера: 8, 16, 32.

3,058

(42 replies, posted in Using SVP)

My colleague told me I am wrong. SVPTube don't filter resolution. This resolutions list comes from YouTube server.

Please check in your system when 1080p resolution will appear.
1. Make your 1080p monitor your default at a short time and exit/start again SVPTube.
2. Open your browser at 1080p when 7xx monitor is default.

3,059

(6 replies, posted in Using SVP)

Fanty1972
"Out of memory"/"Runtime error" messages and crashes and "flashes" in the resulting video can be fixed by pointing lesser value in the "global threads=x" line. Point 2 or 3. It is enough for encoding.

Try it.

3,060

(42 replies, posted in Using SVP)

Noweol is right. SVPTube don't show resolutions that have bigger size than screen size. I tested it.

asd98
У меня телек не 3D, подключен по HDMI, поэтому очень мала вероятность, что он примет 120 к/сек на вход. Тем не менее попробую.
К слову, стандарт HDMI официально поддерживает 1080p@120 Hz с версии интерфейса 1.4b (wiki).

NightFox
Спасибо за ссылку на Pixel Clock Patcher и Strobelight. Обе утилитки пригодятся. cool

3,062

(42 replies, posted in Using SVP)

1080p works for me. SVPTube 1.0.5.
Link: http://www.youtube.com/watch?feature=pl … 0tLbWv5K60

http://www.svp-team.com/forum/misc.php?item=2827

I think you try to view YouTube video that has not 1080p version saved at server wink

3,063

(6 replies, posted in Using SVP)

Fanty1972
See script in step 7:

Setmemorymax(512)
SetMTMode(3,4)
PluginPath = "C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\"
LoadPlugin(PluginPath+"svpflow1.dll")
LoadPlugin(PluginPath+"svpflow2.dll")
Import(PluginPath+"InterFrame2.avsi")
<input>.ConvertToYV12()
SetMTMode(2)
<deinterlace>
<crop>
<denoise>
<resize>

InterFrame(Cores=4)

By SVP tray menu: Generate AVS-script - For video encoder. Take this script, modify it: add/replace marked lines before and after "SetMTMode(2)" line. Place it instead of script in step 7. You will get script like this:

# This script was generated by SmoothVideo Project (SVP) Manager.
# Check http://www.svp-team.com for more details.

SetMemoryMax(1024)

global svp_scheduler=true
global threads=7
global svp_cache_fwd=threads+2

LoadPlugin("D:\SVP\plugins\svpflow1.dll")
LoadPlugin("D:\SVP\plugins\svpflow2.dll")

SetMTMode(3,threads)
<input>.ConvertToYV12()
SetMTMode(2)
<deinterlace>
<crop>
<denoise>
<resize>

global crop_params=""
global resize_string=""
global super_params="{pel:1,scale:{up:0},gpu:1,full:false,rc:false}"
global analyse_params="{block:{overlap:1},main:{search:{coarse:{distance:-10,bad:{sad:2000,range:24}}},penalty:{pzero:100}}}"
global smoothfps_params="{cubic:0,rate:{num:5,den:2},algo:13,scene:{limits:{blocks:20}}}"

global demo_mode=0
stereo_type=0
stereo_left_selection=""
stereo_right_selection=""

########## BEGIN OF MSMoothFps.avs ##########
# This file is a part of SmoothVideo Project (SVP) 3.1.4
# This is NOT the full AVS script, all used variables are defined via
# JavaScript code that generates the full script text.

function interpolate(clip src)
{
    input = crop_params=="" ? src : eval("src.crop("+crop_params+")")
    input = resize_string=="" ? input : eval("input."+resize_string)

    super=SVSuper(input, super_params)
    vectors=SVAnalyse(super, analyse_params, src=input)
    smooth=SVSmoothFps(input, super, vectors, smoothfps_params, mt=threads, url="www.svp-team.com")

    return demo_mode==0 ? smooth : demo(input,smooth)
}

input=last

    stereo_type==0 ? eval(""" interpolate(input)
""") :     stereo_type==1 || stereo_type==3 ? eval("""
        lf = interpolate(input.crop(0,0,input.width/2,0))"""+stereo_left_selection+"""
        rf = interpolate(input.crop(input.width/2,0,0,0))"""+stereo_right_selection+"""
        StackHorizontal(lf, rf)
""") :     stereo_type==2 || stereo_type==4  ? Eval("""
        lf = interpolate(input.crop(0,0,0,input.height/2))"""+stereo_left_selection+"""
        rf = interpolate(input.crop(0,input.height/2,0,0))"""+stereo_right_selection+"""
        StackVertical(lf, rf)""") : input

########### END OF MSMoothFps.avs ###########

3,064

(6 replies, posted in Using SVP)

Fanty1972
Did you see tutorial from SubJunk: Convert videos to 60fps?
He uses MeGUI too. wink

James D
Такого шага нет.
Шаг 8 пкс = блоки 8x8 c перекрытием 0
Шаг 12 пкс = блоки 16x16 c перекрытием 4
Перекрытием может составлять половину либо четверть стороны блока.

sergjjj
Спасибо, очень интересный способ хака телека, чтобы "разогнать" его до 120 Гц. cool

3,067

(5 replies, posted in Using SVP)

spyro
How did you deal with frame drops?
I watched your video. It has at least 20% dropped frames.

3,068

(3 replies, posted in Using SVP)

alain48-c
You can view GPU Load in GPU-Z. You can try to use Overlay renderer to decrease GPU Load. If it is about 100% then you need more powerful card.

3,069

(5 replies, posted in Using SVP)

spyro
It is strange. I will try your script with VirtualDub next week.

3,070

(3 replies, posted in Using SVP)

hlina
Try to change Frame interpolation mode to Uniform in profile settings window.

jorgea
It is one problem called "Halo effect" in both cases. We work on it. It is not trivial.

Ruslan

Экстремально мощный игровой компьютер Hyper Cosmos
Цена: 354 500 руб.

И это цена без монитора big_smile

Martin Prince
http://www.mediafire.com/

3,074

(6 replies, posted in Using SVP)

rservello
How are you watching blu-rays with SVP in the first place?
I see 3D-rips and 3D-remuxes only. Not BD3D. I use sterescopic player and SVP.

PowerDVD incompatible to SVP because it can't use ffdShow.
You can try PowerDVD's internal smoother: TrueTheater Motion. But I don't know if it works with BD3D.

aluo
Sorry. I did not see your messages before. It is because you changed your previous message. Forum shows me new messages only, and not watch to edited messages. sad

Error: SVPMgr.exe application name, version: 3.1.5.931, time: 0x2a425e19
Error module name: amdocl.dll, version: 10.0.1084.4, time: 0x50d225d5
The exception code: 0xc0000417

I see now. It is OpenCL error. 0xc0000417 = STATUS_INVALID_CRUNTIME_PARAMETER.
What AMD driver version are you using?

I think you need to completely remove your current AMD driver (use Driver Fusion) and install it again (this or last stable version).