Quick Sign In:  

Forum: German Forum

Topic: VideoSkin Text ein faden
Hallo Freunde der Nacht

Ich möchte den nachfolgenden Text ein faden, kann mir jemand behilflich sein den Code anzupassen? 1500ms??

<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+150" y="+60+6+20-55"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>


<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+150" y="+60+6+20-10"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
<!--<text size="50" color="Titel-Color" weight="" action="get_remix_after_title"/>-->
</textzone>
 

Posted Sun 08 Jan 23 @ 12:26 pm
Du kannst das so machen. Einen anderen Weg mit fadein und fadeout habe ich nicht gefunden.
Was ich an deinem Code seltsam finde, sind die Prozentwete dei bei den "width" Werten. Aber es scheint so zu funktionieren.


<define class="nexttrack">
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>
<stack fadein="1500ms" fadeout="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack" visibility="is_using 'load' 15000ms"/>
</stack>
 

Posted Sun 08 Jan 23 @ 1:16 pm
Hallo und vielen Dank schon mal für den Ansatz

Es ist noch nicht 100%, Der Text (Interpret, Musiktitel) soll erst ein faden wenn der Song spielt, aber nicht wieder ausblenden. Der Text (Interpret, Musiktitel) soll den ganzen Song über stehen bleiben.

Vielleicht geht das gar nicht was ich mir da vorstelle :-)
 

Posted Sun 08 Jan 23 @ 2:16 pm
So? Hab nochmal was geändert...

<define class="nexttrack">
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>
<stack fadein="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack" visibility="is_audible"/>
</stack>
 

Posted Sun 08 Jan 23 @ 2:46 pm
Ich würde persönlich nicht deck="master" verwenden.
teste mal so.
<define class="nexttrack_left">
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<define class="nexttrack_right">
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<stack fadein="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack_left" visibility="deck left is_audible"/>
<item class="nexttrack_right" visibility="deck right is_audible"/>
</stack>
 

Posted Sun 08 Jan 23 @ 3:17 pm
DennYo Beats wrote :
So? Hab nochmal was geändert...

<define class="nexttrack">
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="master" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>
<stack fadein="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack" visibility="is_audible"/>
</stack>


Kommt meiner Vorstellung immer näher;
sobald ich einen Song in den gegenüberliegenden Player ziehe, dann verschwindet jetzt der Text obwohl der Song noch läuft.
 

Posted Sun 08 Jan 23 @ 3:25 pm
Ja das ist das Problem mit dem deck="master"

Der hier ist noch schöner. So faded der Titel aus wenn 2 gleichzeitig hörbar sind und sobald wieder nur noch einen läuft, wird wieder eingefaded.

<define class="nexttrack_left">
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<define class="nexttrack_right">
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<stack fadein="1500ms" fadeout="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack_left" visibility="deck right is_audible ? off : deck left is_audible ? on : off"/>
<item class="nexttrack_right" visibility="deck left is_audible ? off : deck right is_audible ? on : off"/>
</stack>
 

Posted Sun 08 Jan 23 @ 3:31 pm
DennYo Beats wrote :
Ja das ist das Problem mit dem deck="master"

Der hier ist noch schöner. So faded der Titel aus wenn 2 gleichzeitig hörbar sind und sobald wieder nur noch einen läuft, wird wieder eingefaded.

<define class="nexttrack_left">
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="left" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<define class="nexttrack_right">
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+0"/>
<size width="1300%" height="50"/>
<text size="50" color="Artist-Color" weight="" action="get_artist_before_feat"/>
<text size="50" color="Artist-Color" weight="" action="get_featuring_after_artist"/>
</textzone>
<textzone group="horizontal" align="left" deck="right" scroll="yes">
<pos x="+0" y="+45"/>
<size width="1250%" height="70"/>
<text size="70" color="Titel-Color" weight="bold" action="get_title_before_remix 'clean'"/>
</textzone>
</define>

<stack fadein="1500ms" fadeout="1500ms">
<slot x="+150" y="+31" />
<item class="nexttrack_left" visibility="deck right is_audible ? off : deck left is_audible ? on : off"/>
<item class="nexttrack_right" visibility="deck left is_audible ? off : deck right is_audible ? on : off"/>
</stack>


Perfekt!!!

Wenn es keine Umstände macht und es möglich ist so zusagen als kleines gimmick.
Ist es möglich die Text Einblendung zeitlich kurz zu verzögern?
 

Posted Sun 08 Jan 23 @ 9:36 pm
Ich habe keine Möglichkeit gefunden. Der visibility="" Befehl akzeptiert leider nicht das Verb "wait".
 

Posted Mon 09 Jan 23 @ 9:22 am
Servus

Mal ne ganz "blöde " .-) Frage:
Wo kommt das script hin ?
Wollte das mal testen

Grüßle
Holger aus dem wilden Süden
 

Posted Sat 21 Jan 23 @ 12:11 pm
DJ - Dr. Music - DE wrote :
Servus

Mal ne ganz "blöde " .-) Frage:
Wo kommt das script hin ?
Wollte das mal testen

Grüßle
Holger aus dem wilden Süden



In den Video Skin
 

Posted Sat 21 Jan 23 @ 2:28 pm
In den VideoSkin

Sieht bei mir so aus

 

Posted Sat 21 Jan 23 @ 2:33 pm