Send Motion-user mailing list submissions to
        motion-user@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/motion-user
or, via email, send a message with subject or body 'help' to
        motion-user-requ...@lists.sourceforge.net

You can reach the person managing the list at
        motion-user-ow...@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Motion-user digest..."


Today's Topics:

   1. Re: Timestamp size on movie file (Colin Law)
   2. Re: Timestamp size on movie file (Colin Law)
   3. With the latest gighub Version i can not access my rtsp
      camera anymore (6745th)
   4. Re: Timestamp size on movie file (Colin Law)


----------------------------------------------------------------------

Message: 1
Date: Sat, 3 Jun 2017 08:30:24 +0100
From: Colin Law <clan...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] Timestamp size on movie file
Message-ID:
        <CAL=0glt-2woqzms4c8akjnne-exmhmqr7e4qkyv15gkcoje...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Repeating text_double in the config file does not work for me. In fact
putting it in exactly as you suggest (without on or off specified)
just results in the standard size text, possibly because it defaults
to off, and putting it in multiple times but specifying on for each
one just results in double sized text. Looking at the code I would not
expect repeating it to work, it is just on or off.

Colin

On 3 June 2017 at 03:01, ?ukasz K <szt...@gmail.com> wrote:
> you can use ?text_double? many times to have bigger text eg.
>
> text_double
> text_double
> text_double
>



------------------------------

Message: 2
Date: Sat, 3 Jun 2017 15:46:56 +0100
From: Colin Law <clan...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] Timestamp size on movie file
Message-ID:
        <CAL=0glsm9ba4vvmcnyfgde5et5evmxw1oc2dw6+ujhmxh1p...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Thanks krevans, there is rather more to it than that, as it is
necessary to adjust the positioning and line spacing also. I have
worked out a hack that basically works but needs a bit more testing.

I am contemplating suggesting a new configuration key, possibly
text_scaling, which could be set to 1, 2, 3, 4 etc. If that is not
provided in the config file then text_double continues to work as it
does currently. If text_scaling is provided then text_double is
ignored and the text scaling is set by the new key.

Would the developers accept a PR for that?

Colin

On 3 June 2017 at 15:16, K E <krev...@hotmail.com> wrote:
> In draw.c
>
> struct draw_char {
>     unsigned char ascii;
>     unsigned char pix[8][7];
> };
>
>
> struct big_char {
>     unsigned char ascii;
>     unsigned char pix[16][14];
> };
>
> Looks like where the text size is set. Change 16 and 14 to 32 and 28 and
> turn on the text_double. Or change it in the normal draw_char function and
> leave text_double off.
>
>
>
> ________________________________
> From: 33Mail <sen...@mailer1.33mail.com> on behalf of Colin Law
> 'clan...@gmail.com' via 33Mail <sen...@mailer1.33mail.com>
> Sent: Saturday, June 3, 2017 12:30 AM
> To: krev...@hotmail.com
> Subject: Re: [Motion-user] Timestamp size on movie file
>
> This email was sent to the alias 'mot...@kre.33mail.com' by
> 'motion-user@lists.sourceforge.net', and 33Mail forwarded it to you. To
> block all further emails to this alias follow this link :
> http://www.33mail.com/alias/unsub/3ce8bf68c47461d6c34a4f478cc25569
> Refer 2 friends to 33Mail and get a Free Premium Upgrade. Go to this url to
> get your referral link http://www.33mail.com/dashboard.
>
> Repeating text_double in the config file does not work for me. In fact
> putting it in exactly as you suggest (without on or off specified)
> just results in the standard size text, possibly because it defaults
> to off, and putting it in multiple times but specifying on for each
> one just results in double sized text. Looking at the code I would not
> expect repeating it to work, it is just on or off.
>
> Colin
>
> On 3 June 2017 at 03:01, ?ukasz K <szt...@gmail.com> wrote:
>> you can use ?text_double? many times to have bigger text eg.
>>
>> text_double
>> text_double
>> text_double
>>
>
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Motion-user mailing list
> Motion-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/motion-user
> https://motion-project.github.io/
>
> Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user



------------------------------

