Tuesday, March 6, 2012

K-Lite Codec Pack

About the K-Lite Codec Pack
The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats.

Download K-Lite Codec Pack
There are several different variants of the K-Lite Codec Pack. Ranging from a very small bundle that contains only the most essential decoders to a large and more comprehensive bundle. The global differences between the 5 variants can be found below.


Basic

* Contains everything you need to play all popular video file formats.
* Supports playback of AVI, MKV, MP4, FLV, MPEG, MOV, TS, M2TS, RMVB, OGM, WMV, 3GP, WEBM, and many more formats!
Download Basic

Standard

Same as Basic, plus:
* Includes Media Player Classic Homecinema.
* Includes a MPEG-2 decoder for DVD playback.
* Supports playback of FLAC and WavPack audio files.
* Includes MediaInfo tool.
Download Standard

Full

Same as Standard, plus:
* Supports several additional audio file formats.
* Contains a few ACM and VFW codecs for audio and video encoding.
* Contains a few useful tools, like GraphStudio.
Download Full

Mega

Same as Full, plus:
* Includes a few extra ACM and VFW codecs.
* Includes a few extra DirectShow filters
* Includes a few extra tools.
Download Mega

64-bit

For use on 64-bit versions of Windows.
For an optimal user experience it is highly recommended to also install one of the 32-bit variants from above, because most software that runs on 64-bit versions of Windows is still 32-bit.
Windows Vista x64 and Windows 7 x64 still use a 32-bit version of Windows Media Player by default. Windows Media Center and Windows Explorer are 64-bit applications. That is why you need both 32-bit and 64-bit codecs.
Download 64-bit



Keywords: Audio Codec, Codec filters, Codec Info Tools, Codec Packs, Codecs, DirectShow filters, Video Codecs.


Monday, March 5, 2012

Cum faci radio cu Sam Brodcaster


Cum faci radio cu Sam BrodcasterDownload SAM Brodcaster
DownloadShoutCastDNAS
Acum incepem cu instalarea
Instalare ShoutCastDNAS
IPB Image
IPB Image
IPB Image

CODE
C:\Program Files\SHOUTcast\sc_serv.exe
Deschideti aplicatia
IPB Image
IPB Image
Acum SAM Brodcaster
IPB Image
IPB Image
IPB Image
IPB Image
IPB Image
Aici Selectezi MS SQL doar daca ai MS SQL 2000 instalat...daca nu ai alegi My SQL si se va downloada automat mai tarziu
IPB Image
IPB Image
IPB Image
IPB Image
IPB Image
Acum Configurare SAM Brodcaster
Atentie:sc_serv.exe sa fie aprins
In Menu bar dati pe Window si bifati Encoders
IPB Image
IPB Image
IPB Image
IPB Image
IPB Image
Cate ceva
ASa adaogi muzica
IPB Image
IPB Image
Cum faci dedicati-ai nevoie de microfon
IPB Image
Sa fie bifat Mic on
Apoi cand vreti sa vorbiti la microfon apasati "Press to Talk"

Succes!




Keywords: Free Software, Free to try software, Freeware Software, Internet Software, Radio, Radio Servers, Radio Software, ShoutCast Servers, Streaming Audio Software, Tutorial, Tutorials.


Change Ubuntu Server from DHCP to a Static IP Address


If the Ubuntu Server installer has set your server to use DHCP, you will want to change it to a static IP address so that people can actually use it.
Changing this setting without a GUI will require some text editing, but that’s classic linux, right?
Let’s open up the /etc/network/interfaces file. I’m going to use vi, but you can choose a different editor
sudo vi /etc/network/interfaces
For the primary interface, which is usually eth0, you will see these lines:
auto eth0
iface eth0 inet dhcp
As you can see, it’s using DHCP right now. We are going to change dhcp to static, and then there are a number of options that should be added below it. Obviously you’d customize this to your network.
auto eth0
iface eth0 inet static
        address 192.168.1.100
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway 192.168.1.1

Tackle the Web with $5.99 .COM's from Go Daddy!
Now we’ll need to add in the DNS settings by editing the resolv.conf file:
sudo vi /etc/resolv.conf
On the line ‘name server xxx.xxx.xxx.xxx’ replace the x with the IP of your name server. (You can do ifconfig /all to find out what they are)
You need to also remove the dhcp client for this to stick. You might need to remove dhcp-client3 instead.

sudo apt-get remove dhcp-client
Now we’ll just need to restart the networking components:
sudo /etc/init.d/networking restart
Ping www.google.com. If you get a response, name resolution is working(unless of course if google is in your hosts file).
Really pretty simple.
Searchmetrics Link Essentials

Keywords: Configurare conexiune internet, Linux, Static IP Address, Tutorial, Tutorials, Ubuntu server.