This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Disaster with wrong MPlayer
#40
Problem is that I need to either see the problem in the avs file that is used during the preview or need to be able to reproduce the issue.
Sadly the effect you describe doesn't happen here and the avisynth script I posted from your debug output in Post #38 shows the following (removed old comments added new once to describe what's happening):
Source = Import("/tmp/convert/merged-mp4-test.avs") # Input .avs is loaded
SourceFiltered = Source # Input is copied to SourceFiltered , so Source and SourceFiltered contain the same content
SourceFiltered = SourceFiltered.Tweak(sat=2.00) # Tweak is applied to SourceFiltered
SourceFiltered = SourceFiltered.ConvertToRGB32(matrix="Rec709") # SourceFiltered  is converted to RGB32 using the Rec709 matrix
Source = Source.ConvertToRGB32(matrix="Rec709")  # Sourceis converted to RGB32 using the Rec709 matrix
StackHorizontal(Source, SourceFiltered) # Source and SourceFiltered are stacked horizontally
return last # the stacked sources are returned
From this everything looks fine. Tweak only gets applied to the right side of the preview image.
Problem is for some reason, I do not understand and can't reproduce, the sides look the same for you.
I looked at the source code of Hybrid and [/url]avsViewer and nothing should have this effect once the above script is fed to avsViewer.

This is how I try to reproduce your issue:
  1. Start Hybrid
  2. load a source file
  3. switch to Filtering->Avisynth
  4. make sure Filtering->Support is set to 'Avisynth'
  5. I look at the script by pressing 'Filtering->Avisynth->Show current avisynth script', which shows:
    LoadCPlugin("/usr/bin/hybrid-bin/avisynthPlugins/ffms2.dll")
    # loading source: /home/selur/test.mp4
    #  input color sampling YV12
    #  input luminance scale tv
    Source = FFVideoSource("/home/selur/test.mp4",cachefile="/tmp/mp4_064533b12340540cfe9q4ceb031df893_125145377_1_0.ffindex")
    # current resolution: 720x576
    return last
  6. I copy and paste this script into an file I name '/home/selur/test.avs'.
  7. I press the 'Avisynth preview' button to make sure the ffindex file gets generated and the preview works. Then I close the preview.
  8. I load '/home/selur/test.avs' as source in Hybrid (Main->Base->Open File)
  9. I enable 'Filtering->Avisynth->Tweak'
  10. I set 'Filtering->Avisynth->Tweak->Staturation' from '1.00' to '2.00'
  11. I enable 'Filtering->Filter view'
  12. I start the 'Avisynth preview' again. (only the right side is show oversaturated here)
  13. I look at the script inside the temp folder which is used for the preview (in my case '/tmp/tempPreviewAvisynthFile08_29_54_346_tmp.avs') and look at it's content
    #  input color sampling YV12
    #  input luminance scale tv
    Source = Import("/home/selur/test.avs")
    # current resolution: 720x576
    SourceFiltered = Source
    # deinterlacing
    # filtering
    # color modifications
    # Current color sampling before 'Tweak' is 'YV12'
    # Supported color samplings for 'Tweak' are: 'YUY2, Y8, YV411, YV12, YV16, YV24'
    SourceFiltered = SourceFiltered.Tweak(sat=2.00)
    # adjust color to(2):
    RGB32SourceFiltered = SourceFiltered.ConvertToRGB32(matrix="Rec709")
    Source = Source.ConvertToRGB32(matrix="Rec709")
    StackHorizontal(Source, SourceFiltered)
    return last
-> Over here everything works like it is meant to be.

Assuming you didn't make a mistake and fed Hybrid with the already filtered Avisynth script I have no idea what is running wrong that you get the effect that you describe.

Seeing that you seem to got MeGui running and we seem to be running in circles here I would recommend to you to use MeGui.

Cu Selur
------
offline 02.-07. July, https://www.rockharz-festival.com/ Big Grin
Reply


