Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - hakerdefo

#481
Media Room / Re: Just listened to
February 16, 2014, 09:46:27 AM
#482
Media Room / Re: Just listened to
February 06, 2014, 05:14:33 PM
VastOne liked the Frank Yamma song I posted earlier and that made me think. This world is such a huge place with so many diverse cultures, all with their indeginous, traditional music forms. And sadly because of American-British monopoly over music business and international media we never ever get to hear or know about many wonderful musicians-artists. I can safely bet that atleast 90 percent of world poulation would have never heard and are completely unawre of existence of around 90 percent albums on the rolling stone magazine's '500 Greatest Albums of All Time' list. The more appropriate title would have been '500 Greatest American-British Albums of All Time'.
Enough rant. Here is something new and fresh for all those american-british ears,

http://www.youtube.com/watch?v=rERNHyU62k8
#483
Media Room / Re: Just listened to
February 06, 2014, 04:48:59 PM
This one is for you VastOne,

http://wdajnabi.wordpress.com/tag/frank-yamma/

Cheers
#484
Media Room / Re: Just listened to
February 06, 2014, 04:12:10 PM
This Broken Bells song reminds me of Bee Gees, And yes that's a compliment.

http://www.youtube.com/watch?v=uhBewKu80Mg#
#485
Media Room / Re: Just listened to
February 06, 2014, 04:06:21 PM
Not many people outside Australia know Frank Yamma. A wonderful singer-songwriter from the land down under.
This song will touch your heart for sure.

http://www.youtube.com/watch?v=DQFPwt9Lu1I#
#486
I did a little experiment. I downloaded antix-core, defaulted the repos to Debian stable and in the live environment installed minimal working openbox system. And then played the 720p videos and they played perfectly. No frame-drops. Next I changed the repos to Debian testing and updated. After upgrade I played the same 720p videos and choppiness came back, frames dropped. So some package be it openchrome, xserver-xorg, mplayer, libavcodec or something else in testing-sid is causing the choppy playback on my machine. I can live this for sure. May be future updates will iron out the problem.
Cheers.
#487
Scripts / MOC now playing lyrics script
January 24, 2014, 10:38:55 AM
I've this script that fetches lyrics of currently playing song in MOC and displays it in terminal,


#!/bin/sh
TITLE="`mocp -i | grep 'Title:' | sed -e 's/^.*: //'`";
if [ "$TITLE" != "" ]; then
ARTIST="`mocp -i | grep 'Artist:' | sed -e 's/^.*: //'`";
SONGTITLE="`mocp -i | grep 'SongTitle:' | sed -e 's/^.*: //'`";
ALBUM="`mocp -i | grep 'Album:' | sed -e 's/^.*: //'`";
if [ "$ARTIST" != "" ]; then ARTIST="$ARTIST"; fi
if [ "$ALBUM" != "" ]; then ALBUM="($ALBUM)"; fi
#echo $ARTIST $SONGTITLE $ALBUM
#else echo ,,MOC"
#fi
artist=`echo "$ARTIST" | perl -MURI::Escape -ne 'chomp;print uri_escape($_),"\n"'`
title=`echo "$SONGTITLE" | perl -MURI::Escape -ne 'chomp;print uri_escape($_),"\n"'`
song=`curl -s "http://makeitpersonal.co/lyrics?artist=$artist&title=$title"`
echo "$SONGTITLE - $ARTIST - $ALBUM\n$song" | less
else echo ,,MOC"
fi


It works fine most of the time but fails in some instances when a song tag or artist tag contains some extra characters.
Any ideas to parse tags more efficiently and make them more url friendly?
Cheers.
#488
Quote from: Digit on January 23, 2014, 09:23:03 AM
are you  sure it's running  at 1600, n not 1000?  i've  noticed that several times in my debians, that they seem to like  being  limited to 1000mhz in software somewhere somehow. sry i dont recal how to pull up this info or change it, but thhought it worth a mention as another avenue too explore.
cat /proc/cpuinfo | grep MHz
gives me,
Quotecpu MHz: 1607.356

And,
dmidecode -t 4 | grep Current
gives,
QuoteCurrent Speed: 1600 MHz

So I guess the processor is running at it's max speed.
Cheers.
#489
Quote from: VastOne on January 22, 2014, 12:14:39 AM
Well.... it partially works.  It downloads the correct file but not as the correct file name... downloads it as 'download?source=files'

Will research it more
The following should do it,
wget -c --content-disposition https://sourceforge.net/projects/vsido/files/latest/download?source=files
Cheers.
#490
Quote from: PackRat on January 20, 2014, 02:27:57 PM
Are Bodhi and Salix using different config files? If so, start by comparing them with your Debian files.
Yes, my mplayer2 config is identical in every distro. I've included mplayer2 config in my previous post.
Cheers.
#491
Quote from: jedi on January 20, 2014, 11:51:06 AM
hey hakerdefo, have you tried to do an apt-get install mesa-utils?  i've found this sometimes fixes little quirks with vid related issues.  Then again it may not help at all, but probably worth a shot...
Good luck...
Thanks for your feedback jedi.
mesa-utils is in default VSIDO install and I also installed it in Semplice and custom Sid. But sadly it doesn't make difference.
By the way DRI1 drivers were removed from mesa starting from version 8.0 and there is no DRI2 driver available for this chipset.
Cheers.
#492
Quote from: VastOne on January 20, 2014, 03:16:20 PM
@hakerdefo ...  I like that setup as well and it is included on the ISO, but I thought it would be overkill of a good thing!
I think you misunderstood. I wasn't referring to "Right wing of the Gnome3/Shell" version. I was talking about "the single panel/launcher/task manager/systray" here,

Cheers.
#493
Beauty lies in the eyes of beholder and personally I prefer only single panel at bottom. Like the one here,
http://vsido.org/index.php?topic=58.msg365#msg365
I've no idea why this one is not default in VSIDO  :o
But again "Beauty lies in the eyes of beholder."  ;)
Cheers.
#494
I Lub This Lyrics Too  8)
#495
General Support / Choppy 720p video playback in Debian
January 20, 2014, 11:01:03 AM
I was a bit reluctant to post this as it is not exactly a VSIDO specific problem. But someone whispered in my ear to go ahead and post it so...
My main machine has modest specs. AMD Sempron 2800+ processor running at 1600 MHZ, 2 Gigs of RAM, Motherboard with VIA k8M800 chipset. Now VIA never released proper Linux graphics drivers for this chipset and the only functional drivers are provided by OpenChrome project. This is not a great system but it fulfills my modest needs.
Here is the problem part. I've a few 720p videos and when I play them the playback is choppy and slow. All necessary codecs like libav family, gstreamer family, w32codecs are installed. openchrome driver is installed. Now this choppy playback occurs on every Debian distro I have on this machine. VSIDO, Semplice, and a custom Sid install.
Here is the interesting part, I also have Bodhi Linux [based on Ubuntu Precise 12.04] and Salix 14.0 [based on slackware 14.0] installed on this machine and the 720p videos play fine there. There is no stutter in video playback.
I've tried different kernels ranging from 3.2 to liquorix 3.12.7. I've tried mplayer2 and the newer mpv. mplayer2 and mpv configs are identical across Bodhi-Salix and all Debian flavors.
So why the playback is choppy on Debian based distros and okay in Salix-Bodhi?
Here's my mplayer2 config,


ao=alsa
vo=xv
cache=8192
cache-min=20
cache-seek-min=50
double=yes
ontop=yes
stop-xscreensaver=yes
idx=yes
ass=yes
embeddedfonts=yes
sub-fuzziness=1
slang=en


And mpv config,

ao=alsa
vo=xv
cache-default=8192
cache=8192
cache-min=20
cache-seek-min=50
fs=no
osc=no
ontop=yes
softvol=no
slang=en
stop-screensaver=yes
user-agent="Mozilla/5.0"


Here is detailed info of a video file that stutters under Debian,

Format                                   : MPEG-4
Format profile                           : Base Media / Version 2
Codec ID                                 : mp42
File size                                : 87.5 MiB
Duration                                 : 5mn 28s
Overall bit rate mode                    : Variable
Overall bit rate                         : 2 232 Kbps
Encoded date                             : UTC 2011-05-05 19:43:07
Tagged date                              : UTC 2011-05-05 19:43:07
gsst                                     : 0
gstd                                     : 328771
gssd                                     : BADC23143HH1340962604252990
gshh                                     : o-o.preferred.sin01s10.v3.lscache7.c.youtube.com

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : High@L3.1
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 1 frame
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 5mn 28s
Bit rate                                 : 2 076 Kbps
Maximum bit rate                         : 5 886 Kbps
Width                                    : 1 280 pixels
Height                                   : 720 pixels
Display aspect ratio                     : 16:9
Frame rate mode                          : Variable
Frame rate                               : 23.976 fps
Minimum frame rate                       : 17.241 fps
Maximum frame rate                       : 24.390 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.094
Stream size                              : 81.4 MiB (93%)
Tagged date                              : UTC 2011-05-05 19:43:09

Audio
ID                                       : 2
Format                                   : AAC
Format/Info                              : Advanced Audio Codec
Format profile                           : LC
Codec ID                                 : 40
Duration                                 : 5mn 28s
Bit rate mode                            : Variable
Bit rate                                 : 151 Kbps
Maximum bit rate                         : 204 Kbps
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Sampling rate                            : 44.1 KHz
Compression mode                         : Lossy
Stream size                              : 5.92 MiB (7%)
Title                                    : (C) 2007 Google Inc. v08.13.2007.
Encoded date                             : UTC 2011-05-05 19:43:08
Tagged date                              : UTC 2011-05-05 19:43:09


Any feedback is welcome.
Cheers.