Rank: Advanced Member
Groups: Registered
Joined: 8/11/2017(UTC) Posts: 60 Location: Medxico
Thanks: 2 times Was thanked: 7 time(s) in 6 post(s)
|
tkachuk.alex:
i modified the numbers 0,1,2,3,4 truetype font and installed on pc, number 0 clear dot, on number 1, one dot, on number 2 two dots, number 3 three dots, number 4 clear dot
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/2/2015(UTC) Posts: 364 Location: Sydney Thanks: 283 times Was thanked: 76 time(s) in 62 post(s)
|
tkachuk.alex wrote:chococrispis35 wrote:My UTC Baseball Project - 14/03/2018 Nice! How do you edit that on +1 coloring red dots? I use for every dot list with "red" and "empty", and it's little hard Good job on the XAML animations :)
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 7/8/2016(UTC) Posts: 49 Location: Ukraine Thanks: 11 times Was thanked: 5 time(s) in 3 post(s)
|
chococrispis35 wrote:tkachuk.alex:
i modified the numbers 0,1,2,3,4 truetype font and installed on pc, number 0 clear dot, on number 1, one dot, on number 2 two dots, number 3 three dots, number 4 clear dot Understand.. )
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
@JAIRODJ, special for you I've added string & array functions: String manipulationsplit(string, separator) splits string into an array of strings by separating the string into substrings, using a specified separator string to determine where to make each split. trim(string) removes whitespace from both ends of a string. Array manipulationgetvalue(array, index) gets value from array at index index. They are very simple, but I think you can made what you need: Code:
trim(
getvalue(
split(
_('Inputs[78520042-b6df-4aac-8c17-d3d7f056c24b].Title'),
'-'),
0)
)
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/1/2015(UTC) Posts: 126 Location: Ecuador Thanks: 2 times Was thanked: 16 time(s) in 12 post(s)
|
Thanks @elfarg, your help helped me a lot.
I have managed to separate the string using SetText + split in a video input, but I have a problem with the video input tickets the title of the entry is: List - Artist - Titlevideo.mp4
Please if you guide me as I would to to remove "List" and the extension ".mp4" of the title. I have tried adding the separator (-) but I have left (.mp4) inside the string (Artist - Titlevideo.mp4), if I add the seprator (.) I have "List" in the string (List - Artist - Titlevideo)
My objective is to obtain the clean titles, without "List" and without ".mp4"
(Artist - Titlevideo)
or separate
1.- Artist 2.- Titlevideo
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
@JAIRODJ, you can use "split" function twice, at first with '-' separator, then with '.' separator on string with .mp4 end. You also can use variable to shorten your commands: SetVar: split(_('Inputs[78520042-b6df-4aac-8c17-d3d7f056c24b].Title'), '-') Variable index can be 0, or any other positive value. So, you put array into _var0 variable. Then you can use this variable into script of button: Code:trim(
getvalue(
_var0,
0)
)
Or Code:trim(
getvalue(split(getvalue(_var0, 1), '.'), 0)
)
btw, there will be problem with names with dots =(
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/1/2015(UTC) Posts: 126 Location: Ecuador Thanks: 2 times Was thanked: 16 time(s) in 12 post(s)
|
I am very grateful @elgarf with the help you have given me is very good .. UTC is an incredible tool, they have so many options, but I still have to learn to use them. I try to learn more in UTC wiki.
I already managed to separate the chains in Artist and Title, it's perfect.
I ask. An overlay can be activated automatically, using the dependence of the status of a "Running" entry that shows in the localhost API or if it changes video from the videolist.
The intention is to automate the self-titled videos: If input 1 (Videolist) is active on air, wait 5 seconds and launch overlay 1 after the playback or video change has started.
I imagine that with the conditions and timer it is done, but what a shame for me not to use them.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
I've made this sample sometime ago sample, you can see commands & code flow. Making complex script a bit difficult with existing system =(
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/11/2017(UTC) Posts: 60 Location: Medxico
Thanks: 2 times Was thanked: 7 time(s) in 6 post(s)
|
Please Help me
I created an external data widget left update period (1000) and set file path to vMixGenericXmlDataProvider.dll pasted path from my hard disk of XML file (file:///C:/LineUp/LineUPHome.xml... and or C:/LineUp/LineUPHome.xml) i created a xml with xmlnotepad y saved on mi hard drive but no working
xpath => no loaded i added manually xpath //Equipo/Bateador/Posicion/Equipo/Ciudad
whats the correct form or procedures, any tutorial?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/1/2015(UTC) Posts: 126 Location: Ecuador Thanks: 2 times Was thanked: 16 time(s) in 12 post(s)
|
You are a genius @elgarf this incredible, I thank you a whole world for the help. Thanks bro
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
@chococrispis35, can you share xml file?
@JAIRODJ, there should be not very time-accurate updating, but who cares =)
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/1/2015(UTC) Posts: 126 Location: Ecuador Thanks: 2 times Was thanked: 16 time(s) in 12 post(s)
|
Hello, for making known a novelty that happened to me, I wanted to use UTC from my laptop and at the beginning of the application a message appeared:
"NDI filters not recognized in your system. Register them?"
And every time I restart the computer and open UTC, the same message reappears. Never before has this happened.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
Have you tried aggreeing with this?)
It's warning to use NDI monitor. You can press "Cancel" and this warning shouldn't open anymore. At least I've tested so.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/11/2017(UTC) Posts: 60 Location: Medxico
Thanks: 2 times Was thanked: 7 time(s) in 6 post(s)
|
Elgarf xml file created xmlnotepad https://mega.nz/#!j8BxVYhB!krc2bmJVCaCwWl4AxHEfUi65GIByD2sTpoal5Y-fy7I thanks
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
@chococrisps35, will select all entities into "Bat" tag. There is no step for switching next/previous tag, it just take all info and then map it onto title. But you can select specific bat You can use this tester to check results.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 8/11/2017(UTC) Posts: 60 Location: Medxico
Thanks: 2 times Was thanked: 7 time(s) in 6 post(s)
|
Thanks Elgarf
ok, it worked! I already understand that I can not display all the tags to select the one I want.
is it difficult to add a list entry for xpath to select the specific tag? or a button to program the tag I want?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/20/2014(UTC) Posts: 2,721 Location: Bordeaux, France Thanks: 243 times Was thanked: 794 time(s) in 589 post(s)
|
Quote:I already understand that I can not display all the tags to select the one I want. vMix does this by default when you use datasource and title editor and provides all the API commands to control it from UTC if needed. Much easier I think... Guillaume
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 10/23/2015(UTC) Posts: 458 Thanks: 20 times Was thanked: 226 time(s) in 129 post(s)
|
DWAM wrote:vMix does this by default when you use datasource and title editor and provides all the API commands to control it from UTC if needed. Much easier I think... Yep, but external data in UTC easier when you need just took all data from xml and map it onto one/many titles... You don't need go into each title and set every text source to datasource or give specific names to texts. Btw, now I think that there is place for button "fill all texts of the title" or so on, which add all available texts of title to title mapper. This will help a lot if you, for example, have xml with team players, and want just push info to the title.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 9/1/2015(UTC) Posts: 126 Location: Ecuador Thanks: 2 times Was thanked: 16 time(s) in 12 post(s)
|
Hello, I used UTC to create a branding schedule with the clock, that is, UTC remains active all the time (24/7) .. but UTC collapses and does not respond. Example: Today active UTC, tomorrow no longer responds or delay in performing the task, or if I want to edit or add a new button UTC does not respond. Can I use UTC in this way or is it not designed to remain active?
A suggestion or request of function. - It is possible to add Sliders to control the volume of the inputs or the master
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/20/2014(UTC) Posts: 2,721 Location: Bordeaux, France Thanks: 243 times Was thanked: 794 time(s) in 589 post(s)
|
I have had issues on long period of times yes. Check the log file, sometimes it gets so huge that the system gets unresponsive.
|
1 user thanked DWAM for this useful post.
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close