Message: 3
Date: Sun, 4 Jun 2017 11:54:31 +0200 (GMT+02:00)
From: 6745th <674...@web.de>
To: "motion-user@lists.sourceforge.net"
        <motion-user@lists.sourceforge.net>
Subject: [Motion-user] With the latest gighub Version i can not access
        my rtsp camera anymore
Message-ID: <47135817.2.1496570071785.javamail.674...@web.de>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...

------------------------------

Message: 4
Date: Sun, 4 Jun 2017 16:58:22 +0100
From: Colin Law <clan...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] Timestamp size on movie file
Message-ID:
        <CAL=0glvxuaxe7b1zuuj4h5jqgz4bf8poj-gpablwst_mvee...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

In case anyone is interested I have hacked in code to allow compile
time specification of text scaling (2, 3, 4 etc). It can be found in
the scaleable_text branch on my git fork [1]. I have raised an issue
to ask whether a PR would be welcome and a proposal on how to control
it via the conf file [2].  Let me know if you try it put an issue on
my fork if there are any problems.

Colin

[1] https://github.com/colinl/motion/tree/scaleable_text
[2] https://github.com/Motion-Project/motion/issues/395



On 3 June 2017 at 15:46, Colin Law <clan...@gmail.com> wrote:
> Thanks krevans, there is rather more to it than that, as it is
> necessary to adjust the positioning and line spacing also. I have
> worked out a hack that basically works but needs a bit more testing.
>
> I am contemplating suggesting a new configuration key, possibly
> text_scaling, which could be set to 1, 2, 3, 4 etc. If that is not
> provided in the config file then text_double continues to work as it
> does currently. If text_scaling is provided then text_double is
> ignored and the text scaling is set by the new key.
>
> Would the developers accept a PR for that?
>
> Colin
>
> On 3 June 2017 at 15:16, K E <krev...@hotmail.com> wrote:
>> In draw.c
>>
>> struct draw_char {
>>     unsigned char ascii;
>>     unsigned char pix[8][7];
>> };
>>
>>
>> struct big_char {
>>     unsigned char ascii;
>>     unsigned char pix[16][14];
>> };
>>
>> Looks like where the text size is set. Change 16 and 14 to 32 and 28 and
>> turn on the text_double. Or change it in the normal draw_char function and
>> leave text_double off.
>>
>>
>>
>> ________________________________
>> From: 33Mail <sen...@mailer1.33mail.com> on behalf of Colin Law
>> 'clan...@gmail.com' via 33Mail <sen...@mailer1.33mail.com>
>> Sent: Saturday, June 3, 2017 12:30 AM
>> To: krev...@hotmail.com
>> Subject: Re: [Motion-user] Timestamp size on movie file
>>
>> This email was sent to the alias 'mot...@kre.33mail.com' by
>> 'motion-user@lists.sourceforge.net', and 33Mail forwarded it to you. To
>> block all further emails to this alias follow this link :
>> http://www.33mail.com/alias/unsub/3ce8bf68c47461d6c34a4f478cc25569
>> Refer 2 friends to 33Mail and get a Free Premium Upgrade. Go to this url to
>> get your referral link http://www.33mail.com/dashboard.
>>
>> Repeating text_double in the config file does not work for me. In fact
>> putting it in exactly as you suggest (without on or off specified)
>> just results in the standard size text, possibly because it defaults
>> to off, and putting it in multiple times but specifying on for each
>> one just results in double sized text. Looking at the code I would not
>> expect repeating it to work, it is just on or off.
>>
>> Colin
>>
>> On 3 June 2017 at 03:01, ?ukasz K <szt...@gmail.com> wrote:
>>> you can use ?text_double? many times to have bigger text eg.
>>>
>>> text_double
>>> text_double
>>> text_double
>>>
>>
>> ------------------------------------------------------------------------------
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> _______________________________________________
>> Motion-user mailing list
>> Motion-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/motion-user
>> https://motion-project.github.io/
>>
>> Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user



------------------------------

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

------------------------------

Subject: Digest Footer

_______________________________________________
Motion-user mailing list
Motion-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/motion-user


------------------------------

End of Motion-user Digest, Vol 132, Issue 6
*******************************************

Reply via email to