Sorry i must ask again, i am really bad at this stuff, sorry.
But how many Watts are needed for it to work?
I tried to convert 500ma to watt or something, but we have different volt, and i donīt understand the meaning of everything,
so thought it was better to let someone who may know handle it.
Thanks
+ Reply to Thread
Results 331 to 360 of 944
-
-
Oh, I screwed up. That adpater's output is 9V DC, not AC. The polarity of the adapter doesn't matter for AC devices. Any inverter you get will be sufficient to drive a 500 mA (4.5 watts) device.
-
Ehm, so i could buy an Adapter instead on inverter?
Or what;S?
and 4.5 watt well, that isnīt anything;O
Well i would like the cheapest solution, but not one that doesnīt work or has been proven to be less functional. as you said something about Noise etc?
Thanks!
-
The amplifier device you want requires a DC input of 9v at 500ma...I forget the exact figures, but it will be printed on the chassis, and the DC adapter that comes with the amp is one designed to physically fit its input slot and deliver the correct DC power output to the amplifier. That Ac/DC adapter is a North American unit that has to be plugged into a 100v/60Hz AC power source. It's the AC power source that you are trying to match with the 220v/110v down-converter device. That down-converter will take 220v AC from your locality and convert it to 110v AC. There's no math involved. These down-converters are standard units sold all over the world.
So a circuit from start to finish would look like:
Your 220v AC power source, outputs 220v AC ->
220v/110v down-converter, outputs 110v AC ->
AC/DC adapter that comes with amplifier outputs 9v or 10v DC at proper amps ->
amplifierLast edited by sanlyn; 25th Mar 2014 at 14:18.
-
Ah i see, so for example this: http://www.legoelektronik.se/index.php/ac-ac-230-110v/230v-110v-ac-45w.html
Will work?
and then the power connector that comes with the amplifier connected to that.
EDIT: wait, with no math, do you mean there is down converters that does not get you strict to a certain amount of watt?Last edited by zerowalker; 29th Jan 2012 at 13:27.
-
That device outputs more than enough for small appliances like the amp, or even a VCR or laptop. Probably not enough for a hair dryer, toaster oven, or washing machine.
Last edited by sanlyn; 25th Mar 2014 at 14:19.
-
watts = volts * amps
The distribution amp's power supply can output 0.5 amps at 9 volts. 9 * 0.5 = 4.5 watts. -
Yeah good thing you told me, or both of you, as Electronics and all that stuff is extremely confusing for me;P
But i have a question, this is of to the Restoration Part.
Is there a way to apply filter, then instead of dithering to 8bit, you dither to 10bit (As 10bit encoding is available)? -
With the equipment and methods available to most consumers and hobbyists, you won't see any difference. A good 10-bit PC monitor to let you see what you're doing via computer will cost you about $3000 USD.
Last edited by sanlyn; 25th Mar 2014 at 14:19.
-
Yeah but, encoding to 10bit got some nice advantages. And if i filter it to 8bit just to upscale it to 10bit, i thought, if i can just filter it to 10bit i wonīt lose a step.
-
-
That was a bit to hard for me.
Wasnīt DitherPost() supposed to have 10bit implemented to it?
Sorry. -
I don't know what DitherPost() does. I was just describing how you could create a 10 bit dither with an 8 bit dither filter.
-
I think Ditherpost() just dither to 8bit, i may be wrong, will try to read more about it, there must be a simple way as 10bit is pretty favored this days.
-
Ah another question, more likely to be interesting.
I i have content that is Interlaced at some places and Progressive at some (though itīs all S-video/Composite) Transfered.
What settings should i use in QTGMC for Slower?
Maybe it doesnīt matter, but worth asking
EDIT: Also, the S-video (Cheap composite separation), does anyone get the artifacts on PS2, as i get it, PAL and NTSC.Last edited by zerowalker; 2nd Feb 2012 at 08:38.
-
-
Does it say the bit depth?
it always say 16, so guessing itīs the audio.
Yeah of course, but was wondering, should it be like that even if itīs progressive at some times? -
YUY2 = 8 bit Y, 8 bit U, 8 bit V
YV12 = 8 bit Y, 8 bit U, 8 bit V
RGB24 = 8 bit R, 8 bit G, 8 bit B
RGB32 = 8 bit R, 87 big G, 8 bit B, 8 bit alpha (usually dummy)
Note that the sum of the bits per channel is not the same as the average bits per pixel. YUY2 is 16 bits per pixel, YV12 12 bits per pixel, but they both encode 24 bit color. And RGB32 encodes 24 bit color. I'm not sure what AviSynth 2.6 says with 10 bit per channel formats.
That's the audio.
You can simply double the frames in the progressive sections with ChangeFPS(). Or ConvertFPS() if you like blended frames. Or use motion interpolation if you can stand the artifacts.
Code:src=WhateverSource() v1 = Trim(src, 0, a).ChangeFPS(2x) #progressive section v2 = Trim(src, a, b).QTGMC() #interlaced section v3 = Trim(src, b, 0).ChangeFPS(2x) #progressive section return(v1+v2+v3)
-
Avisynth itself supports only 8-bit formats. Higher bit-depth video can be handled via various utilities and plugins, but Avisynth itself will always report the bit depth as 8.
See http://avisynth.org/mediawiki/High_bit-depth_Support_with_Avisynth.
Code:src=WhateverSource() v1 = Trim(src, 0, a).ChangeFPS(2x) #progressive section v2 = Trim(src, a, b).QTGMC() #interlaced section v3 = Trim(src, b, 0).ChangeFPS(2x) #progressive section return(v1+v2+v3)
-
Oh, I thought 10 bit support had already been added to 2.6 (I'm still using 2.5.7). Guess, not.
Ah, yes, It's VirtualDub that doesn't include the last frame in a range. -
Yeah thought too, well hope they add it
And well i use QTGMC() and SelectEven(), so i donīt get the double framerate,
And itīs complicated as it changed alot between progressive and interlaced, so was more wondering, does it hurt the quality with QTGMC() on progressive?
Or does it sense that there is no interlace?
Thanks!
-
-
Ah nice
!
there is not any mode i should set it too?
Or any recommendations?
Thanks -
What is VFW?
As if i go VFW it lags alot with my capture card, but i can change saturation and sharpness with it?
Is there anyway to fix the lag or is it some kind of filter running above that just add the sharpness or something?
When i capture it goes fine it seems;O
Though, i canīt select the audio source;S
EDIT: It was possible if i set Audio Line In as Default Device.
EDIT 2: looks like i can change shapness and Saturation etc, then change back to the original capture mode, and the settings or leftLast edited by zerowalker; 2nd Feb 2012 at 20:17.
-
Start here:
1. Open the VirtualDub main window.
2. Press the "F1" key on your keyboard.
The Contents window will say version "1.5". Don't worry about it. Just keep reading.Last edited by sanlyn; 25th Mar 2014 at 14:19.
-
So itīs some old windows device drivers?
Well it says that virtualdub canīt save restore or control thse, but i can;O
And itīs good as that is the only place i can control the other settings except Bright and Contrast
PS: Was wondering if there is some way to Force my card into supporting pal 60, as my card supports NTSC = 60hz, and PAL M which is similar to pal 60 but grayscale(i think?).
So maybe there is a way to make it go NTSC mode, but still use PAL mhz for color? -
While you're adjusting Brightness and Contrast during capture, be mindful of the luma and color range limitations required by the format of your final output. It's difficult to judge by eye, if not impossible. Unless you're interested in sharpening your video's noise and then trying to clean it later, you normally wouldn't sharpen during capture. After capture there's only one way to change capture settings you didn't want and which cause processing or render problems: you have to capture again.
Last edited by sanlyn; 25th Mar 2014 at 14:20.
-
[QUOTE=zerowalker;2138588]
PS: Was wondering if there is some way to Force my card into supporting pal 60, as my card supports NTSC = 60hz, and PAL M which is similar to pal 60 but grayscale(i think?).
No.
PAL-M signals are identical to North American NTSC signals, except for the encoding of the colour carrier. Therefore PAL-M will display in monochrome with sound on an NTSC set and vice versa.
PAL-M is incompatible with 625-line based versions of PAL, because its frame rate, scan line, colour subcarrier and sound carrier specifications are different. It will therefore usually give a rolling and/or squashed monochrome picture with no sound on a native European PAL television, as do NTSC signals.
- http://en.wikipedia.org/wiki/PAL-MLast edited by sanlyn; 25th Mar 2014 at 14:20.
-
You can use GraphEdit to adjust the video with realtime feedback in VirtualDub. Start VirtualDub's capture module. With the preview active start GraphEdit. In GraphEdit select Graph -> Insert Filter. Find the video capture device and add it. Back at the main GraphEdit window right click on the capture filter and select Properties. Go to the Proc Amp tab. As you move the sliders on the proc amp you can see the video changing in VirtualDub. You can use VirtualDub's Histrogram feature to help get the levels correct.
https://forum.videohelp.com/threads/343001-Using-VirtualDub-s-capture-filter-proc-amp?p...=1#post2136979
Windows has two video systems, the older VFW (Video For Windows), and the newer DirectShow. VFW is deprecated by Microsoft but many programs still use it.
Similar Threads
-
Help me out with some questions about converting VHS to DVD?
By starheavenheat in forum Newbie / General discussionsReplies: 4Last Post: 5th Apr 2009, 23:22 -
45
By inherindian in forum Newbie / General discussionsReplies: 7Last Post: 4th Mar 2009, 20:26 -
Converting Cartoons to Xvid
By CartoonManic in forum Video ConversionReplies: 16Last Post: 15th Jun 2008, 16:31 -
3 questions about VHS > DVD
By Salva Veritate in forum Capturing and VCRReplies: 13Last Post: 26th Jan 2008, 14:05 -
A few questions regarding capturing processing and archival of home VHS vid
By ido22 in forum Capturing and VCRReplies: 2Last Post: 20th Aug 2007, 02:37