November 5
Mpeg vs .avi
What is better quality when ripping off a dvd. .mpeg or .avi? Also, does changing format from .avi to .mpeg assuming you always pick the highest quality affect the quality from avi to mpeg?
Reason why I am asking is because I am attempting to take clips from avi high quality rips and converting the clips to .FLV. when i convert the .avi to clipped .flv the audio and video are out of sync. But, if i convert the .avi to mpeg then create the .flv clip the audio and video issue goes away but I want the highest quality clips. Thanks 142.176.13.22 (talk) 01:39, 5 November 2009 (UTC)
^^That was quite informative and clarified a lot of things. Thanks for the links. I'm still curious on why an .avi container to .flv does not sync audio yet a conversion from .mpeg(from the original .avi converted to mpeg) to .flV works fine. I figure it has to do with how the audio and video streams behind the container or the converter I am using sucks. Thanks for your information! 142.176.13.22 (talk) 04:06, 5 November 2009 (UTC)
Help with javascript please? highlighting links in menus.
Hi, i am trying to make a page on my website a little better with some javascript. I am trying to apply highlighting of links (blue) on mouse hover, and when the user clicks on the link i want it to turn a different (green) color and stay that color. As you will see by my code, i have accomplished this, but if you click a link you will notice the other links are no longer blue on hover. Why is this? is it because i used the script to make the style white, and that over-rides any other styles? Any help in fixing this little bug would be greatly appreciated! Thank you!
My code is here: http://pastebin.com/m20258cb7
Thanks again!
137.81.112.220 (talk) 04:08, 5 November 2009 (UTC)
Okay so heres the deal. In honesty a friend helped me code most of what was in that page, although i have had programming and do understand mostly how it works. I attempted to make the modification suggested (menulink_clicked class) however its not exactly working as i had thought. can someone have a look and correct my errors please? :)
http://pastebin.com/m5a4111d4
137.81.112.176 (talk) 20:54, 5 November 2009 (UTC)
Nevermind! i fixed it! thanks!!Resolved.
137.81.112.176 (talk) 21:13, 5 November 2009 (UTC)
iPhone v AppleMac Address Book
When I try to sync the Address Book with my iPhone, all the contacts are added in duplicate. Why should this happen please? Can I delete the entire contents (only) on my iPhone Contacts, and re-sync, if so how? Any advice would be appreciated please. Thanks in anticipation.--88.110.20.147 (talk) 08:34, 5 November 2009 (UTC)
How to get Wikipedia?
I want to use whole of Wikipedia offline. I thought of downloading Wikipedia (as a whole, not as PocketWikipedia). But is is huge. So, is there a way to get it on a DVD Set or CD Set? (I am ready to pay the price, if required). My Thanks in advance. Anirban16chatterjee (talk) 09:19, 5 November 2009 (UTC)
Would an AM3 Quad Core AMD computer work OK with Ubuntu?
Would it just be a normal instal, or does it start getting complicated please? 92.29.76.195 (talk) 10:06, 5 November 2009 (UTC)
vista ram
So I have windows Vista and 2 gb of ram. Why is 1 gb of ram always used up even when absolutely no programs are in use and after a fresh install? Is vista really that ram hungry that it needs a full 1gb just to run, when windows 7 seems to be working good on 512mb of ram —Preceding unsigned comment added by 82.43.88.201 (talk) 12:34, 5 November 2009 (UTC)
So if I installed Windows 7 on the same computer as my current windows vista, it wouldn't no longer use 1gb of ram it'd only use 512mb? So I'd have more free ram for programs and stuff? —Preceding unsigned comment added by 82.43.88.201 (talk) 15:07, 5 November 2009 (UTC)
Free advertising?
My friend has a forum website that really needs members. So what is the best free or cheap way to advertise it?Accdude92 (talk to me!) (sign) 14:43, 5 November 2009 (UTC)
Uncompressed image file formats other than .bmp files
What other file formats are there, apart from BMP files, that are uncompressed and can be processed as a raw bit stream? I require to know the exact file structure of these formats.
The results for searching this includes:
,Linux 64 Assembler Error
I keep getting a (Error: suffix or operands invalid for `pop') for the line (pop %ebx) when I try to compile a script for linux. I looked all over the internet and most hints state that this code is incompatible with linux 64 bit assembler. So what exactly do I have to do to compile it correctly in gcc? 70.171.22.194 (talk) 17:00, 5 November 2009 (UTC)asmProgrammer
Mac/Unix: Open a file from a remote server on command line
Hi all,
There is a server on my network that I have access to. If I want to copy a file to/from there, I can use scp otherserver:/path/to/file.txt file.txt . Is there any way to open up that file for editing on the command line? For instance, on my computer with TextMate installed, I can run mate file.txt . However, I cannot run mate otherserver:/path/to/file.txt . For some reason, the command tries to find a file in /Users/username/otherserver:/path/to/file.txt .
How should refer to a file on a remote server?
Thanks! — Sam 63.138.152.155 (talk) 18:53, 5 November 2009 (UTC)
ssh -X otherserver mate /path/to/file.txtssh otherserver vi /path/to/file.txtscp otherserver:/path/to/file.txt file.txtmate file.txtscp file.txt otherserver:/path/to/file.txtssh otherserver sudo sh -c 'echo "/path/to your-local-ip-address/255.255.255.0(rw)" >> /etc/exports' sudo /etc/init.d/nfsserver reload # this will vary based on what the other machine is exitsudo mkdir -p /mount/otherserver/pathsudo mount otherserver:/path /mount/otherserver/pathmate /mount/otherserver/path/file.txt
Help with java script (Part 2) Folding items?
You may remember my post from earlier today where i had issues with a menu highlight system using JS. Ive fixed this now thankfully, but i still need to impliment one more thing. I need to make it so that when you click each of my links, there is a function which shows the appropriate table for that specific link. I have tried to do this once before by simply googling the effect i needed, but i only managed to do strange things like unfold a table by clicking ANYWHERE on the links table, which i obviously dont want! Therefore i removed all of the extra code and decided to ask you, the pros!
What is the best way to impliment folding (hiding!) of tables until the user requests a specific table? I do want to hide all tables except the relevant one. I am including my fixed menu code for reference, with a table for an example. Thanks in advance for any help you can give!
http://pastebin.com/m1266827b
137.81.112.176 (talk) 21:22, 5 November 2009 (UTC)
function showRow(id) {var ctl = document.getElementById(id);if(ctl.style.display=='none') { ctl.style.display='block';} else { ctl.style.display='none';}}$$('tr.toggleable').each(function(el) { el.observe('click', Element.toggle) })What's a good definition of a .NET assembly?
I'm trying to come up with a good definition of an .NET assembly. I don't particularly care for the definition given in our article. So far, I've come up with the following (which I've gleaned from a variety of sources):
A .NET assembly is
a reusable, versionable, and self-describing building block of a .NET applicationa collection of types and resources that forms a logical unit of functionality. It contains code in the form of Intermediate Language (IL) along with metadata about the assembly. An assembly can also contain resources used by the assembly. There are two types of assemblies: executables (EXEs) and dynamic link libraries (DLLs). An EXE is a program which can be run by the user. A DLL is a library which is dynamically linked to an executable at run-time. When an application is run, the IL code is compiled into machine language by the CLR (Common Language Runtime)'s just-in-time compiler. Although it's technically possible to create assemblies that span multiple files, in most situations an assembly is a single file.12.165.250.13 (talk) 21:51, 5 November 2009 (UTC)
Free Freez FLV to AVI MPEG WMV Converter Download
Free Freez FLV to AVI MPEG WMV Converter Download,Freez FLV to AVI MPEG WMV Converter 1.5 is convert Flash FLV video files to AVI, MPEG, WMV video files converter eye to avi
FAQ for 4U AVI MPEG Converter
a vidoe software to convert video AVI, MPEG, WMV, ASF, MOV to AVI, MPEG, WMV, RM or MP3.
Allok AVI MPEG Converter - Convert video between AVI DivX MPEG VCD ...
Allok AVI MPEG Converter is designed to meet all your needs of convert video file between AVI, DivX, MPEG, VCD, SVCD, DVD, WMV formats.
AVI to MPEG in 15 minutes, WinAVI Video Convert free download now!
AVI to MPEG Converter . WinAVI Video Converter can convert AVI to MPEG. It's a AVI to MPEG converter to convert AVI MPEG format.
Download 4U AVI MPEG Converter
4U AVI MPEG Converter is a software to convert video AVI, MPEG, WMV, ASF, MOV to AVI, MPEG, WMV, RM or MP3 format.
Free FLV to AVI MPEG WMV 3GP MP4 iPod Convert Download
Free FLV to AVI MPEG WMV 3GP MP4 iPod Convert Download,FLV to AVI MPEG WMV 3GP MP4 iPod Convert 5.2.0603 is Convert FLV to AVI, FLV to MPEG, FLV to WMV, Youtube to iPod Converter
AVI, MPEG - Convert AVI to MPEG-1, MPEG-2 - AVI to MPEG Converter ...
All-in-one software features AVI to MPEG converter, AVI and MPEG editor, MPEG burner, and much more.
CONVERT MPEG TO AVI, CONVERT MPG TO AVI, MPG MPEG CONVERTER EDITOR
MPEG CONVERTER can convert MPEG to AVI. MPG CONVERTER can convert mpg to avi
AVI Converter - Converter for AVI Files - AVI Converter Software
AVI Converter Software, Converter for AVI, MPEG, WMV Files. The Blaze Media Pro software features a powerful AVI converter that includes an AVI to MPG converter ...
Xilisoft AVI MPEG Converter 5.1.26.1106
http://i35.tinypic.com/209n1mv.jpg Convert your AVI files to MPEG format and vice versa with Xilisoft AVI MPEG Converter. In addition, popular video formats such as MPEG-2 HD ...