Re: videoClip

2017-12-13 Thread Richmond Mathewson via use-livecode

Not portative or portable, but something I'm bl**dy proud of as
I worked the thing out in about 30 minutes during a lunchbreak:

http://forums.livecode.com/viewtopic.php?f=10&t=30295

Richmond.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Graham Samuel via use-livecode
Me too.

Graham

> On 12 Dec 2017, at 12:10, Keith Martin via use-livecode 
>  wrote:
> 
> On 12 Dec 2017, at 11:05, Richmond Mathewson via use-livecode wrote:
> 
>> One of the reasons why videoClip and AudioClip are useful
>> is to do with portativity.
> 
> This is a VERY good reason to support this properly. I still find it frankly 
> weird that LC isn't able to handle MP3 media more flexibly than it does at 
> the moment. :-/
> 
> k


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread J. Landman Gay via use-livecode
I misread portativity too but they're similar anyway. It isn't hard to 
store the video as a custom property, write it to the temp folder on 
demand, and assign a player to that filename. Later just delete the temp file.


I've done this and it works fine.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com



On December 12, 2017 5:31:49 AM Mark Waddingham via use-livecode 
 wrote:



On 2017-12-12 12:24, Mark Waddingham via use-livecode wrote:

On 2017-12-12 12:05, Richmond Mathewson via use-livecode wrote:

One of the reasons why videoClip and AudioClip are useful
is to do with portativity.


That would be true - if playing a videoclip didn't use a temporary
player object 'under the hood' - i.e. you get no more with using
videoclips than you do with players with regards portability...


Ignore that - I misread 'portativity' as 'portability' :)

Warmest Regards,

Mark.

--
Mark Waddingham ~ m...@livecode.com ~ http://www.livecode.com/
LiveCode: Everyone can create apps

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Mark Waddingham via use-livecode

On 2017-12-12 12:24, Mark Waddingham via use-livecode wrote:

On 2017-12-12 12:05, Richmond Mathewson via use-livecode wrote:

One of the reasons why videoClip and AudioClip are useful
is to do with portativity.


That would be true - if playing a videoclip didn't use a temporary
player object 'under the hood' - i.e. you get no more with using
videoclips than you do with players with regards portability...


Ignore that - I misread 'portativity' as 'portability' :)

Warmest Regards,

Mark.

--
Mark Waddingham ~ m...@livecode.com ~ http://www.livecode.com/
LiveCode: Everyone can create apps

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Mark Waddingham via use-livecode

On 2017-12-12 12:05, Richmond Mathewson via use-livecode wrote:

One of the reasons why videoClip and AudioClip are useful
is to do with portativity.


That would be true - if playing a videoclip didn't use a temporary 
player object 'under the hood' - i.e. you get no more with using 
videoclips than you do with players with regards portability...


(This is not to say 'play videoclip' shouldn't work - just that it is 
just sugar for using a player).


Warmest Regards,

Mark.

--
Mark Waddingham ~ m...@livecode.com ~ http://www.livecode.com/
LiveCode: Everyone can create apps

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Keith Martin via use-livecode

On 12 Dec 2017, at 11:05, Richmond Mathewson via use-livecode wrote:


One of the reasons why videoClip and AudioClip are useful
is to do with portativity.


This is a VERY good reason to support this properly. I still find it 
frankly weird that LC isn't able to handle MP3 media more flexibly than 
it does at the moment. :-/


k

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode

One of the reasons why videoClip and AudioClip are useful
is to do with portativity.

Richmond.

On 12/12/17 1:02 pm, panagiotis merakos via use-livecode wrote:

I guess the reason for that is that you can do waaay more stuff with the
player object, so this bug is not of very high priority.

On Tue, Dec 12, 2017 at 10:59 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:


That bug has been sitting around, unsorted-out
for a very long time.

Um?

Richmond.

On 12/12/17 12:47 pm, panagiotis merakos via use-livecode wrote:


Hi Richmond,

You are affected by this bug:
http://quality.livecode.com/show_bug.cgi?id=13951

I suggest using a player instead. The "play audioclip/videoclip .." syntax
does not support a lot of multimedia formats.

Best,
Panos
--

On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:

LiveCode 8.1.8, Mac OS 10.7.5

So, I imported a video in 3 formats into my stack:

BubbleSort.mp4
BubbleSort.avi
BubbleSort.mov

and in a button popped this script:

on mouseUp
play videoClip "BubbleSort.mp4"
end mouseUp

[and variants thereof]

and in all 3 cases all I got was the sound track: no film.

Is it:

1. Me?
2. LiveCode 8.1.8?
3. My computer?

Richmond.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___

use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread panagiotis merakos via use-livecode
I guess the reason for that is that you can do waaay more stuff with the
player object, so this bug is not of very high priority.

On Tue, Dec 12, 2017 at 10:59 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:

> That bug has been sitting around, unsorted-out
> for a very long time.
>
> Um?
>
> Richmond.
>
> On 12/12/17 12:47 pm, panagiotis merakos via use-livecode wrote:
>
>> Hi Richmond,
>>
>> You are affected by this bug:
>> http://quality.livecode.com/show_bug.cgi?id=13951
>>
>> I suggest using a player instead. The "play audioclip/videoclip .." syntax
>> does not support a lot of multimedia formats.
>>
>> Best,
>> Panos
>> --
>>
>> On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>
>> LiveCode 8.1.8, Mac OS 10.7.5
>>>
>>> So, I imported a video in 3 formats into my stack:
>>>
>>> BubbleSort.mp4
>>> BubbleSort.avi
>>> BubbleSort.mov
>>>
>>> and in a button popped this script:
>>>
>>> on mouseUp
>>>play videoClip "BubbleSort.mp4"
>>> end mouseUp
>>>
>>> [and variants thereof]
>>>
>>> and in all 3 cases all I got was the sound track: no film.
>>>
>>> Is it:
>>>
>>> 1. Me?
>>> 2. LiveCode 8.1.8?
>>> 3. My computer?
>>>
>>> Richmond.
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>
>>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode

That bug has been sitting around, unsorted-out
for a very long time.

Um?

Richmond.

On 12/12/17 12:47 pm, panagiotis merakos via use-livecode wrote:

Hi Richmond,

You are affected by this bug:
http://quality.livecode.com/show_bug.cgi?id=13951

I suggest using a player instead. The "play audioclip/videoclip .." syntax
does not support a lot of multimedia formats.

Best,
Panos
--

On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:


LiveCode 8.1.8, Mac OS 10.7.5

So, I imported a video in 3 formats into my stack:

BubbleSort.mp4
BubbleSort.avi
BubbleSort.mov

and in a button popped this script:

on mouseUp
   play videoClip "BubbleSort.mp4"
end mouseUp

[and variants thereof]

and in all 3 cases all I got was the sound track: no film.

Is it:

1. Me?
2. LiveCode 8.1.8?
3. My computer?

Richmond.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode

Thank you, Panos,

although when I first read your message I read it as:

"You are infected by this bug:''

Richmond.

On 12/12/17 12:47 pm, panagiotis merakos via use-livecode wrote:

Hi Richmond,

You are affected by this bug:
http://quality.livecode.com/show_bug.cgi?id=13951

I suggest using a player instead. The "play audioclip/videoclip .." syntax
does not support a lot of multimedia formats.

Best,
Panos
--

On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:


LiveCode 8.1.8, Mac OS 10.7.5

So, I imported a video in 3 formats into my stack:

BubbleSort.mp4
BubbleSort.avi
BubbleSort.mov

and in a button popped this script:

on mouseUp
   play videoClip "BubbleSort.mp4"
end mouseUp

[and variants thereof]

and in all 3 cases all I got was the sound track: no film.

Is it:

1. Me?
2. LiveCode 8.1.8?
3. My computer?

Richmond.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: videoClip

2017-12-12 Thread panagiotis merakos via use-livecode
Hi Richmond,

You are affected by this bug:
http://quality.livecode.com/show_bug.cgi?id=13951

I suggest using a player instead. The "play audioclip/videoclip .." syntax
does not support a lot of multimedia formats.

Best,
Panos
--

On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode <
use-livecode@lists.runrev.com> wrote:

> LiveCode 8.1.8, Mac OS 10.7.5
>
> So, I imported a video in 3 formats into my stack:
>
> BubbleSort.mp4
> BubbleSort.avi
> BubbleSort.mov
>
> and in a button popped this script:
>
> on mouseUp
>   play videoClip "BubbleSort.mp4"
> end mouseUp
>
> [and variants thereof]
>
> and in all 3 cases all I got was the sound track: no film.
>
> Is it:
>
> 1. Me?
> 2. LiveCode 8.1.8?
> 3. My computer?
>
> Richmond.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode

LiveCode 8.1.8, Mac OS 10.7.5

So, I imported a video in 3 formats into my stack:

BubbleSort.mp4
BubbleSort.avi
BubbleSort.mov

and in a button popped this script:

on mouseUp
  play videoClip "BubbleSort.mp4"
end mouseUp

[and variants thereof]

and in all 3 cases all I got was the sound track: no film.

Is it:

1. Me?
2. LiveCode 8.1.8?
3. My computer?

Richmond.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Using an embedded videoClip in a VideoPlayer

2013-03-30 Thread William Ziegler
Is there any way I  can populate a VideoPlayer with a videoClip that has been 
imported. 

I need to control its size, position and have it start as a still, play when 
clicked and end as a still.

I also need the clips to be imbedded in the stack for portability. I still use 
a Player to run the stacks on multiple platforms.

Can I export it out, temporarily, bring in back in then delete the exported 
file?

bill
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: Simple play videoclip question

2012-02-28 Thread John Dixon



play stop videoclip "NWOpen.mov" ... will work. The 'play stop' syntax will not 
make it disappear..:-) but it will be put away when you go to another card.

> I'm doing this:
> 
> In a card script:
> 
> on openCard
>play videoclip "NWOpen.mov" at 400,300
>pass openCard
> end openCard
> 
> on closeCard
>stop playing videoclip "NWOpen.mov"
>pass closeCard
> end closeCard
> 
> The closeCard does not stop the videoclip. The closeCard message is received 
> by this closeCard handler. ???
> 
> Also, when I do stop it, does it disappear?
> 
> Peter Bogdanoff
> UCLA
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
  
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Simple play videoclip question

2012-02-27 Thread Peter Bogdanoff
I'm doing this:

In a card script:

on openCard
   play videoclip "NWOpen.mov" at 400,300
   pass openCard
end openCard

on closeCard
   stop playing videoclip "NWOpen.mov"
   pass closeCard
end closeCard

The closeCard does not stop the videoclip. The closeCard message is received by 
this closeCard handler. ???

Also, when I do stop it, does it disappear?

Peter Bogdanoff
UCLA
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode