- HTTP level methods
- HTTP refresh header
- HTTP status codes 3xx
- Server mechanations, like SSS or special Apache directives
- HTML level methods, primarily 'Refresh Meta tag'
- Bogus methods, at least someone out there almost certainly considers
them "problematic":
- Manual redirects (Manual? what do we have technology for?)
- Javascript (a good general purpose WWW whipping boy)
- (Yet another) abuse of Frames
Sunday, December 30, 2007
Redirection Reflection
Monday, December 24, 2007
'WAVing' Your Videos
#!/bin/bash
# Script to extract .wav audios from .avi files # 04 Sept. 2007 d.e.l.
USAGE="$0 [-h]"
shopt -q nocasematch # - this seems to be inoperative
# if [[ '-h' = ${1:0:2} ]] # then # echo ${USAGE} # exit # fi
case ${1:0:2} in -h | -H | -? | /h | /H | /? ) echo ${USAGE} exit ;; -- ) case ${1:2:1} in h | H | ? ) echo ${USAGE} exit ;; * ) esac ;; * ) esac
set -o braceexpand ;
aviconvert () {
PATIENT=${1} ; CURED="${1%.avi}.wav" ; echo "Converting: ${PATIENT}" ; #\mplayer -ao pcm:waveheader:fast:file=charley1.wav -vc null -vo null \ # charly.01.avi
nice -20 \ /usr/bin/mplayer \ -ao pcm:waveheader:fast:file=${CURED} \ -vc null -vo null \ ${PATIENT}
return ;
}
for i in *.avi do
aviconvert ${i} ;
done ; # for
Addenda 30 Dec. 2007
I located this article I'd seen before after a bit of surfing: http://www.linuxjournal.com/article/9719 which gives what might be considered an intermediate action, conversion to Black and White. Example from the above link: $mencoder color-video.avi -o black-white-video.avi -vf hue=0:0 -oac copy -ovc lavc The only problem I noticed was that the final video froze up on playback unless I turned any mplayer.conf video filtering off, but then my computer is somewhat marginal for playing videos to begin with. Besides the Ansel Adams/film noir effect a test on a random video reduced it to 20% of it's original size. I'm unaware of any "LSD/light show" filter that drops the chiaroscuro and spatial forms and keeps the colors. ;-)Friday, December 21, 2007
Streetnoise
- http://www.amazon.com/exec/obidos/tg/detail/-/B00002EQ2W/qid=1117339327/sr=1-2/ref=sr_1_2/102-1140813-3593736?v=glance&s=music
- http://www.artistdirect.com/nad/store/artist/album/0,,46008,00.html
- http://www.bbc.co.uk/music/release/x3cz/
Addenda, 17 Dec. 2007
Browsing through the "Rough Guide to Bob Dylan", I noticed that it listed Driscoll and Auger's version of "This Wheel's on Fire" as the third best Dylan cover of all time, so I thought a few videos might be in order:- http://www.youtube.com/watch?v=YYHYJebd9rY My favorite, dispite the corny TV production
- http://www.youtube.com/watch?v=BRu7L4OmVGw The bicycle truing stands were one of Artist/chess master Marcel Duchamp's "ready mades"
- http://www.youtube.com/watch?v=Z-mttBtOHXI
- http://www.youtube.com/watch?v=4SX4nL3CUEA An accurate reproduction of the original "viewing experience". Perhaps the "hot" 45 record spinning was considered sufficient representation of the songs prophetic vision. :-)
- http://www.youtube.com/watch?v=VHsIZpP2hbc Early British Blues scene, Julie and Brian along with the more famous Rod Stewart accompanying John Baldry.
- http://www.youtube.com/watch?v=-aLGLpWRER0 Flip side of Wheels. Songwriter David Ackles worked as a minister in Pasadena at one time.
- http://www.youtube.com/watch?v=F6wk6m-x09Q The only video I've found on YouTube for any music on Streetnoise.
- An mp3 from Streetnoise from http://www.zshare.net/audio/24684910897453/ And some more here
-
4 July 2008 Update:
I recently found some more video's for music off Streetnoise.
- http://www.youtube.com/watch?v=3-_S00jFhn0 An interesting video of "Czechoslovakia".
- http://www.youtube.com/watch?v=p0dJFRDhgM0 This hardly rates as a video, but you can hear one of the more well known songs that were part of Streetnoise.
- http://www.youtube.com/watch?v=8m9cTe7rZb4 Keith conducting an orchestra where Julie is one of 3 vocalists. Yes, that is a voice solo in this.
- http://www.youtube.com/watch?v=PBFan0Hva9Q Julie dueting with a soprano saxist accompanied by her husband Keith Tippett. Touches of African folk music, Gregorian chant, Ligeti's "Atmospheres" (used in "2001: A Space Odyssey" soundtrack.)
- Home page
- Career summary
- Interview
- Reserved for an incredible interview I found and forgot to bookmark, lost in infospace
Saturday, December 15, 2007
Friends of Larry
Any opinions out there? I want to wrap this up with a quote from some of my correspondance with L. and C.: We should view the Lynx External not just a literal solution to some problems, but also a metaphor for dealing with them - when one tool gets us far enough down the road that it finds and hits a road block, call up another special purpose one, in the UNIX tradition of tools that do one thing extrememly well, and carry on.