Download Managers for One-click-Hosters
Sunday, July 31, 2011 11:24:21 AM
I am in the search for replacement of JDownloader on my Desktop, since it is too slow and blown up for my system, as well for a commandline tool for my server.
So far i have found the following interesting ones:
With GUI:
Without GUI:
So far i have found the following interesting ones:
With GUI:
Without GUI:
extracting flv from a rtmp stream
Sunday, November 14, 2010 3:05:39 PM
There are several tools to create flv files from a rtmp stream in linux, two of them being rtmpdump and its fork flvstreamer.
I tried to retrieve a stream where i constantly got ping messages in the process and it just stopped, so i looked for alternative ways.
The one i found was this huge script, which did crash on me: http://ubuntuforums.org/showthread.php?t=1159309
I was unwilling to search for the error or analyze the stream myself, so i came up with the following solution:
Works quite reliable for me and is not as much code as the script which does not work.
If you end up downloading huge masses of files you can check them using flvtool2 with this script:
It returns "true" or "false", depending if projected filesize and actual filesize are equal, which means an incomplete file returns "false".
Got any questions? Ask me. :>
I tried to retrieve a stream where i constantly got ping messages in the process and it just stopped, so i looked for alternative ways.
The one i found was this huge script, which did crash on me: http://ubuntuforums.org/showthread.php?t=1159309
I was unwilling to search for the error or analyze the stream myself, so i came up with the following solution:
- capture stream with tcpdump
- extract streaming data with tcpflow
- pipe data through netcat
- connect rtmpdump to netcat
- ???
- profit!
sudo tcpdump -i <device> -p -s 0 -w <dumpfile> -v tcp src port 1935 tcpflow -r <dumpfile> cat <streamfile>|netcat -l 1935& rtmpdump -r "rtmp://localhost/streamer/stream.flv" -o <flvout>
Works quite reliable for me and is not as much code as the script which does not work.
If you end up downloading huge masses of files you can check them using flvtool2 with this script:
#!/bin/sh if [ "$1" = "" ] then echo "no filename given" exit fi if [ $(stat -c%s "$1") -eq 0 ] then echo false exit fi if [ $(stat -c%s "$1") -eq `flvtool2 -P $1 /dev/null|grep filesize|sed 's/[^0-9]//g'` ] then echo true else echo false fi
It returns "true" or "false", depending if projected filesize and actual filesize are equal, which means an incomplete file returns "false".
Got any questions? Ask me. :>
mp3check
Saturday, October 30, 2010 4:50:02 AM
After comcing across a faulty mp3-file in my music collection i looked up for a solution in apt-cache and found "mp3check", a tool for mp3 consisteny checking.
Right now i am running the following command in my mp3 folder:
I wonder about what will be found.
Right now i am running the following command in my mp3 folder:
mp3check -r -e -s -3 *|grep -v "bitrate switch">mp3errors.txt
I wonder about what will be found.
Operashirt on Tour
Monday, August 2, 2010 9:09:24 AM
Some pictures of me wearing my opera shirt during a systema instruction.
.JPG)
.JPG)
.JPG)
An meinen Atem
Saturday, April 3, 2010 3:07:30 AM
An meinen Atem
Oh Odem, du des Lebens Glück
Wie fehlst du mir in diesem Augenblick.
Der Atmosphäre Druck, er lastet schwer
Belastet meine Atmung sehr.
Nur mühsam lässt die Brust sich heben
Im Vakuum, da müsst man leben.
Jedoch da fehlt der Sauerstoff,
und eben dieser fehlt mir doch.
Respiration ich hasse dich,
um vier Uhr morgens - verlässt du mich ?
Ich träume vom Erstickungstod
und wache auf - mit Atemnot.
Oh Odem, du des Lebens Glück
Wie fehlst du mir in diesem Augenblick.
Der Atmosphäre Druck, er lastet schwer
Belastet meine Atmung sehr.
Nur mühsam lässt die Brust sich heben
Im Vakuum, da müsst man leben.
Jedoch da fehlt der Sauerstoff,
und eben dieser fehlt mir doch.
Respiration ich hasse dich,
um vier Uhr morgens - verlässt du mich ?
Ich träume vom Erstickungstod
und wache auf - mit Atemnot.
HAPSIM
Monday, March 29, 2010 11:57:09 PM
Connect a terminal and other hardware to your simulated avr in avrstudio:
http://www.helmix.at/hapsim/
http://www.helmix.at/hapsim/
Latest comments
-

anonymous
-

anonymous
-

anonymous
-

anonymous
-

anonymous
bofh writes: thanks/danke/bedankt! your solution is simp ...















