Welcome to BlogDogIt, Anonymous Saturday, July 12 2025 @ 06:35 am UTC

K+Club

Free Online File Converter

  • Monday, January 28 2013 @ 10:59 am UTC
  • Contributed by:
  • Views: 2,648
K+Club

Ever since I learned of Online-Convert.com I find myself turning to it for many of my more "annoying" file conversion requirements. What used to be a chore - converting 3gp (cellphone) video to FLV (flash) video format - is now "easy-peasy!" thanks to online-convert.com.

This post is an unsolicited endorsement for this free service.
This is my way of telling them thanks for being there.

If you ever find yourself in need of a file converter service, give this place a try. The service is free for files under 100MB (premium service is available for larger files.) Most popular formats supported.

This free online file converter lets you convert media easy and fast from one format to another.

Convert media files online from one format into another:

  • Audio converter
  • Video converter
  • Image converter
  • Document converter
  • Ebook converter
  • Archive converter
  • Hash generator

This free online file converter lets you convert media easy and fast from one format to another. We support a lot of different source formats, just try...

http://www.online-convert.com/

 [tag:utility tips computing]

IMDABESS

  • Sunday, January 27 2013 @ 01:55 pm UTC
  • Contributed by:
  • Views: 2,514
K+Club

GMCFOSHO GMCFOSHO

shiiiiiiii, 3rd track off my album. gonna be a hidden track, you gotta listen to the second track all the way through to get to dis one. took a minute to get this one up cuz SOMEONE ON THIS STREET CALLED THE POLICE ON US, AND TO THAT SOME1 (IF YOU WATCHIN THIS VIDEO, WHY YOU HATIN?) EITHER WAY I JUS SAID F IT, WE AINT GET ALL THE SHOTS WE WANTED, BUT WHATEVER, WE STILL GO HARD. DIS ONE CALLED IMDABES

Found on: unhipster.net

[tag:music youtube entertainment random strange humor listen]

Bull on Piracy [PSA]

  • Saturday, January 26 2013 @ 12:45 pm UTC
  • Contributed by:
  • Views: 2,444
K+Club

Bull on Piracy
(Duration 0:34)

 

This Ironic PSA Is Brought To You By:
BlogDogIt
with appologies to TV-Land


[tag:video humor random]

 

Spotlight[Arts]:untalkative photographs

  • Thursday, January 24 2013 @ 12:20 pm UTC
  • Contributed by:
  • Views: 2,863
K+Club

untalkative photographs

Sendai / Gamou ---a class-room

Sendai / Gamou ---a class-room

January 2013 a class-room
" NAKANO elementary school "
It was 3:54 p.m.

 

Sendai / Gamou ---stage curtains

Sendai / Gamou ---stage curtains

January  2013    stage curtains
" NAKANO elementary school " 
lecture hall / gymnasium

Source: http://untalkativephoto.blogspot.jp/

 

[tag:spotlights arts photographs historic blogs educational]

...and I Quote:

  • Thursday, January 10 2013 @ 09:55 am UTC
  • Contributed by:
  • Views: 2,202
K+Club

For starters I'll have "Who?", "What?", "When?", "Where?", and then "Wither?", "Whence?" and "Wherefore?" to follow, and one big side order of "Why?"


-Zaphod Beeblebrox in The Hitch-Hikers's Guide to the Galaxy
Douglas Noel Adams, writer, 1952-2001

[tag:musing humor quotes retro random sci-fi 42]

Recording Internet Radio Programs On Your PC

  • Sunday, January 06 2013 @ 08:46 am UTC
  • Contributed by:
  • Views: 3,069
K+Club

Listening to daytime talk radio is practically impossible in my current employment. Oh, I have tried but between needing to take telephone calls and otherwise concentrating on duties of the job, it is hardly worth the effort. If only there was a way I could record these programs and listen to them at a time of my choosing. Listening on my commute would be ideal. Challenge accepted!

A web-search of "recording internet radio" will present a great  many options for accomplishing the task (perhaps such a search has led you to this article.) The easiest way to record from the internet involves using audio recording tools (such as Audacity) that basically capture the sounds coming from your PC speakers. While this is easy enough to do, problems arise in doing this while also working on your computer. For instance, if you capture your speaker (or mixer) output you will also pick up system sounds and besides, you don't want the program playing at work, you want to listen later. The method detailed here will download the broadcast directly to a file on your hard drive to listen to later.

There are software solutions for sale that promise to do what we want but if you were inclined to buy software it is doubtful that you would have read this far into this text. The solution I am suggesting involves no cash outlay because it utilizes freely available software (open source software and/or freeware.) However, unlike some advertized Free Downloadable software this technique will not require the installation of malware or software of any kind. The programs required to accomplish our mission are portable (meaning they may even be run from a USB-Key if desired.)


