*** tpb has joined #timvideos | 00:00 | |
CarlFK | mithro: which I can't find now. do you remember how you implemented it? | 00:05 |
---|---|---|
mithro | You could have tmux/screen as part of the command line | 00:07 |
CarlFK | once I get that worked out, isn't it just a simple bash loop? for i in [1,22]: (or whatever the syntax is | 00:09 |
CarlFK | addepps.py: import fixunicode | 00:11 |
CarlFK | I wonder why that is just there and not in my abstract class so it gets used everywhere ? | 00:12 |
mithro | CarlFK: I think you want http://en.m.wikipedia.org/wiki/GNU_parallel | 00:18 |
tpb | Title: GNU parallel - Wikipedia, the free encyclopedia (at en.m.wikipedia.org) | 00:18 |
mithro | I think a CarlFK: you mean you lost the fixunicode file? | 00:26 |
CarlFK | mithro: found it, just not sure why it was only used by one of my 16 or so scripts | 00:26 |
mithro | CarlFK: dunno either :P | 00:27 |
CarlFK | which all subclass from process.py, which is where I expected to find it hooked in | 00:27 |
mithro | it's a horrible hack | 00:27 |
mithro | can you link me to that file? I want to remember what it does :) | 00:27 |
CarlFK | Shhhh.. if you say that too much I may try to fix it | 00:27 |
CarlFK | https://github.com/CarlFK/veyepar/blob/master/dj/scripts/fixunicode.py | 00:28 |
tpb | Title: veyepar/dj/scripts/fixunicode.py at master · CarlFK/veyepar · GitHub (at github.com) | 00:28 |
thaytan | CarlFK, GStreamer, create a pipeline with 22 encoders, set it to PLAYING, done | 00:50 |
mithro | CarlFK: https://github.com/CarlFK/veyepar/pull/37 | 01:16 |
tpb | Title: Making fixunicode more robust and also fix stderr. by mithro · Pull Request #37 · CarlFK/veyepar · GitHub (at github.com) | 01:16 |
*** lukejohn has joined #timvideos | 01:51 | |
* NickB_ waves at lukejohn | 01:52 | |
mithro | hey NickB_ | 01:53 |
mithro | hey lukejohn | 01:53 |
NickB_ | mithro: Luke and I (and Elena!) crossed paths last night, I've got the Atlys-inna-box | 01:54 |
mithro | NickB_: managed to screw the board into the base? | 01:54 |
NickB_ | As far as we know it's the only Atlys floating around here, though. | 01:54 |
NickB_ | mithro: Nah, but it just loooks like four M3? PC screws, maybe a little longer than usual. | 01:55 |
mithro | Yeah | 01:55 |
NickB_ | Failing VCarve, try LibreCAD, you may prefer it anyway. | 01:56 |
mithro | NickB_: if you find out the thread and screw size, please send me an email with the details | 01:56 |
NickB_ | mithro: OK. Even if these are something different, "standard" PC standoffs and spacers are a good choice, and I think those are M3, 3mm metric. | 01:57 |
mithro | NickB_: the standoffs come with the board | 01:58 |
NickB_ | http://en.wikipedia.org/wiki/Computer_case_screws | 02:00 |
tpb | <http://ln-s.net/$5$:> (at en.wikipedia.org) | 02:00 |
CarlFK | mithro: thanks for the patch | 03:25 |
*** mproctor has quit IRC | 04:55 | |
*** h01ger has quit IRC | 06:57 | |
*** h01ger has joined #timvideos | 06:57 | |
*** dhanush has joined #timvideos | 10:22 | |
*** dhanush has quit IRC | 12:44 | |
*** dhanush has joined #timvideos | 15:27 | |
*** mproctor has joined #timvideos | 20:20 | |
CarlFK | ack | 20:48 |
CarlFK | mithro: help... | 20:48 |
CarlFK | import fixunicode | 20:48 |
CarlFK | File "/home/veyepar/trunk/veyepar/dj/scripts/fixunicode.py", line 43, in <module> | 20:48 |
CarlFK | raise SystemError("Unable to write unicode on stdout (encoding %s).\n%s" % (sys.stdout.encoding, e)) | 20:48 |
CarlFK | SystemError: Unable to write unicode on stdout (encoding UTF-8). | 20:48 |
CarlFK | iiie: http://veyepar.nextdayvideo.com:8080/main/overlaping_files/173/ do you have some time to brain storm and help me figure out what to do about "that" ? | 21:57 |
tpb | <http://ln-s.net/AnmN> (at veyepar.nextdayvideo.com:8080) | 21:57 |
CarlFK | due to xface saved sessions or something, 2 instances of dvsink-file got run, so one would create 2014-02-02/08_58_22.dv and the other would create 2014-02-02/08_58_22-1.dv | 21:58 |
iiie | maybe! | 22:13 |
CarlFK | trash = models.BooleanField(help_text="This clip is trash") | 22:15 |
CarlFK | yay. | 22:15 |
CarlFK | I can set that for the ones I want to .. um.. ignore. | 22:16 |
iiie | filename is in a model somewhere right? | 22:16 |
CarlFK | yes | 22:16 |
iiie | q = Model.objects.filter(filename__endswith='-1.dv').update(trash=True) | 22:17 |
CarlFK | https://github.com/CarlFK/veyepar/blob/master/dj/main/views.py#L980 | 22:17 |
tpb | Title: veyepar/dj/main/views.py at master · CarlFK/veyepar · GitHub (at github.com) | 22:17 |
iiie | Raw_File.objects.filter(filename__endswith='-1.dv').update(trash=True) | 22:19 |
CarlFK | I am sure there are other -1's that I need to keep. | 22:19 |
* iiie sighs | 22:19 | |
CarlFK | raw_files=Raw_File.objects.raw('select distinct r1.* from main_raw_file r1,... | 22:19 |
iiie | alright | 22:19 |
CarlFK | I need to only operate on that .. but I thnk I can just for loop over it | 22:19 |
CarlFK | this is very one off ish, so I am ok with super kludge | 22:20 |
iiie | after LN984 | 22:20 |
CarlFK | especially given I am just munging data, not actually rm files | 22:20 |
iiie | raw_files.filter(filename__endswith='-1.dv').update(trash=True) | 22:20 |
CarlFK | I was wondering if I could do that | 22:20 |
iiie | depends on if raw returns a queryset... | 22:21 |
iiie | I think it does | 22:21 |
CarlFK | it has to! I want it to!!! | 22:21 |
iiie | yeah | 22:21 |
CarlFK | does .update() call .save? | 22:28 |
CarlFK | I wouldn't mind looking at the results before they get commited | 22:28 |
CarlFK | pfft - never mind.. I have this code already | 22:30 |
CarlFK | for r in rlist: | 22:30 |
CarlFK | 991 r['start_min']=r['start'].hour*60+r['start'].minute | 22:30 |
CarlFK | 992 r['end_min']=r['end'].hour*60+r['end'].minute | 22:30 |
iiie | no update doesn't call save | 23:32 |
iiie | update does a database update and doesn't run signals either | 23:33 |
Generated by irclog2html.py 2.12.1 by Marius Gedminas - find it at mg.pov.lt!