Posts by ISeeTWizard

    Since the Bing search is in the start menu I always have issue searching and finding what I'm looking for as he always also searches the web.

    So here is a little registry tweak to simply disable this search function.

    Code
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
    "BingSearchEnabled"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
    "BingSearchEnabled"=dword:00000000

    Pay attention that you can have for the current user under HKEY_LOCAL_USER or system wide under HKEY_LOCAL_MACHINE

    A small PowerShell script to check the uptime of a computer over the network.

    PowerShell
    $ComputerName = "MACHINENAME"
    
    $userSystem = Get-WmiObject win32_operatingsystem -ComputerName $ComputerName -ErrorAction SilentlyContinue 
    
    if ($userSystem.LastBootUpTime) { 
    $sysuptime= (Get-Date) - $userSystem.ConvertToDateTime($userSystem.LastBootUpTime) Write-Output ("Last boot: " + $userSystem.ConvertToDateTime($userSystem.LastBootUpTime) ) Write-Output ("Uptime : " + $sysuptime.Days + " Days " + $sysuptime.Hours + " Hours " + $sysuptime.Minutes + " Minutes" ) 
    }
    else { 
    Write-Warning "Unable to connect to $computername" 
    }

    Sometimes it is useful to get the files list of a folder into an Excel Sheet.

    This is very simple to realize thanks to Powershell.

    You just need to import a module and enter the following:

    PowerShell
    Install-Module -Name ImportExcel
    
    (Get-ChildItem C:\FolderName -file).BaseName | Export-excel folderlist.xlsx

    Of course, you can name your file how you want.

    Windows Firewall - Remote Access through MMC

    Enable rule to let the remote pc in:

    PowerShell
    Enable-NetFirewallRule -DisplayGroup Windows -Firewallremoteverwaltung -CimSession


    Enable the rule in a domain environment:

    PowerShell
    Get-NetFirewallProfile -CimSession Win10Pro-VM1-L1 -Name Domain | Get-NetFirewallRule | ? DisplayGroup -eq Windows-Firewallremoteverwaltung | Enable-NetFirewallRule

    Pay attention that this codes needs to be used in an elevated powershell console.

    You can import easily a CSV file in your SharePoint List. If you have a file with special characters like french ones (éàè) you should save your file as CSV UTF-8 format.

    You have to first load a module in your PowerShell Session (which you open as admin as usual)

    PowerShell
    Install-Module SharePointPnPPowerShellOnline

    If you connect to your Sharepoint you can test it with (after Connect-PnPOnline)


    PowerShell
    Get-PnPlist
    
    
    Example for Connect-PnPOnline
    
    Connect-PnPOnline -Url "https://yourURL.tld" -Credentials (Get-Credential)

    For the correct field name from sharepoint you have to edit the column and than look in the URL how it is written


    PowerShell
    https://xy.com/site01/_layouts/15/FldEdit.aspx?List=%7BDC358694-4BDB-4369-BA40-F8CB09535F10%7D&Field=Full_x0020_Name 

    In the URL you will find Field= at the end of it and what is written behind is the field name you have to take in the script (Here in the example: Full_x0020_Name)

    Now you can execute the full script (see below)


    Script:

    PowerShell
    $credentials = Get-Credential -Message "Please Enter SharePoint Online credentials"
    $Site="https://xy.com/site01/"
    $TestData = Import-CSV "C:\scripts\testutf8.csv"
    Connect-PnPOnline -Url $Site -Credentials $credentials
    
    foreach ($Record in $TestData){
    Add-PnPListItem -List "Name of the list" -Values @{
    "Title"= $Record.'Shortcut';
    "Full_x0020_Name"= $Record.'Full Name';
    }}


    The Records are defined with SharePointColumnName = $Record.'ColumnNameInCSVFile'

    In different cases it is more convenient to read out the BIOS settings within Windows or even modify them.
    Depending on the brand of your machine you can find a complete handbook to achieve that with PowerShell.

    Here I give you the example for Lenovo and HP - Just examples that may work for your machine or not - check the manual corresponding do your machine!


    Lenovo

    Tested on Lenovo T14 models.


    HP

    Tested on HP 840 models.

    At the moment there is a bug running through Windows 11 where the search doesn't work anymore.

    Here is a small script that you can start as admin to reset your search and put it into a working state again.

    The comments are in french!

    As this function is now live and no-one wants this shit here is a way to disable it again:

    Or alternatively simply this here:

    PowerShell
    Disable-WindowsOptionalFeature -Online -FeatureName "Recall" -Remove

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Code
    Den Key erstellt Ihr euch über SSH mit folgendem Befehl
    Achtung: Domainname natürlich mit eurem ersetzen!
    
    ddns-confgen -a hmac-sha512 -z Domainname


    Example: Named.conf

    I edited some things and replaced them with EDITED - so be careful

    What is actually just added is the following:

    Code
    key "ddns-key.dyndns.datateam.center" {
            algorithm hmac-sha512;
            secret "Euer generierter Key";
    };
    
    Unter der Zone kommt folgendes:    
        update-policy {
              grant ddns-key.dyndns.datateam.center zonesub ANY;
        };

    You will receive exactly what is entered when you generate your key.

    Example: Key File

    Code
    key "ddns-key.dyndns.datateam.center" {
            algorithm hmac-sha512;
            secret "Euer generierter Key";
    };

    PowerShell Script

    Here I created the dyndns directory on C: on a Windows computer.

    Below I copied the DLL files and nsupdate.exe from the ZIP file from the Bind DNS server.

    dyndns.datateam.center.key is the file with the generated key. You can name it whatever you want, you just have to adapt the PowerShell file 🙂

    Sometimes there are missing options for the power plan especially on laptops.

    Here are some options to restore them.

    Sensor Size

    The crop Factor represents the difference in size between a 35mm film frame and the sensor of your camera.

    In digital photography, the crop factor, format factor, or focal length multiplier of an image sensor format is the ratio of the dimensions of a camera's imaging area compared to a reference format; most often, this term is applied to digital cameras, relative to 35 mm film format as a reference. In the case of digital cameras, the imaging device would be a digital image sensor. The most commonly used definition of crop factor is the ratio of a 35 mm frame's diagonal (43.3 mm) to the diagonal of the image sensor in question; that is, CF = diag35mm / diagsensor
    Given the same 3:2 aspect ratio as 35mm's 36 mm × 24 mm area, this is equivalent to the ratio of heights or ratio of widths; the ratio of sensor areas is the square of the crop factor.

    Wikipedia


    Depth of field

    Shallow D.O.F.
    f/2.8
    Here the center, as example a person, is in focus. The left and right side is out of focus.


    Deep D.O.F.
    f/16
    Here you can say that everything is in focus.


    Exposure Interval

    Short Intervals like 1/4000 freezes the motion

    Long Intervals like a second will blur the subject in movement


    Exposure

    The exposure can be set from -3 up to +3.
    Normally 0 is just right but if you want it brighter you can go up to +3 and of course if you want darker you can go down step by step to -3.

    It all depends what kind of photo you want to take.


    Shutter Speed

    If you set a slow shutter speed like 30, 15, 8, 2 or 1 second a tripod is recommended.
    You use that for night or low light photos as example as also for long exposures or a blur motion

    If you than swap over to 1/30, 1/50 second handheld is OK.
    You use this on sunny days, family shots or outdoor photos.

    And than you have 1/100, 1/250, 1/100 for less light scenes.
    This is used for shorter exposure and to freeze actions.


    ISO

    In resume you can say to use low ISO in good lightning and high ISO in bad lightning.

    As example on a sunny day without clouds you can use ISO 100. When some clouds are coming you can move up to 400. If now there is no sun but just clouds you need to swap to 800 and on heavy clouds even up to 1600. At night with only the moonlight available maybe 6400 is good.
    These are just examples - you need to find out yourself what is best for your actual case of course.


    Aperture

    The aperture is mostly given in f/2.0 up to f/8.0 (f/8.0 is not the max - you can even have/use f/22 - I just mention the commonly used values).
    f/2.0 is an open aperture and here the photo is lighter. With this you can blur the background and it is often used for shooting portraits.

    f/8.0 is a closed aperture and the photo will get much darker. Here you can shoot clearer backgrounds and it is mainly used for shooting landscapes.


    Exposure Triangle

    Focal Length

    Often you here that someone has a lens with 50mm or 300mm etc. This in fact indicates the angle used.

    So you have 180° whitch corresponds to 8mm (extra wide) - This one is rarely used for shooting photos.

    The most common used one is 46° aka 50mm and than it goes up to 8° aka 300mm (tele)

    Did you ever asked what all those error codes in the web means? 404 everyone know as the page you were looing for wasn't found but what about 301? 200? 500? and so many more?

    1XX - Information

    Number

    Description

    100

    Continue

    101

    Switching Protocols

    102

    Processing

    103

    Early Hints


    2XX - Success

    Number

    Description

    200

    OK

    201

    Created

    202

    Accepted

    203

    Non-Authoritative Information

    205

    Reset Content

    206

    Partial Content

    207

    Multi-Status (WebDAV)

    208

    Already Reported (WebDAV)

    226

    IM Used (HTTP Delta Encoding)


    3XX - Redirection

    Number

    Description

    300

    Multiple Choices

    301

    Moved Permanently

    302

    Found

    303

    See Other

    304

    Not Modified

    305

    Use Proxy

    306

    Unused

    307

    Temporary Redirect

    308

    Permanent Redirect


    4XX - Client Error

    Number

    Description

    400

    Bad request

    401

    Unauthorized

    402

    Payment required

    403

    Forbidden

    404

    Not found

    405

    Method not allowed

    406

    Not acceptable

    407

    Proxy authentication required

    408

    Request timout

    409

    Conflict

    410

    Gone

    411

    Lenght required

    412

    Precondition failed

    413

    Payload too large

    414

    URI too large

    415

    Unsupported media type

    416

    Range not satisfiable

    417

    Exception failed

    418

    I'm a teapot

    421

    Misdirected request

    422

    Unprocessable entity (WebDAV)

    423

    Locked (WebDAV)

    424

    Failed Dependency (WebDAV)

    425

    Too early

    426

    Upgrade required

    428

    Precondition required

    429

    Too many requests

    431

    Request header fields too large

    451

    Unavailable for leagal reasons

    499

    Client closed request


    5XX - Server Error Responses

    Number

    Description

    500

    Internal Server Error

    501

    Not implemented

    502

    Bad Gateway

    503

    Service Unavailable

    504

    Gateway Timeout

    505

    HTTP version not supported

    507

    Insufficient Storage (WebDAV)

    508

    Loop detected (WebDAV)

    510

    Not extended

    511

    Network authentication required

    I got several times the question what DNS record type is used for what and so I made a table.

    Type

    Used for

    Example

    A

    maps a domain name to an IPv4 address

    iseet.fans → 87.118.116.40

    AAAA

    maps a domain name to an IPv6 address

    Google DNS → 2001:4860:4860::8888

    CNAME

    maps an alias name to a canonical domain name

    http://www.iseet.fans → iseet.fans

    MX

    specifies mail exchange servers for a domain

    mx.iseet.fans

    NS

    indicates DNS servers for a domain

    iseet.fans NS ns1.iseet.fans

    PTR

    shows reverse DNS lookup info for an IP address

    87.118.116.40 → iseet.fans

    TXT

    allows admins to add any text info for verification

    SPF entry example → v=spf1 +a +mx -all

    SRV

    specifies info about available services in a domain

    SIP server host/port info

    SOA

    stores essential domain info

    primary domain server
    admin email
    domain serial

    CAA

    specifies which certificate authorities are allowed to issue certificates for domain


    INFO: This page is in german as many Germans had this problem/issue. If you want an english version please let me know it down in the comments section.

    Aus aktuellem Anlass - eine Abmahnungswelle wegen Google Fonts - sollt jeder der eine Webseite betriebt nicht vergessen diese DSGVO konform zu integrieren und Cookie Banner und co dürfen auch nicht vergessen werden.

    Es gibt für Wordpress relativ viele Plugins für den Cookie Banner usw und ich nutze zB folgendes Plugin: Complianz.

    Dazu gibt es noch Plugins zum cachen von Google Fonts so dass diese nicht mehr für den User bei Google geladen werden. OMGF ist zB ein solches Plugin oder auch noch Local Google Fonts.

    ACHTUNG: Über Google Recaptcha werden auch Google Fonts geladen deshalb ist es sehr wichtig die verschiedenen erforderlichen Seiten mit den Infos zu generieren.

    Neben solchen Plugins kann es aber auch vorkommen dass man eine andere Art von Webseite nutzt wo es kein Plugin oder ähnliches gibt und man deshalb die Google Fonts lokal laden muss.

    Dafür habe ich ein kleines Video auf YouTube gestellt wo das ganze etwas erläutert wird.

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Um das ganze manuell zu bewerkstelligen braucht man nicht unbedingt ein Web Developer zu sein denn es ist keine grosse Hexerei.

    In fast allen Fällen wird der Google Font entweder in der index.php Seite oder des Templates geladen oder aber auch direkt über eine CSS Datei. Man muss nur in diesen Dateien schauen ob man etwas hat was so ähnlich wie folgendes aussieht:

    HTML
    <head>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
    <style>
    body {
      font-family: "Sofia", sans-serif;
    }
    </style>
    </head>

    Dieses ist ein Beispiel mit HTML respektive auch unter PHP wird es so geladen.

    Aber man kann es auch direkt unter der CSS Datei importieren wie oben erwähnt.


    Hat man nun den Font identifiziert geht man einfach auf die Seite von Google Fonts und lädt diese herunter.

    Wenn man den Font öffnet findet man oben recht "Download Family".

    Wenn man diese Datei herunter geladen hat kann man sie dekomprimieren und man hat mehrer Dateien. Normalerweise findet man eine Datei mit dem Font Namen-VariableFont also als Beispiel Quicksand-VariableFont_wght.ttf. Dieses ist die Beste Datei für den nächsten Schritt.

    Im nächsten Schritt benötigt Ihr einen Font Converter. Ich nutze dazu hier den OnlineFontConverter.

    Hier benötigen wir die Dateien eot, svg, woff und woff2. TTF könnte man auch nehmen ist aber unnötig da der Konverter aus dem hochgeladenen Font ein Regular Font dann macht und man verliert die Vorteile eines Variablen Fonts.

    Die Option font-face mit auswählen rate ich an da man dann eine CSS Datei bekommt wo aufgelistet ist wie man die Fonts integrieren kann.

    Ausserdem benenne ich die Font Datei um um es leichter zu haben also zB habe ich aus Quicksand-VariableFont_wght.ttf ganz einfach Quicksand.ttf gemacht ehe ich sie zum konverteieren hoch geladen habe.

    Nach der Konvertierung lädt man sich die Datei dann herunter und auch hier dekomprimiert man sie wieder.

    Alle Font Datei lädt man nun hoch wobei ich empfehle sie in einen Ordner nahmens Fonts zu laden um sie leichter zu finden. Vergesst diesen Ordner aber nicht da Ihr den beim laden der Fonts in der CSS Datei mit eingeben müsst.

    Ist alles fertig könnt Ihr die CSS Datei öffnen und den darin enthaltenen Code in eure eigene CSS Datei kopieren.

    Dieses wird immer als erstes in der CSS Datei geladen!!

    Wie Ihr hier sehen könnt wird unter dem Body nur die Font-Family Orbitron angegeben und Orbitron-Regular nicht. Dies ist unnötig da dieses automatisch passiert.

    Ausserdem seht Ihr oben font-weight: 700;

    Hätte ich nicht den variable font als TTF hochgeladen sondern den Regular würde das auf den Geräten die auf die TTF zugreifen müssen nicht funktionieren.

    • EOT → IE9 Compat Modes
    • EOT + ?#iefix → IE6-IE8
    • WOFF2 → Super Modern Browsers
    • WOFF → Pretty Modern Browsers
    • TTF → Safari, Android, iOS
    • SVG → Legacy iOS

    Über ein Plugin wie AutoOptimize kann man zB die Google Fonts danach komplett sperren.

    Da dieses YouTube Video auf Deutsch ist wird der Begleittext in der selben Sprache sein.

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Momentan läuft eine Abmahnwelle dank der tollen EU Gesetze und eines Urteils des LG München (DANKE GRRR)

    Wenn Google Fonts ohne Consent Banner eingebunden werden kann man abgemahnt werden da der Google Server die IP des Nutzers speichert (als würde das nicht tagtäglich überall sonst auch passieren) und dieser Server steht nicht in der EU sondern USA...

    Nun kann man Plugins nutzen wenn man zB. Wordpress nutzt damit die Fonts lokal gecached werden allerdings ist das nicht komplett möglich wenn man zB. Tools wie Recaptcha nutzt, was es auf jeder Seite mit Login, Formular und co. wohl gibt um SPAM zu vermeiden. Deshalb sollte man wie gesagt einen Banner einbinden mit diesen Infos.

    Es gibt aber auch die Möglichkeit dass man das Ganze manuell einbinden möchte, also die Fonts, oder sogar muss. Und das möchte ich euch an Hand eines kleinen Beispiels hier zeigen damit Ihr nicht unnötig Geld zahlt.

    Ich habe das Ganze auch schriftlich auf meiner ISeeT Seite fest gehalten:
    https://iseet.fans/dsgvo-konform-germany/


    Hier die im Video genutzten Links:

    Google Font Checker:
    https://www.ccm19.de/google-fonts-checker

    Achtung Abmahnung: Prüfen Sie jetzt die Einbindung von Google Fonts
    Das Landgericht München I hat am 20.01.2022 in seinem Urteil (Az.: 3 O 17493/20) die Rechtswidrigkeit der Remote-Einbindung von Google Fonts festgestellt.…
    www.e-recht24.de

    Font Converter:
    https://onlinefontconverter.com

    Google Fonts Seite zum Downloaden:
    https://fonts.google.com

    Wordpress Plugins:
    https://wordpress.org/plugins/complianz-gdpr
    OMGF - Daan.dev

    Font Face Nutzung:

    How to use @font-face in CSS | CSS-Tricks
    The @font-face rule allows custom fonts to be loaded on a webpage. Once added to a stylesheet, the rule instructs the browser to download the font from where
    css-tricks.com

    I had now several issues to get more buttons and especially the code Enlighter to work with wpForo. Unfortunately wpForo by default only uses the minimal TinyMCE editor and this can't be changed.

    But thanks to the functions.php file in you theme you can at least modify it's behavior in some parts which helps a lot.

    Also images aren't shown directly but as upload. So here are some tweaks for your functions.php file that may help you.


    You can see within the code what is used for what - Pay attention that if you want to add additional plugins like me (advlist, codesample,...) you need to download the correct version and here you must know that Wordpress is using a very very old version of TinyMCE as they don't want to invest the time to upgrade it. So you need to download the version 4.9.11 (I'll attach a version here)

    Of course you can adapt this to your needs.

    But by default wpForo is stripping some HTML tags by default for security reasons which is good but also bad as with that behavior the code isn't loaded correctly with the Enlighter Plugin.


    Thanks to that little code now the Enlighter plugin works well. Here the link to the plugin I'm talking of.

    And last but not least the little code to show the images - I didn't test it myself yet as the forum is brand new but I already integrated the code on the site and other told me that it is working.

    I hope this will help you as it helped me - It was much try on error until I got it to work like I wanted.

    Rating
    4.5/5
    Excellent

    Introduction/Description

    Switch between hand blender, hand mixer and chopper attachments, for mixing, kneading, pureeing and crushing. Tackle your kitchen preparations effortlessly to prepare soups, sauces, bread dough and more

    The 850W base automatically detects the attachment used and offers optimized speed settings for perfect textures. Smart Torque motor handles thick mixes effortlessly

    2 mixing speeds, 5 stirring speeds & turbo. The 850W Smart Torque motor maintains speed even with thick and stubborn ingredients. The gradual tarnish avoids splashes

    Add ingredients while mixing with the evenly weighted freestanding motor base. Hands free eject button. Easy to clean with dishwasher safe top rack accessories

    Box contents: hand blender, hand blender & chopper, 850 W base (EU plug), attachments for hand blender and hand mixer, 2 x whisks, 2 x dough hooks, 700 ml chopping bowl with blade unit and recipe booklet.


    Installation Difficulty

    4 out of 5

    Performance

    5 out of 5

    Noise

    4 out of 5

    Easy of use

    4 out of 5


    YouTube Video

    N/A


    Opinion

    I had enoough of many devices in my kitchen cupboard even that I recently bought a new chopper but I was very unhappy with it.

    So I thought let's try a Ninja product and now during the Amazon Prime Days with 42% I could resist and I bought it.

    I wasn't sure if it would be a good choice but at least it looked like. During the unboxing I already saw the good quality of the product and that the blender has even 4 blades. Continuying unboxing showed me that the chopper also have 4 blades (2 below in the bowl and 2 a bit higher). For me a great idea - I never had one like; that just saw some in videos.

    So I did some tests, first with the chopper as I needed some onions and what should is say, the blades are very sharp, you can ask my finger lol. I put 3 onions in the chopper bowl, so it was more than full, pushed the button 2 seconds and tada nearly all already chopped - some seconds more and it was like a mash - so pay attention not to push to long the power button.
    Also a good thing is the security here. I put all together and nothing worked - why? Very simple the part with motor wasn't 100% fitted on the bowl and than the blades won't turn - really really good...

    For the mixer I already thought, damn my device isn't working like it should but it was my fault or let's say it's very delicate when but the motor block and the mixer part together. They need both to be really fixed together as else the button on the motor blocks works but not the one on the mixer and so you can't decide the speed of it. But when both are well and correctly fixed it works great 🙂

    I didn't do a soup yet, so the hand blender wasn't tested yet, except a dry test. It seems also to work very well but the next soup will show it to me 🙂

    So overall it seems that I have taken a good choice by buying this device but the long-term usage will show it. For now I'm satisfied and I have more space in my cupboard lol 🙂


    Long Time Opinion:

    It's the best chopper, hand blender & hand mixer I ever had. You need to pay attention when fixing the different mountings in the point that they make correct contact with the motor unit but for the rest I just can say WOW


    Specifications

    Dimensions: hand blender mode - H40.4 x W7.6 x D6.9 cm
    Hand mixer mode - H24.3 x W8 x D12.5 cm
    Weight in hand blender mode - 1.07 kg
    Weight in hand mixer mode - 1.02 kg
    Total weight: 2.04 kg
    850W


    Link(s) - Non Affiliated!


    Photos


    Rating
    1.2/5
    Worst

    Introduction/Description

    Just another unboxing to get more familiar with the english language again.

    It's a Bonsai starter set - in some month, if it works I'll do a follow up.


    Ratings

    These ratings are my personal opinion - Your Opinion maybe different than mine!


    Usage Difficulty

    2 out of 5

    Documentation

    2 out of 5


    YouTube Video

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.


    Opinion

    It seems to be a very intresting starter set for Bonsais but the documentation is very unclear. I have the advantage to understand english, french and german and so with checking all the text in the different languages and using the documentation delivered with and the one online I could find out what is meant to do...

    I tried the first one and we gonna see if it works

    Long time result: Don't buy it - it simply doesn't work
    After several tries I gave it up and put everything in the bin!


    Specifications

    none


    Link(s) - Non Affiliated!


    Photos



    f you have the issue that JNLP files don't open correctly anymore with Java simply copy the code below in a .reg file and import it to your registry.

    Pay attention that this example here is for the Java 8 Update 201 (last free version) version and you may need to update the path to your jp2launcher.exe file.

    I configured my Shoutcast Server I was searching a lot for different configuration settings and so on and had to swap to different sites to find all the info I wanted and needed.

    So I decided to collect the settings/configuration also on my site so that it's easier to find.

    Mandatory Options


    Network configuration


    Server Configuration


    Access configuration


    Mass configuration


    Optimization configuration


    Shoutcast Trans

    SHOUTcast Trans stands for SHOUTcast Trans(coder), as it is able to transcode mp3's to lower or higher bit rates. SHOUTcast Trans works by streaming mp3's from a play list specified in the configuration file. You should put this configuration in it's sepearated file shoutcast/sc_trans.conf as example.


    Pay attention that Shoutcast trans is started separately with as example this command:
    /etc/init.d/shoutcast_trans start

    The command depends on your system!
    I as example don't use a start/stop script but I simply launch it at startup with a task manager.
    If you as example gentoo, you can install Shoutcast with emerge and then you have the init scripts.