To make your life easier, you may download this ZIP file which contains the minimum required files to perform the steps outlined in this tutorial:

RecordInternetRadio.zip [8.6MB] (Windows x86)

If you would rather sort-out the downloads yourself, you will need the following executable files
(available from web sites shown ):


 

The Plan

  1. Use mplayer.exe to record broadcast to hard-drive in raw audio WAV format.
  2. Use lame.exe to convert WAV file into MP3 format file.
  3. Use Mp3Splitter-lite.exe to break single, large MP3 file into smaller parts (for easier consumption.)

[ Continue Reading to Learn More... ]

 

Secrets of encoding.

  • Saturday, January 05 2013 @ 03:29 pm UTC
  • Contributed by:
  • Views: 2,146
K+Club

[published draft]

Below is a collection of batch files that I have used for various A/V tasks.

using ffmpeg, mplayer, mencoder, lame

Posted now for posterity - will detail some day - until then you might find the clue you have been looking for.

DShow driver for mplayer: http://doors.univer.omsk.su/~voroshil/

Get MPLAYER/MENCODER [http://www.mplayerhq.hu/design7/news.html]

 


a2f.bat
d:_mplay_ffmpeg.exe -i "%1" -acodec copy "%1.flv"


pspvid.bat
codecsffmpeg-10 -i %1 -acodec aac -ab 128k -ar 48000 %1.mp4


sync.bat
call mencoder.exe "%1" -audio-delay %2 -ovc copy -oac copy -o "sync-%1.avi"


resample.bat
call mencoder.exe "%1" -vf scale -zoom -xy %2 -vobsubout l:worksubfile -oac mp3lame -lameopts vbr=0:cbr:vol=%3:br=%4 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=%5 -ofps %6 -ffourcc DX50 -o "%7"


resamplist22.bat
md %1resampled
dir /b %1*.avi > %1dolist.txt
for /F %%T in (%1dolist.txt) do resample "%1%%T" 320 2 48 400 22 "%1resampled%%T"


resamplist480.bat
md %1resampled
dir /b %1*.avi > %1dolist.txt
for /F %%T in (%1dolist.txt) do resample "%1%%T" 480 2 48 800 23 "%1resampled%%T"


HQresample.bat
call mencoder.exe "%1" -vf scale -zoom -xy %2 -vobsubout e:worksubfile -oac mp3lame -lameopts vbr=0:cbr:vol=%3:br=%4 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=%5 -ofps %6 -o "%7.avi"


mkv2avi.bat
C:_mplay_codecsffmpeg-distffmpeg -i %1 -sameq -vcodec mpeg4 %1.avi


3gp.bat
c:_mplay_codecsffmpeg-10.exe -i "%1" -s qcif -vcodec h263 -acodec aac -ac 1 -ar 8000 -r 25 -ab 32 -y %1.3gp


WAV2mp3.bat
for %%t in (04) do lame --preset 32 part%%t.wav g:book_convertpart%%t.mp3


lamecon.bat
for /F %%t in (h:flashdolist.txt) do lame --preset 128 h:flash%%t.m4a h:flashmp3%%t.mp3


bookcon14.bat
for %%t in (01 02 03 04 05 06 07 08 09 10 11 12 13 14) do ffmpeg -i G:book_convertpart%%t.wma -ab 32 -vn G:book_convertpart%%t.mp3


tv.bat
E:mplayermplayer.exe -v -tv device=0:input=1:adevice=1:input=0:audiorate=44100:amode=1:immediatemode=0 -vm -adapter 2 -fs -framedrop -nocache tv://


rescale.bat
c:_mplay_mplayermencoder.exe %1 -vf scale -zoom -xy %2 -oac lavc -ovc lavc -ofps %3 -ffourcc DX50 -o %1.avi"


dvdDump.bat
mplayer dvd://1 -chapter 2 -dvd-device o: -dumpstream -dumpfile K:workDUMP.vob

 

 

 

How Awful About Allan [Public Domain Cinema]

  • Tuesday, January 01 2013 @ 01:13 pm UTC
  • Contributed by:
  • Views: 2,212
K+Club
How Awful About Allan


Source: The Internet Archive

Allan (Anthony Perkins) is blamed for an accidental fire that killed his father (Kent Smith), disfigured his sister (Julie Harris) and landed him in an institution. Eight months later, partially blind and guilt-stricken, he's let out of an institution and rents a room from his estranged sibling in an effort to put his life back together, but someone is out for revenge and wants to drive him crazy. [http://www.imdb.com/title/tt0065858/]

Download in 512Kb MPEG4 format [305.7MB]

[tag:movies watch entertainment]

Page navigation