Welcome Guest ( Log In | Register )


Important

The forums will be closing permanently the weekend of March 15th. Please see the notice in the announcements forum for details.

Pages: (26) « First ... 20 21 [22] 23 24 ... Last » ( Go to first unread post )
Ffmpeg Input Driver, Experimental driver based on ffmpeg libs
« Next Oldest | Next Newest » Track this topic | Email this topic | Print this topic
kolak
Posted: Jan 29 2015, 01:13 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



Yes- fixed now.
 
     Top
kolak
Posted: Jan 29 2015, 03:38 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



Could you please build 64bit version of the latest version?
 
     Top
dloneranger
Posted: Jan 29 2015, 04:12 PM


Moderator


Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07



V0.8.2.2 beta f x64

--------------------
MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask
Windows7/8 Codec Chooser
All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3
 
    Top
kolak
Posted: Jan 29 2015, 04:27 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



Thank you- very quick smile.gif

What about adding v210 pixel format for 10bit codecs, like ProRes etc?
Support in Vdub is limited, but at least you could convert ProRes to eg. Cineform at 10bit.
 
     Top
dloneranger
Posted: Jan 29 2015, 04:34 PM


Moderator


Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07



Virtualdub only handles 8bit formats so they all have to be converted to one of those
FFMpegs dlls handle all the input video files and decoding, I just get to pick one of virtualdubs supported formats


--------------------
MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask
Windows7/8 Codec Chooser
All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3
 
    Top
kolak
Posted: Jan 29 2015, 04:37 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



It does read v210 and you can set Color Depth to 10bit 4:2:2, but v210 may be the special case, which is read "natively".

What you can do is to convert from one 10bit codec (which can present v210 on the decoding) to another 10bit codec which support v210 as an input (Cineform, UTVideo, MagicYUV do).
No filters can be applied.

Thought this could be done for ProRes, ffv1 etc, but it may not be possible.
 
     Top
dloneranger
Posted: Jan 29 2015, 05:23 PM


Moderator


Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07



Sorry, it's not in the list of supported formats for the input plugins

--------------------
MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask
Windows7/8 Codec Chooser
All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3
 
    Top
kolak
Posted: Jan 29 2015, 05:36 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



That's what I thought.
 
     Top
shekh
Posted: Jan 29 2015, 08:04 PM


Advanced Member


Group: Members
Posts: 89
Member No.: 37903
Joined: 21-April 14



By coincidence I discovered utvideo & 10bit formats few days ago and the fact that VirtualDub handles v210.
The problem actually is:
v210 is "special" packed format. The driver can return it, code=21. But swscale/ffmpeg does not support it.
So what is possible is a chain of questionable transformations:
decoded format (for example 444 10 bit planar) to intermediate format (422 10 bit planar) by swscale,
then to v210 by handcrafted code (maybe there is one already somewhere, the slow reference may be v210 raw encoder from libavcodec),
then virtualdub will take it and convert again to rgb for display

might work but.. too much trouble and in the end all you can do is reencode one codec to another.
 
     Top
kolak
Posted: Jan 30 2015, 09:40 AM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



Yes, v210 is a special case and your description could work, but as you said it may be to much of a hassles for not much of a usage.

Does ffmpeg have any "hidden" good dithering algorithm (3 available are not that good)? We need something like Floyd-Steinberg or Filter Lite.
 
     Top
shekh
Posted: Jan 30 2015, 10:40 AM


Advanced Member


Group: Members
Posts: 89
Member No.: 37903
Joined: 21-April 14



I dont know, the options listed here: https://www.ffmpeg.org/ffmpeg-scaler.html
‘bayer’ = bayer dither
‘ed’ = error diffusion dither
‘a_dither’ = arithmetic dither, based using addition
‘x_dither’ = arithmetic dither, based using xor (more random/less apparent patterning that a_dither).

I`m not expert in dithering either, looks like floyd-steinberg IS error diffusion method?
As I understand you want to convert high bit depth to 8 bit rgb. Did you try it with ffmpeg utility?
Everything in swscale needs to be checked whether it is applied at all. There are code paths which ignore some or all options.
 
     Top
kolak
Posted: Jan 30 2015, 02:39 PM


Member


Group: Members
Posts: 10
Member No.: 38591
Joined: 28-January 15



Yes, these methods are not very good, or they are skipped as you said.

Avisynth has very good dithering filters, so I use those.

Tis was just an idea- if we can't pass 10bit we could at least dither it nicely to 8bit.
 
     Top
dloneranger
Posted: Jan 31 2015, 07:54 PM


Moderator


Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07



V0.8.2.2 released [31 January 2015]

Modified use longest duration of audio when stream and format lengths are different
Modify pad end of audio packet when at the end of an audio stream
Fix reading very first audio packet when seeking
Fix honouring the sync video/audio option when turned off
Modify try reducing some seeks in the audio
Modify add extra codec info to file information dialog
Fix video stream may change height/width during decoding, caused green bars at bottom or right
Fix decode error in sws_scale that could crash on certain height/widths when playing in virtualdub
Modify file information dialog to add some more info
Modify audio delay when first frames are dropped

See first page or sig for download links

--------------------
MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask
Windows7/8 Codec Chooser
All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3
 
    Top
dloneranger
Posted: Feb 14 2015, 11:44 AM


Moderator


Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07



V0.8.2.3 [14 February 2015]
Update ffdlls to 2.5.4
Fix small bug in offset audio when dropped frames are at the beginning
Modify ensure width/height are mod2 when aspect scaling is enabled
Modify use lanczos scaling when aspect ratio is enabled


--------------------
MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask
Windows7/8 Codec Chooser
All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3
 
    Top
-vdub-
Posted: Feb 14 2015, 12:56 PM


Advanced Member


Group: Members
Posts: 613
Member No.: 27087
Joined: 24-February 10



Quick select on sourceforge is for the plugin source.zip not the plugin itself
 
    Top
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
378 replies since May 10 2011, 10:20 AM Track this topic | Email this topic | Print this topic
Pages: (26) « First ... 20 21 [22] 23 24 ... Last »
<< Back to VirtualDub Filters and Filter Development