vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Show Thread Enhancements - AME - Auto Media Embedding (youtube, Amazon, google, myspace, etc...) (https://vborg.vbsupport.ru/showthread.php?t=150863)

Tralala 12-10-2007 04:14 AM

Quote:

Originally Posted by hotwheels (Post 1398065)
K, this one is an update for jumpcut.com

Go to your amecp, and then display. Delete the old jumpcut.xml

Now upload this new one.......should be good to go.....If you run across any issues with this one, please let me know.

I tested 7 different jumpcut video's and they all worked.......

hotwheels

Not working for me.

Just tried this as a sample:

http://www.jumpcut.com/view?id=986CF...0F000423CEF5B0

It just leaves the URL, doesn't convert it at all.

Nikoo 12-10-2007 10:19 AM

Hi,


I wonder what kind of modification do i need to do to add videos from this site?

http://www.pokertube.com/


Thanks ( :

hotwheels 12-10-2007 10:54 AM

Quote:

Originally Posted by Tralala (Post 1398345)
Not working for me.

Just tried this as a sample:

http://www.jumpcut.com/view?id=986CF...0F000423CEF5B0

It just leaves the URL, doesn't convert it at all.

My bad.....When i snooped the url, I left a / in the xml which didn't need to be there......and i am at work right now, so i don't have my software with me to change the xml........If you put a / right after "view" it will work........ www.jumpcut.com/view/

I will fix it tonight.......

Quote:

SBlueman:Can the zip file in the first post be updated to include all the sites that have been added after July 13th?
I have been thinking about doing that......Right now this entire thread is kind of a mess. We have xml's here and in another thread........Maybe i will start a new xml thread and add all of the video site's i have that are currently working. I believe at last count, i have over 75 working xml video sites......and the wonderful thing about this mod is the fact that you can pick and choose from the 75 xmls........

Would me starting a new xml add on thread be the way to go or what? I know i have asked this before and never really got anywhere with an answer.....

This was supposed to be the add on xml thread: https://vborg.vbsupport.ru/showthread.php?t=157109 But sadly, the thread owner hasn't really had time to keep up with all of the xml's that have been made........if a person was to take time and go through that thread and this thread, they would find all of the xml's..........

Tralala 12-10-2007 02:51 PM

Quote:

Originally Posted by hotwheels (Post 1398477)
I will fix it tonight.......

Thanks, man. It's certainly appreciated.


Quote:

Originally Posted by hotwheels (Post 1398477)
I have been thinking about doing that......Right now this entire thread is kind of a mess. We have xml's here and in another thread........Maybe i will start a new xml thread and add all of the video site's i have that are currently working. I believe at last count, i have over 75 working xml video sites......and the wonderful thing about this mod is the fact that you can pick and choose from the 75 xmls........

Would me starting a new xml add on thread be the way to go or what? I know i have asked this before and never really got anywhere with an answer.....

I think starting a new thread is the way to go. You could offer up a current zip, and update the first post with new XML files as they get shared. The new thread would supersede the other one and serve as the official companion to this one.

At least, that's my 2 cents...

Tralala 12-10-2007 04:18 PM

I'm having a weird issue with AME (and one of my skins, it seems?)

It works fine with replies. But it doesn't work when a video clip URL is included in the first post of a thread. It's simply left as a clickable URL.

If the poster goes in and edits the post afterwards, removing the [url] and [/url] tags that get added, it works. But it's not autoconverting to an embedding video clip like it should.

What should I be looking for, in this specific skin? (It's Aqua-Soft, by the way.)

glorify 12-10-2007 04:53 PM

Quote:

Originally Posted by Tralala (Post 1398342)
what is Gal?

Geek Auto Linker. One of Geeks paid hacks.

Tralala 12-10-2007 06:10 PM

Quote:

Originally Posted by Tralala (Post 1398650)
I'm having a weird issue with AME (and one of my skins, it seems?)

It works fine with replies. But it doesn't work when a video clip URL is included in the first post of a thread. It's simply left as a clickable URL.

If the poster goes in and edits the post afterwards, removing the [url] and [/url] tags that get added, it works. But it's not autoconverting to an embedding video clip like it should.

What should I be looking for, in this specific skin? (It's Aqua-Soft, by the way.)


I've investigated and now see the issue. The skin I'm using doesn't show this checkbox option in the Post/Reply composition window:

"Automatically embed media (requires automatic parsing of links in text to be on)."

It's there on the default VB skin, but not on my custom one, and I have to believe that's why the embedding's not working on the first post.

So... how can I add this checkbox option/line to my custom skin?

Relevant section from default "newthread" template:
Code:

                                <if condition="$show['misc_options']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[miscellaneous_options]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                                <if condition="$bbuserinfo['signature'] != ''"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if>
                                                <if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if>
                                                $disablesmiliesoption
                                        </div>
                                </fieldset>
                                </if>


vs.


Relevant part from "newthread" template in my custom skin:
Code:

                                                                <if condition="$show['misc_options']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[miscellaneous_options]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                        <table cellpadding="2" cellspacing="0" border="0">
                                                <if condition="$bbuserinfo['signature'] != ''">
                                                        <tr>
                                                                <td></td>
                                                                <td><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] /> $vbphrase[show_your_signature]</label></td>
                                                        </tr>
                                                </if>
                                                <if condition="$show['parseurl']">
                                                        <tr>
                                                                <td></td>
                                                                <td><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] /> $vbphrase[automatically_parse_links_in_text]</label></td>
                                                        </tr>
                                                </if>
                                                $disablesmiliesoption
                                        </table>
                                        </div>
                                </fieldset>
                                </if>

They seem similar... so why isn't my custom skin getting that option to display?

hotwheels 12-10-2007 08:32 PM

Not sure on that stuff there yet tralala......Looks like i will be working a 16hr day today, so probably won't be able to look at the xmls or anything till tomorrow night, maybe....

Tralala 12-10-2007 09:15 PM

Quote:

Originally Posted by hotwheels (Post 1398779)
Not sure on that stuff there yet tralala......Looks like i will be working a 16hr day today, so probably won't be able to look at the xmls or anything till tomorrow night, maybe....

No worries, I'll hang tight. In the meantime, Im struggling to figger out my bigger issue, one post above, about AME not working 100% with my custom skin. That's a dealbreaker if I can't get it going anyway... :(

Subah 12-11-2007 08:26 AM

Tralala there is some thing worng with this hack i try to ask The Geek to fix it and he is ignor me i hope you can do it , there is some video in youtube there title is in arabic langugae and when i use this hack they are work but the title appear as a rappesh ?
How can i let the arabic langugae appear ?


All times are GMT. The time now is 09:06 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02500 seconds
  • Memory Usage 1,774KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete