I remember several people at OLF recently telling me that they were hurting for / looking for some work. Well, I get hounded by headhunters quite often and would gladly pass stuff on to those people who are interested, but I need to know who you are
Send me an email at linc dot fessenden at G mail dot com and let me know.

Hey, if Dann can post about his new sandals then me posting about my new TV should be a no brainer. My wife made me go out and get myself a “good daddy” present for her to be able to use. For the first time in many, many years we bought a new TV. This thing is a Toshiba 32″ LCD TV that does HD at 720p. I spent just about an arm and a leg on it. As long as I don’t use the coax input, it actually looks pretty good. I Am really curious, however, about how nice it’ll look once I finally get it hooked up to a high-def picture source though
It’s been a while since I last posted. I have been pretty sick for a week or so.
A couple weeks ago I had to make a quick run to Microcenter and, while there, I spied these on their discount software shelf for $3 a piece. Nice to see Linux disks in places other than stuck to a magazine – even if it IS the discount software rack
When I decided I wanted to do this new show thing and do it in video, I didn’t know what I was really in for. Then as I started playing a little with video and wanted to stick a snippet on the web, I was sure I was in trouble.
This is a collection of quick notes on how I did it.
First, I grabbed some video off of my camera. Now the camera records to avi but does it in high-def, which is a little large for what I wanted, so I ran it through tablet-encode, which is an mencoder wraparound script that generates small-enough video that works on the n770/800/810 devices. This worked like a charm and a line like so: (code is all one line)
tablet-encode –preset=best -2 file.avi newshow.avi
got me an avi file that was 400×200 30fps.
Next I wanted to get that on the web and viewable. A quick look through some internet available howtos revealed that an flv (flash video file) was the way to go there. So, off I went to create flv from avi. After some serious digging I was direted, once again, back to mplayer/mencoder. (code is all one line)
mencoder -forceidx -of lavf -oac mp3lame -lameopts abr:br=56 -srate 22050 -ovc lavc -lavcopts vcodec=flv:vbitrate=250:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=360:240 -o $1.flv $1
Then was the tricky part. I wanted to just use an embed or object statement in some html to stick that video in the page, but that would not work at all. It took me hours of looking through people’s bad documentation on the net to discern that what I really needed was a flash player in order to play flash video. Another quick search revealed the free-enough JW FLV Player.
Once you have that and get the “player-viral.swf” or flv player on your webserver and accessible, there is only one more little barrier. It’s nice to have a picture to have at the front of your video instead of a black screen (before your play the video). Once again, mplayer: (and once again, all one line)
mplayer -ss 10 -nosound -vo jpeg -frames 1 newshow.flv
Which will create an image named 000001.jpg or some such. I just renamed it to newshow.jpg.
Now with all that, I can put my flv and jpg somewhere I can get to, and do an embed statement in a webpage like so:
< embed
src='player-viral.swf'
width='400'
height='240'
bgcolor='undefined'
allowscriptaccess='always'
allowfullscreen='true'
repeat='none'
flashvars='file=newshow.flv&image=newshow.jpg'
/>
Obviously the lessthan sign and the embed command should go together but, alas, it will not let me post the code any other way
Due to the overwhelming response of 4 people on the idea of doing a Linux System Administration show, I have decided to do it anyway. I know – glutton for punishment. I believe I will do this in a video format, or I will at least try. I need to work out just how to get that accomplished, but we’ll see what happens. What I do need from you 4 listeners/readers/watchers is a NAME and (hopefully RFQuerin is reading) a LOGO
As always, hit me up with suggestions, questions or concerns at linc dot fessenden at gmail dot com. Thanks!




Recent Comments