SENSE – This is my personal pastebin and makes none!

And the Oscar goes to….

Freitag, 05. Februar 2010 von cassmodiah

שָׁלוֹם

Auf Linux.com wurden die besten Distributionen in 7 verschiedene Kategorien gekürt: [1]

* Beste Desktop Distribution : Ubuntu
* Beste Laptop Distribution : OpenSuSE
* Bester Enterprise Desktop : SuSE Linux Enterprise Desktop
* Bester Enterprise Server : Red Hat Enterprise Linux
* Beste LiveCD : Knoppix
* Beste Security-Enhanced Distribution : Back Track
* Beste Multimedia Distribution : Ubuntu Studio

[1] http://www.linux.com/learn/docs/ldp/282996-choosing-the-best-linux-distributions-for-you

So long and thanks for all the fish :-)
שִׁמְעוֹן

[LXDE] auf youtube

Donnerstag, 13. November 2008 von cassmodiah

שָׁלוֹם

Deutsch:
Kurzvorstellung des Dateimanagers PCMANFM 03:47min
Kurzvorstellung des Bildbetrachters GPicView 01:47min
Kurzvorstellung des Taskmanagers LXTask 01:57min
Kurzvorstellung des Desktops LXDE 06:54min

English:
short discripton of the file browser PCMANFM 03:47min
short discripton of the fimage viewer GPicView 01:47min
short discripton of the task manager LXTask 01:57min
short discripton of the desktop environment LXDE 06:54min

Videos von Maces

Die Links zu den englischen Videos habe ich im Wiki eingepflegt.

So long and thanks for all the fish :-)
שִׁמְעוֹן

Die Mathematik der rosa Elefanten

Dienstag, 17. Juni 2008 von cassmodiah

y^2+z^3-z^4-x^2*z^2-a*2a = 0; a=0,06

Gefunden bei: Zeit Online

flv2avi

Sonntag, 01. Juni 2008 von cassmodiah

/usr/bin/flv2avi

#!/bin/sh

if [ -z "$1" ]; then
  echo "Usage: $0 {-divx|-xvid} list_of_flv_files"
  exit 1
fi

# video encoding bit rate
V_BITRATE=1000

while [ "$1" ]; do
  case "$1" in
    -divx)
      MENC_OPTS="-ovc lavc -lavcopts \
        vcodec=mpeg4:vbitrate=$V_BITRATE:mbd=2:v4mv:autoaspect"
      ;;
    -xvid)
      MENC_OPTS="-ovc xvid -xvidencopts bitrate=$V_BITRATE:autoaspect"
      ;;
    *)
      if file "$1" | grep -q "Macromedia Flash Video"; then
        mencoder "$1" $MENC_OPTS -vf pp=lb -oac mp3lame \
          -lameopts fast:preset=standard -o \
          "`basename $1 .flv`.avi"
      else
        echo "$1 is not Flash Video. Skipping"
      fi
      ;;
  esac
  shift
done

Mencoder muss installiert sein

Debian: darkice mit mp3

Sonntag, 01. Juni 2008 von cassmodiah

Mist, darkice bringt bei Debian von Natur aus keine Ünterstützung für mp3 mit (und das ist lizenzmäßig auch gut so).
Das musste ich erstmal für meinen Hausgebrauch ändern :-)
 
 
 
debian/rules

#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/class/autotools.mk

DEB_CONFIGURE_EXTRA_FLAGS := –prefix=/usr –sysconfdir=/usr/share/doc/darkice/examples –with-lame –with-faac

 
 
debian/control

Source: darkice
Section: sound
Priority: optional
Maintainer: Jochen Friedrich
Standards-Version: 3.7.2
Build-Depends: cdbs, debhelper (>=4.1.0), libvorbis-dev, libasound2-dev [!kfreebsd-i386], libjack0.100.0-dev, libtwolame-dev, liblame-dev, libfaac-dev

Package: darkice
Architecture: any
Depends: ${shlibs:Depends}
Description: Live audio streamer
DarkIce is an IceCast, IceCast2 and ShoutCast live audio streamer. It
takes audio input from a sound card, encodes it into mp3 and/or Ogg
Vorbis, and sends the mp3 stream to one or more IceCast and/or
ShoutCast servers, the Ogg Vorbis stream to one or more IceCast2
servers. DarkIce uses lame as a shared object as its mp3 encoder, and
the Ogg Vorbis as its Ogg Vorbis encoder.

 
 

cassmodiah@schafwiese:~$ ldd /usr/bin/darkice
linux-gate.so.1 => (0xb7f1f000)
libmp3lame.so.0 => /usr/lib/libmp3lame.so.0 (0xb7e70000)
libogg.so.0 => /usr/lib/libogg.so.0 (0xb7e6b000)
libvorbis.so.0 => /usr/lib/libvorbis.so.0 (0xb7e43000)
libvorbisenc.so.2 => /usr/lib/libvorbisenc.so.2 (0xb7d4a000)
libfaac.so.0 => /usr/lib/libfaac.so.0 (0xb7d39000)
libtwolame.so.0 => /usr/lib/libtwolame.so.0 (0xb7d17000)
libasound.so.2 => /usr/lib/libasound.so.2 (0xb7c56000)
libjack-0.100.0.so.0 => /usr/lib/libjack-0.100.0.so.0 (0xb7c3f000)
librt.so.1 => /lib/tls/i686/cmov/librt.so.1 (0xb7c36000)
libnsl.so.1 => /lib/tls/i686/cmov/libnsl.so.1 (0xb7c20000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7b3b000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7b15000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7b0a000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb79d9000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb79c7000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb79c3000)
/lib/ld-linux.so.2 (0xb7f20000)

MP3: libmp3lame.so.0 => /usr/lib/libmp3lame.so.0
OGG: libvorbis.so.0 => /usr/lib/libvorbis.so.0
AAC: libfaac.so.0 => /usr/lib/libfaac.so.0

Fedora-Linux

I'm a proud Fedora-Contributor


Are You Open Source

Are You Open Source?

Seiten

Luach for Hainzell

  • 16 March 2010
  • 1 Nisan 5770
  • א' ניסן תש"ע
  • Zmanim
    • Alos HaShachar: 05:54
    • Netz: 07:30
    • Earliest Tallis: 06:28
    • Latest Sh'ma: 10:30
    • Chatzos: 13:30
    • Mincha Gedola: 14:00
    • Plag Hamincha: 19:15
  • Shabbos
    • It will come in 3 days.
    • Candle light : 19 March 19:17
    • Shabbos ends: 20 March 20:36
  • Holidays
    • Upcoming date: Shabbos Hagadol
    • will come on Friday
      26 March 2010
      12 Nisan 5770

Kalender

März 2010
M D M D F S S
« Feb    
1234567
891011121314
15161718192021
22232425262728
293031  

Letzte Kommentare

Blogroll

Kategorien

Schlagwörter

64Bit Ambassador Apple Archlinux ASCII backup Browser BSD Buch bug CentOS Debian Desktop EPEL Fedora Freeware Freunde Geek Hardware Instantmessaging IRC Kernel Konfiguration Kult Laptop lol LUG LXDE Mac mail Mandriva Mathematik Multimedia nerv openSuSE packaging proprietär script Server Spiele SuL whateverbuntu WLAN xbox XFCE

Meta

 

WP-Design: Vlad -- Powered by WordPress -- XHTML 1.0 -- Impressum