*** tpb has joined #timvideos | 00:00 | |
*** mparuszewski has quit IRC | 00:23 | |
shenki | doh, tija forgot to push his changes | 00:53 |
---|---|---|
shenki | hrm, it looks like he tried. he merged in the upstream branch, but i can't see any of his commits | 00:53 |
shenki | mithro: is 2014.pycon-au.org working for you? | 00:53 |
aps-sids | shenki: not working for me | 01:03 |
aps-sids | also, http://www.isup.me/2014.pycon-au.org | 01:03 |
shenki | aps-sids: thanks | 01:03 |
tpb | Title: Down For Everyone Or Just Me -> Check if your website is down or up? (at www.isup.me) | 01:03 |
shenki | aps-sids: yeah, i did the same :) i reported it to the guys on twitter | 01:03 |
shenki | it's funny, as they were bragging about how many registrations they were getting only 40 minutes ago | 01:03 |
shenki | perhaps they good too many :) | 01:03 |
*** CarlFK has joined #timvideos | 01:40 | |
*** ChanServ sets mode: +v CarlFK | 01:40 | |
*** CarlFK has quit IRC | 01:44 | |
*** ayush3504 has joined #timvideos | 01:49 | |
aps-sids | mithro: ping? | 01:53 |
*** ayush3504 has quit IRC | 01:54 | |
*** CarlFK has joined #timvideos | 02:08 | |
*** ChanServ sets mode: +v CarlFK | 02:08 | |
CarlFK | mithro: have time / ec2 setup to get a stream up now (shop bot build out here at PS1) | 02:23 |
CarlFK | I have dvswitch running, bringing up an encoder box now | 02:23 |
*** FeltonChris has joined #timvideos | 02:56 | |
CarlFK | oh right.. streaming system expects ubuntu something I dont have handy | 03:30 |
CarlFK | Note, selecting 'gstreamer0.10-plugins-bad' instead of 'gstreamer0.10-plugins-farsight | 03:30 |
CarlFK | farsight? | 03:30 |
mithro | NFI | 03:34 |
mithro | brb | 03:34 |
aps-sids | CarlFK: mithro: small doubt here. I'm not able to understand how to use this - https://lazka.github.io/pgi-docs/Gst-1.0/constants.html#Gst.TIME_FORMAT - in the code here - https://github.com/aps-sids/flumotion-orig/blob/porting-to-gst1.0/flumotion/component/padmonitor.py#L114 | 03:48 |
tpb | Title: Constants - Gst 1.0 (at lazka.github.io) | 03:48 |
aps-sids | Another relevant link, http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-TIME-FORMAT | 03:48 |
tpb | Title: GStreamer 1.0 Core Reference Manual: GstInfo (at gstreamer.freedesktop.org) | 03:48 |
mithro | aps-sids: that is a question for gstreamer people I think. It is just a logging message so don't let it hold you back | 03:54 |
aps-sids | mithro: Please see this output from ipython. http://paste.ubuntu.com/7548660/ I'm missing something here and not sure exactly how to use Gst.TIME_FORMAT. Basically, I need to pass a long int and get output in hh:mm:ss format. I feel its a silly question :/ | 04:03 |
tpb | Title: Ubuntu Pastebin (at paste.ubuntu.com) | 04:03 |
mithro | You should compare it to the old object | 04:07 |
mithro | I think you'll find the old thing was a function | 04:08 |
aps-sids | In [34]: gst.TIME_ARGS(6) | 04:09 |
aps-sids | Out[34]: '0:00:00.000000006' | 04:09 |
aps-sids | old thing just returned the string | 04:09 |
aps-sids | mithro: 6 is a nanosecond here | 04:10 |
mithro | but the new thing is a string not a function which returns a string | 04:13 |
mithro | aps-sids: don't be afraid to go and look at the code | 04:33 |
CarlFK | oh I think I get it ... Gst.TIME_FORMAT = 'u:%02u:%02u.%09u' is the format string which can vary depending on country/local | 04:33 |
CarlFK | >>> 'u:%02u:%02u.%09u' % (1,2,3) | 04:34 |
CarlFK | 'u:01:02.000000003' | 04:34 |
CarlFK | I'll have to admit I don't understand the u:, but anyway, Gst.TIME_FORMAT is just a string | 04:35 |
aps-sids | thanks CarlFK | 04:36 |
aps-sids | that's a new thing I got to know | 04:36 |
mithro | I would have thought that aps-sids knows Gst.TIME_FORMAT is a string | 04:40 |
mithro | because in his ipython output it said | 04:40 |
mithro | In [98]: Gst.TIME_FORMAT?? | 04:40 |
mithro | Type: str | 04:40 |
aps-sids | yeah mithro, I knew that but I didn't know about using % to format (1,2,3) | 04:41 |
mithro | In [5]: gst.TIME_ARGS?? | 04:41 |
mithro | Type: builtin_function_or_method | 04:41 |
mithro | String Form:<built-in function TIME_ARGS> | 04:41 |
CarlFK | aps-sids: I bet you did ;) - it is a more compicated version of >>> "%s foo %s bar %s" % (1,2,3) | 04:44 |
CarlFK | '1 foo 2 bar 3' | 04:44 |
mithro | aps-sids: looks like there is still a gst.TIME_ARGS method in the new Gst? | 04:45 |
mithro | http://cgit.freedesktop.org/gstreamer/gst-python/tree/gi/overrides/Gst.py#n272 | 04:46 |
tpb | Title: gstreamer/gst-python - Python bindings for GStreamer (at cgit.freedesktop.org) | 04:46 |
mithro | This is what the old code did | 04:49 |
mithro | http://cgit.freedesktop.org/gstreamer/gst-python/tree/gst/gst.override?h=0.10#n873 | 04:49 |
tpb | Title: gstreamer/gst-python - Python bindings for GStreamer (at cgit.freedesktop.org) | 04:49 |
aps-sids | huh, I was and am still getting Gst.TIME_ARGS() , object has no attribute TIME_ARGS | 04:57 |
aps-sids | its not showing in ipython as well | 04:58 |
mithro | maybe it's not in the version you have? | 04:58 |
mithro | go and look at the git history to see when it was added | 04:58 |
*** CarlFK has quit IRC | 05:35 | |
aps-sids | mithro: its added dec 2013 and I have Gstreamer latest stable version 1.2.1 :/ | 06:04 |
mithro | aps-sids: it's not a complicated function | 06:06 |
mithro | have a "gst_fixups.py" file which does | 06:06 |
mithro | import gst | 06:06 |
mithro | if not hasattr(gst, "TIME_ARGS"): | 06:06 |
mithro | def TIME_ARGS(...): | 06:07 |
mithro | ... | 06:07 |
mithro | gst.TIME_ARGS = TIME_ARGS | 06:07 |
aps-sids | okay, got it | 06:08 |
*** slomo has joined #timvideos | 06:15 | |
*** slomo has joined #timvideos | 06:15 | |
mithro | once the newer version is everywhere, we can drop that | 06:15 |
*** CarlFK has joined #timvideos | 06:18 | |
*** ChanServ sets mode: +v CarlFK | 06:18 | |
*** mparuszewski has joined #timvideos | 06:36 | |
mithro | mparuszewski: morning? | 06:36 |
mparuszewski | mithro: good morning | 06:37 |
mithro | mparuszewski: looks like you've made good progress with the planet | 06:37 |
mithro | mparuszewski: have you set up autogeneration for it yet? | 06:38 |
mparuszewski | I am working on it. :) | 06:39 |
mithro | mparuszewski: I can also get you those email addresses | 06:39 |
mparuszewski | That would be great, or I can use gravatars from GitHub. | 06:40 |
mithro | mparuszewski: The text in the logo circle on the left it weird, doesn't match what it suppose to look like | 06:41 |
mithro | mparuszewski: can you add an example email in the config file? | 06:42 |
*** mpar has joined #timvideos | 06:44 | |
mpar | I will think about the logo, should I change the text or whole idea? | 06:46 |
mpar | my irc client will make me crazy :D | 06:47 |
*** mparuszewski has quit IRC | 06:47 | |
aps-sids | mpar: stopped using irccloud? | 06:49 |
mithro | mpar: correct text layout/design is found a https://secure.gravatar.com/avatar/ed665fc30c4688bdf7a4d4040d2eebcc?s=160 | 06:51 |
mpar | I have problem with irccloud, because I have only a message that I need to confirm my email address, but I've already done that. I wrote to support about that issue :) | 06:52 |
mpar | mithro: Ok, I will update the logo. | 06:53 |
mpar | mithro: what do you think about other ideas from my snippet? | 06:53 |
mithro | mpar: I don't think we need pagination? | 06:54 |
mithro | mpar: we probably want an "embed" version of the page which doesn't have the left side bar | 06:54 |
mpar | Ok, so I won't fight with pagination and remove the sidebar from that page. Now I will add github activities, gravatars and OPML generation. I will add TimVideos logo to the header and change it a little bit. | 06:58 |
mithro | mpar: I think we want both the one with the side bar and the one without | 06:58 |
mithro | mpar: the one without would be designed to be iframed into the main site? | 06:59 |
mpar | Ok, I can do that. | 07:00 |
mpar | Could you send me emails for gravatars? | 07:01 |
mithro | If you update the planet.yml I'll send you a pull request with emails in them | 07:01 |
mpar | Ok. | 07:02 |
mpar | Should we keep emails in that file in the repository or just gravatars ids? | 07:03 |
mithro | dunno | 07:04 |
*** rohitksingh has joined #timvideos | 07:06 | |
mpar | In my opinion it would be safer for emails to keep only gravatar ids, I don't know if spam bots are looking for emails in GitHub repositories. | 07:06 |
mithro | sounds fair | 07:17 |
mpar | I've created small program to generate gravatar id for email: http://ideone.com/eBcTx5 | 07:21 |
tpb | Title: Ideone.com - eBcTx5 - Online Ruby Interpreter & Debugging Tool (at ideone.com) | 07:21 |
mpar | and updated main repository with planet.yml | 07:23 |
mpar | I will update planet.yml to have all people from GSoC2014 | 07:42 |
mpar | I created special category for HDMI2USB, it is a large project. | 07:43 |
mpar | I've added generate.sh script for planet | 08:39 |
mithro | mpar: great, did you add the gravatars yourself? | 09:09 |
mithro | do you still need me to add them? | 09:09 |
mpar | I've added random gravatars. I still need you, if you give me a list of emails I will generate them. :) | 09:12 |
mpar | Now I will add new page with github activities (it shouldn't be on main page, because it will contain a lot of posts), and then create iframe with content only. | 09:14 |
mpar | I ran my script locally (without ssh connection) and all worked fine. | 09:14 |
mithro | It doesn't look like most people have gravatars | 09:16 |
mpar | We can have images also, but gravatars are great, because even if someone does not have gravatar and we will use default gravatars, we can separate each post, and if someone want to have another image for post author he can create account on gravatar and have one. | 09:19 |
mpar | I will think about auto deploy, cron tab, or else, but I will need your or Leon's help, I don't want to break something. | 09:20 |
mithro | mpar: you can just a crontab entry on generate.timvideos.us ? | 09:27 |
mithro | maybe we should be using github identicons instead? | 09:28 |
mithro | https://github.com/blog/1586-identicons | 09:28 |
tpb | Title: Identicons! · GitHub (at github.com) | 09:28 |
mithro | mpar: actually why not just let people provide an image? | 09:28 |
mithro | s/image/image url/ | 09:28 |
*** wanig_ has quit IRC | 09:30 | |
mpar | Ok, we can use every solution that is available. :) | 09:34 |
mpar | So, by default I will use Indeticons, but if someone will provide me a image I will change that in config, is that good? | 09:35 |
*** wanig_ has joined #timvideos | 09:37 | |
mithro | mpar: yeah, that sounds good. The Ideticons will be the same as the github ones right? | 09:38 |
mpar | Yes, and it's easy because identicons requires only name of GitHub account | 09:40 |
mpar | How often should that script work? Every minute? Hour? | 09:41 |
mithro | how long does it take to run? | 09:44 |
mithro | mpar: you should also make sure you are thinking about pushing any planet.rb changes back upstream | 09:46 |
mpar | Yes, I will make pull request for that project too. | 09:49 |
mpar | It takes about 1 minute, I'll set it for every 5 minutes. | 09:52 |
mpar | I've got permission denied error when trying to run script on generate.timvideos.us | 10:07 |
mpar | Could you validate if my script is correct? | 10:07 |
mpar | I will be back in few hours. | 10:07 |
aps-sids | mpar: can you give link to your script? | 10:10 |
mithro | You should use a similar curl method to the other one. Will look at it when I get home. | 10:10 |
mpar | https://raw.githubusercontent.com/timvideos/planet/master/_generate.sh | 10:11 |
*** tija has joined #timvideos | 10:12 | |
mithro | Okay | 10:14 |
mithro | Morning tija | 10:14 |
tija | mithro: good morning | 10:14 |
mithro | tija: you should make it a goal to get shenki to replicate you results. | 10:14 |
*** mpar has quit IRC | 10:16 | |
tija | mithro: okay, actually lot of work that I did I have overwritten on the same file. Say changing clock frequency: I simply change PLL parameters and overwrite the previous once. | 10:18 |
tija | So how should I go about it. | 10:19 |
tija | save every changes in a new xsvf file? | 10:19 |
mithro | You should commit often to keep a history of your work. | 10:19 |
mithro | You can keep them on separate branches and then clean them up when they should end up on the master branch. | 10:20 |
mithro | Commiting to often is better then not enough | 10:21 |
tija | okay I will do that from today | 10:22 |
*** tija has quit IRC | 10:23 | |
*** tija_ has joined #timvideos | 10:24 | |
*** tija has joined #timvideos | 10:33 | |
*** ayush3504 has joined #timvideos | 10:35 | |
*** ayush3504 has quit IRC | 10:40 | |
*** ayush3504 has joined #timvideos | 10:40 | |
tija | xchat-reset | 10:56 |
*** rohitksingh has quit IRC | 11:00 | |
*** rohitksingh has joined #timvideos | 11:02 | |
*** aboutGod has joined #timvideos | 11:04 | |
*** rohitksingh has quit IRC | 11:06 | |
*** aboutGod has left #timvideos | 11:09 | |
tija | shenki: https://github.com/ajitmathew/HDMI2USB/tree/gsoc This is the new branch that I have made. hdl/jpeg_encoder/jpeg_top-Copy has yesterday's changes | 11:17 |
tpb | Title: ajitmathew/HDMI2USB at gsoc · GitHub (at github.com) | 11:17 |
*** tija has quit IRC | 11:18 | |
*** tija has joined #timvideos | 11:19 | |
*** sarwarc has joined #timvideos | 11:19 | |
*** sarwarc has quit IRC | 11:21 | |
*** sarwarc has joined #timvideos | 11:21 | |
*** rohitksingh has joined #timvideos | 11:22 | |
*** tija has quit IRC | 11:28 | |
*** tija has joined #timvideos | 11:28 | |
*** rohitksingh has quit IRC | 11:30 | |
*** ayush3504 has quit IRC | 12:21 | |
*** slomo has quit IRC | 12:23 | |
*** slomo has joined #timvideos | 12:25 | |
*** slomo has joined #timvideos | 12:25 | |
*** rohitksingh has joined #timvideos | 13:04 | |
*** FeltonChris has quit IRC | 13:10 | |
*** rohitksingh has quit IRC | 13:36 | |
*** sarwarc has quit IRC | 13:46 | |
*** sarwarc has joined #timvideos | 13:48 | |
*** rohitksingh has joined #timvideos | 13:59 | |
shenki | o/ | 14:00 |
*** mparuszewski has joined #timvideos | 14:03 | |
*** Niharika has joined #timvideos | 14:20 | |
*** rohitksingh1 has joined #timvideos | 14:30 | |
*** rohitksingh1 has quit IRC | 14:46 | |
*** rohitksingh has quit IRC | 14:46 | |
*** rohitksingh has joined #timvideos | 14:47 | |
*** tija has quit IRC | 14:51 | |
*** tija has joined #timvideos | 15:06 | |
*** tija has quit IRC | 15:18 | |
*** tija has joined #timvideos | 15:34 | |
*** sarwarc_ has joined #timvideos | 15:56 | |
*** sarwarc has quit IRC | 15:57 | |
*** ayush3504 has joined #timvideos | 15:57 | |
*** Niharika has quit IRC | 15:58 | |
*** Niharika has joined #timvideos | 16:14 | |
*** tija has quit IRC | 16:23 | |
*** Niharika has left #timvideos | 16:56 | |
*** Niharika has quit IRC | 16:56 | |
*** rohitksingh has quit IRC | 17:03 | |
*** ayush3504 has quit IRC | 17:08 | |
*** rohitksingh has joined #timvideos | 17:12 | |
*** Palash has joined #timvideos | 17:25 | |
*** ayush3504 has joined #timvideos | 17:28 | |
aps-sids | CarlFK: you have a minute? | 18:11 |
aps-sids | and gstreamer 1.0 installed? need to check something. | 18:12 |
*** hyades has joined #timvideos | 18:15 | |
*** Palash has quit IRC | 18:27 | |
CarlFK | aps-sids: sure | 18:51 |
aps-sids | CarlFK: please do "from gi.repository import Gst" and check value of Gst,CLOCK_TIME_NONE | 18:52 |
aps-sids | Gst.CLOCK_TIME_NONE | 18:53 |
CarlFK | >>> Gst.CLOCK_TIME_NONE | 18:53 |
CarlFK | 18446744073709551615L | 18:53 |
CarlFK | brb | 18:53 |
CarlFK | b | 18:54 |
aps-sids | for some reason, I'm getting this value as -1 :/ | 19:00 |
CarlFK | from gst or Gst? | 19:01 |
mparuszewski | mithro: I need to install bundler on generate.timvideos.us, but I don't have permissions to do gem install bundler (that's why my script won't work) | 19:03 |
mparuszewski | exit | 19:03 |
*** rohitksingh has quit IRC | 19:06 | |
*** rohitksingh has joined #timvideos | 19:06 | |
aps-sids | CarlFK: from Gst.. gst gives me correct value | 19:08 |
*** sarwarc_ has quit IRC | 19:08 | |
CarlFK | how do I check Gst version ? | 19:08 |
*** sarwarc_ has joined #timvideos | 19:10 | |
aps-sids | Gst.version or version_string | 19:12 |
CarlFK | >>> Gst.version | 19:14 |
CarlFK | gi.FunctionInfo(version) | 19:14 |
CarlFK | >>> Gst.version_string | 19:14 |
CarlFK | gi.FunctionInfo(version_string) | 19:14 |
aps-sids | Gst.version_string() | 19:15 |
CarlFK | 'GStreamer 1.2.4' | 19:15 |
aps-sids | ah, I have 1.2.1. Is 1.2.4 development version? and you are using Ubuntu 12.04? | 19:16 |
CarlFK | Ubuntu 14.04 LTS | 19:18 |
CarlFK | what is the .deb package name? | 19:18 |
aps-sids | CarlFK: https://launchpad.net/~gstreamer-developers/+archive/ppa?field.series_filter=precise | 19:46 |
tpb | Title: PPA for GStreamer developers : “GStreamer developers” team (at launchpad.net) | 19:46 |
aps-sids | does this mean 1.2.1 is latest version for ubuntu 12.04? | 19:46 |
CarlFK | *** 1.2.4-1~ubuntu1 0 | 20:01 |
CarlFK | 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages | 20:01 |
tpb | Title: Index of /ubuntu (at us.archive.ubuntu.com) | 20:01 |
CarlFK | it may be easier to work with 12.04 | 20:01 |
*** sarwarc_ has quit IRC | 20:05 | |
*** hyades has quit IRC | 20:59 | |
*** CarlFK has quit IRC | 21:32 | |
*** CarlFK has joined #timvideos | 22:00 | |
*** ChanServ sets mode: +v CarlFK | 22:00 | |
*** FeltonChris has joined #timvideos | 22:06 | |
*** ayush3504 has quit IRC | 22:09 | |
aps-sids | CarlFK: ping? | 22:12 |
CarlFK | aps-sids: here | 22:12 |
aps-sids | please do this, "from gi.repository import Gst" and gst.TIME_ARGS(6) | 22:13 |
aps-sids | sorry | 22:13 |
aps-sids | Gst.TIMEARGS(6) | 22:13 |
aps-sids | oops, Gst.TIME_ARGS(6) | 22:14 |
aps-sids | this ^ | 22:14 |
CarlFK | AttributeError: 'gi.repository.Gst' object has no attribute 'TIME_ARGS' | 22:14 |
aps-sids | ah, ok thanks | 22:14 |
aps-sids | If you're free please go throughg my blog. I just posted. | 22:15 |
aps-sids | working on Ubuntu 12.04 is a really bad idea according to gstreamer guys. | 22:18 |
*** ayush3504 has joined #timvideos | 22:19 | |
CarlFK | somewhere recommend 12.04 - should update that to 14.04 | 22:22 |
*** rohitksingh has quit IRC | 22:39 | |
*** slomo has quit IRC | 23:08 | |
*** ayush3504 has quit IRC | 23:41 |
Generated by irclog2html.py 2.12.1 by Marius Gedminas - find it at mg.pov.lt!