Messages In This Thread
Disaster with wrong MPlayer - by zigbay03 - 14.05.2018, 00:53
RE: Disaster with wrong MPlayer - by Selur - 14.05.2018, 05:13
RE: Disaster with wrong MPlayer - by zigbay03 - 14.05.2018, 10:05
RE: Disaster with wrong MPlayer - by zigbay03 - 16.05.2018, 05:45
RE: Disaster with wrong MPlayer - by Selur - 16.05.2018, 17:58
RE: Disaster with wrong MPlayer - by zigbay03 - 17.05.2018, 02:42
RE: Disaster with wrong MPlayer - by Selur - 17.05.2018, 04:51
RE: Disaster with wrong MPlayer - by zigbay03 - 17.05.2018, 12:24
RE: Disaster with wrong MPlayer - by Selur - 17.05.2018, 17:26
RE: Disaster with wrong MPlayer - by zigbay03 - 18.05.2018, 00:22
RE: Disaster with wrong MPlayer - by Selur - 18.05.2018, 05:06
RE: Disaster with wrong MPlayer - by zigbay03 - 18.05.2018, 22:50
RE: Disaster with wrong MPlayer - by Selur - 19.05.2018, 05:31
RE: Disaster with wrong MPlayer - by zigbay03 - 19.05.2018, 07:53
RE: Disaster with wrong MPlayer - by Selur - 19.05.2018, 09:18
RE: Disaster with wrong MPlayer - by zigbay03 - 19.05.2018, 10:01
RE: Disaster with wrong MPlayer - by Selur - 19.05.2018, 10:25
RE: Disaster with wrong MPlayer - by zigbay03 - 19.05.2018, 14:32
RE: Disaster with wrong MPlayer - by Selur - 19.05.2018, 20:23
RE: Disaster with wrong MPlayer - by zigbay03 - 20.05.2018, 00:43
RE: Disaster with wrong MPlayer - by Selur - 20.05.2018, 00:59
RE: Disaster with wrong MPlayer - by zigbay03 - 20.05.2018, 03:19
RE: Disaster with wrong MPlayer - by Selur - 20.05.2018, 07:41
RE: Disaster with wrong MPlayer - by zigbay03 - 22.05.2018, 01:29
RE: Disaster with wrong MPlayer - by zigbay03 - 20.05.2018, 09:24
RE: Disaster with wrong MPlayer - by Selur - 20.05.2018, 09:47
RE: Disaster with wrong MPlayer - by zigbay03 - 20.05.2018, 23:04
RE: Disaster with wrong MPlayer - by Selur - 20.05.2018, 23:23
RE: Disaster with wrong MPlayer - by zigbay03 - 20.05.2018, 23:49
RE: Disaster with wrong MPlayer - by Selur - 21.05.2018, 00:09
RE: Disaster with wrong MPlayer - by zigbay03 - 21.05.2018, 03:45
RE: Disaster with wrong MPlayer - by zigbay03 - 21.05.2018, 06:51
RE: Disaster with wrong MPlayer - by zigbay03 - 22.05.2018, 06:31
RE: Disaster with wrong MPlayer - by Selur - 22.05.2018, 07:06
RE: Disaster with wrong MPlayer - by zigbay03 - 22.05.2018, 09:40
RE: Disaster with wrong MPlayer - by Selur - 22.05.2018, 14:40
RE: Disaster with wrong MPlayer - by zigbay03 - 22.05.2018, 22:32
RE: Disaster with wrong MPlayer - by Selur - 22.05.2018, 23:40
RE: Disaster with wrong MPlayer - by zigbay03 - 23.05.2018, 02:54
RE: Disaster with wrong MPlayer - by Selur - 23.05.2018, 08:42
RE: Disaster with wrong MPlayer - by zigbay03 - 24.05.2018, 10:17
RE: Disaster with wrong MPlayer - by Selur - 24.05.2018, 10:32

Forum Jump:


Users browsing this thread: 3 Guest(s)