Video gallery in Business Catalyst

Hello everyone. I really like how this video gallery looks on this site. What should I study or look for in order to implement something like this that would work for vimeo or youtube videos? I appreciate the help.
http://crooksncastles.com/videos/

Your best bet might be to use an HTML5 player framework that lets you use vimeo and youtube videos like http://popcornjs.org/
Using popcornjs you might be able to take a lot of the headache out of building all this stuff manually since it's HTML5 ready and works with youtube videos and vimeo videos.
Getting the thumbnails on the fly might be harder than it's worth if you don't have a lot of videos or need a client to simply add a video web app item by URL or ID of the video.  Youtube thumbnails are easier to get as it's just a URL you can plugin to your code but for Vimeo you have to go out to the Vimeo API via javascript and parse the JSON it returns to get the video URL to use in your "img" preview.
Check out this URL: http://vimeo.com/api/oembed.json?url=http%3A//vimeo.com/7100569
If you're comfortable with javacript and parsing JSON to get at data you can build this with a little effort.  It's too much to give you an example but it can be done with javascript and the popcornjs player pretty easily. Check out the popcornjs docs-- popcorn also makes it easy to sync events with a video. For instance, you could show some accompanying text like a closed caption based at different times during the video, 2 seconds in, 30 seconds in, whatever.

Similar Messages

  • Help with code for inserting horizontal scroll bar in photo gallery in Business Catalyst site?

    Hi,
    I am using Business Catalyst and Dreamweaver to create a trial site.
    I am not sure if this is the correct forum to post this request but anyway I have inserted a photo gallery module at the bottom of the sidebar in the homepage of my test site.
    Can anyone advise on whether jquery or any other code can be inserted into the page or module code that will replace the "next" hyperlink below the first 4 photos with a horizontal scroll bar at bottom of the gallery so users can just scroll through all 12 images ?
    Kind Regards, Matt.
    http://craftime-bs6.businesscatalyst.com/

    Alyssa,
    Have you tried putting this rule back as it was originally:
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto; /*was 9px*/
        color: #EF9CCF;
        background-color: #FFF;
    That is, changing your 9px back to auto.
    And giving  us a link (as you did) is much better than printing out the code for us! Thanks!
    Beth

  • Lightroom not uploading web gallery to Business Catalyst

    I generated a photo gallery in Lightroom to use on my Business Catalyst hosted site, but when I go to upload the gallery I get an "unknown error has occurred". After searching this on Google, it appears that this is a rather common problem that has been going on for some time. Any idea why it happens? And more importantly, is there a way to fix it?
    Thanks!

    Blank page or one from the “home template”  files put fine. 
    But when I use the “default template” nothing happens.
    says it is putting and that transfer is complete… but nothing is there… see this page:
    http://htlv.businesscatalyst.com/abouthtl.html
    log says:
    Started: 5/5/2013 3:09 PM
    Connected to HTL.
    Path was: /_mm
    Path was: /_mm
    Templates\Default.dwt - Put operation successful
    File activity complete.
    Files updated: 1
    Finished: 5/5/2013 3:09 PM
    But nothing is actually put.

  • Host video file on business catalyst server

    Does BC allow me to host a short video on the BC server to avoid having to go to an external streaming service (and speed up display time)?

    Thanks Liam. I got some further input from Adobe, posted here in case anyone else has the same question:
    You can upload a video on BC site, the file limit is 250 MB, So you can upload the video on BC. Once you have uploaded it to BC, you will get a url of the video like, http://mysite.com/video.mp4
    Now go to Muse, use HTML Video tag, http://www.w3schools.com/tags/tag_video.asp
    in the video tag code where it says <source src="movie.mp4" type="video/mp4">, replace the source by http://mysite.com/video.mp4 (URL of the video)
    The fastest way will be connect to your site using FTP, and upload the file. to see hw to connect to your bc site, take a look to this article
    http://helpx.adobe.com/business-catalyst/partner/connecting-site-using-ftp-client.html
    You can chose to upload the file in any folder or in root folder. (Optional)
    You can also, upload the file using BC File manager, in Admin panel-> Site manager-> File manager.
    You can also put the file in image folder for upload. This will include an additional step. Unless your file is on server, you will not be able to define source in video tag, so You will need to publish site twice, once to upload the file and second after defining the source of the file.

  • Export preset to Business Catalyst Photo Gallery Module

    Does anyone know of a Export Preset to Business Catalyst Photo Gallery Module. Similar to the ones available for exporting to Smugmug or Zenfolio?

    If you're a little familiar with Business Catalyst, you might find this widget helpful.
    It's a BC Photo Gallery - Muse Widget, Its very easy to use and customize.
    There is a training video on how to set it up.
    However Brad is right, you'll need to upgrade to BC webMarketing Plan.

  • Can I add a business catalysts Photo Gallery module to Muse.

    Can I add a business catalysts Photo Gallery module to Muse - As my client want to upload images themselves to the gallery.
    I know that with the Muse plugin this is not possible. Therefore wanted to see if the photo gallery module in BC would work the same as the Blog Module?
    Thanks

    If you're a little familiar with Business Catalyst, you might find this widget helpful.
    It's a BC Photo Gallery - Muse Widget, Its very easy to use and customize.
    There is a training video on how to set it up.
    However Brad is right, you'll need to upgrade to BC webMarketing Plan.

  • Photo Gallery thumbnails in business catalyst render in different sizes in different browsers

    Photo Gallery thumbnails in business catalyst render in different sizes in safari and chrome but are fine in firefox. What is the issue with Safari? I have tried the different algorithm options such as fill_proportional etc and firefox is the only browser that displays correctly. I thought safari was the most standards compatible browser - what's the problem here?

    Hi,
    If you have seperate XML file but with the same basic structure then you can change the XML a Spry dataset refers to and regenerate the spry region without reloading the full page.
    So on my photo gallery page I can change the album the photos are shown from via the seturl sprydata function as below.  dsPhotos being my Spry dataset that points to the relevant XML dataset with my image references and captions etc.  My XML is actually dynamically generated from Picasa RSS feeds (and RSS feeds are XML) but the principle will be the same with your static XML.
    First I add an event listener for when someone clicks on an album (the li tag within my div with the id "albums" holds a photo and title for each album.)
    function Albums()
    var myalbums = Spry.$$("#albums li", "TabbedPanels1")
    var rows = dsAlbums.getData();
    var setListener = function( element, value )
      Spry.Utils.addEventListener( element, "click", function(){ showAlbum( value ); },false );
    for( var i = 0, length = myalbums.length; i < length; i++ )
      setListener( myalbums[i], i );
    Then this is the code which changes the photo album to be shown. (when the user clicks the relevant album)
    function showAlbum(i)
    pauseShow();
    pImage = 'No';
    var rows = dsAlbums.getData();
    var albumid = rows[i]["albumid"];
    var url = "xml/PicasaAphotoFeed.asp?albumid=" + albumid;
    dsPhotos.setURL(url);
    dsPhotos.loadData();
    var rowcount = dsAlbums.getRowCount() - 1;
    var nextalbum;
    var navnext;
    var n;
    The page is here www.thehmc.co.uk/photo5.html is you want to see it in context.
    In your case showAlbum would switch between Frank.xml or Wolfie.xml depending on how you decide to name your xml datasets.
    Regards
    Phil

  • Creating a photo gallery / portfolio for a client to manage (CMS & Business Catalyst)

    I have been asked to create a website for a client, the client is a photographer and wants a site to promote her nursery school photography business. She would like to be able to manage the site herself using the BC dashboard, uploading images as and when needed. I use Muse to create sites and have informed the client that for any kind of CMS they need to host with Business Catalyst.
    My issue is creating a relatively limitless photo gallery / portfolio. As I understand it a client can upload and change images on their site using the BC dashboard, providing there is a slot available to do so. I believe Business Catalyst has a photo gallery module on their Webmarketing package, would this be what I am looking for? Failing that are there any good workarounds available for my client using Muse alone?
    In the future the client is looking for secure zones within the site and also an online ordering system, but right now it's a fairly simple promotional site with a good gallery of pics.
    I posted a similar question last week, someone very kindly suggested Smugmug, I looked into a separate solution (including Smugmug) but it's not suitable in this case and I would rather stick to Muse, BC and Adobe.

    Hi
    Yes, you can use Photo Gallery module, where your client would be able to upload new images from site backend and update the module. Also with photo gallery there are other parameters which they can use for image display.
    https://www.youtube.com/watch?v=x-MuLyhxS5o
    https://www.youtube.com/watch?v=Hg8pB1cLvnk
    For future preferences , your client can setup secure zones, online shop etc from site admin.
    Let me know if you have any questions.
    Thanks,
    Sanjit

  • Introducing: Adobe Business Catalyst (BC) Site Integration Video Tutorial Series

    Hi
    I've been developing in BC now for many years now, and I’ve integrated more than 300 websites. I have always felt there was a need for a resource to learn how to do site integration from start to finish for developers – so I created my own lesson series.  This video series will give someone a solid foundation and understanding of integrating a website into Adobe Business Catalyst and offers a peek into my workflow.
    The total series is 3.5 hours and it is broken into multiple videos by step, so you can complete the tutorial at your own pace, and re-visit a specific step as needed.  The series will cover the entire process of creating a cool Responsive Twitter Bootstrap template integration into Adobe Business Catalyst.  I start with nothing and end up with a fully integrated website while documenting the entire process. A lot of common snags and issues will be covered during the process and we will work through them together.
    You will be able to log in and stream any of the video lessons whenever you want, on any device. You can even download all of the videos and watch offline!
    These videos cover many of the steps you will take to integrate a template – here are some examples of the things I cover while integrating the website:
    1. Template Creation
    2. Dynamic Menus
    3. Home page rotator Web App
    4. Testimonials Web App
    5. Featured Blog Post Web App
    6. Custom Web Forms
    7. Newsletter Subscription Form
    8. Social Navigations with Icon Fonts
    9. Custom jQuery functions
    10. Our Team Web App
    11. FAQ Web App
    12. Custom Blog Integration
    13. Portfolio Web App
    14. Contact Form
    15. Responsive Web Design / Media Queries
    16. Bugs / Troubleshooting
    17. Basic jQuery +and more!
    All of this for only $9.95 | Check it out here: http://bit.ly/ZLlHlr

    Hi Joe, does your dynamic menus demo cover 2 level hover navigation with the bootstrap menu? Something I am struggling with integrating ... Thanks

  • HTML5 Video Upload from Muse To Business Catalyst.

    Hi all excuse my complete and utter ignorance of all things techniacal, I am new and I am in the process of learning.  As the title suggests I am trying to upload a video that I want to include in the design of my site to Business Cataylst via the publish feature in Adobe Muse.  I am running into difficulty however with this warning message  ".mp4 is bigger than 100MB and is too big to be uploaded."  Is there any way around this besides making my video smaller?  Any help would be greatly appreciated.  Thanks. 

    If you're hosting on Adobe Business Catalyst, In-Browser Editing has been available for roughly a year. To use it login to your site by going to your site URL plus "/admin" then click "Edit" in the top menu of the Admin Dashboard.
    The new feature is that In-Browser Editing is now also enabled for those who choose to host with hosting providers other an Adobe.
    To host on Adobe Business Catalyst you using Publish.
    To host on other hosting providers you use File > Upload to FTP Host.

  • Linking videos to Business Catalyst pages

    Can anyone tell me how to link videos to Business Catalyst web pages?  Thanks for any help.

    If you are talking about YouTube or Vimeo just insert the embed code to your HTML or if creating a web app add a text field to place the embed code in. Works a treat

  • Is there a Business Catalyst  video tutorial

    I am looking for a business catalyst tutorial website set up.  I am having difficulties updating the site. 

    You can also check the documentation link below:
    Videos
    Regards,
    Gaurav Aggarwal

  • Unable to login to Business Catalyst

    I have followed Terry White's instructions on using MUSE to create a sample web page and upload that to the Creative Cloud business catalyst website.  (https://helpx.adobe.com/creative-cloud/tutorials/video/publish-lightroom-web-galleries-cre ative.html) That all worked, but I am unable to upload a lightroom gallery using his instructions.
    I get FTP Transfer Failed with message 'an unknown error occurred'.
    I can manually upload the files using FileZilla client so I know I can SFTP to the site with my credentials as well as login to the manager console and perform updates through MUSE.
    I AM using the format of jenglephoto.businesscatalyst.com for server & jenglephoto.businesscatalyst.com/[email protected] and my Adobe/Business catalyst password, SFTP & port 22 (same settings as FileZilla).
    Thanks for any assistance.  Anyone have this working through Lightroom 5 (64-bit Windows 7)?
    JenglePHOTO

    I am having the exact same problem after watching the exact same video from Terry White. AND I can also SFTP using Filezilla. I haven't tried to perform updates through MUSE, but the point is Lightroom doesn't work as propoted.
    I am currently waiting for a "live chat" to start, been waiting an hour or so..... If I find an answer, I'll post it.
    Apparently no one from Adobe watches these forums.

  • How can I make a "Youtube" style video gallery for offline, '.air' use?

    I work for a language company and we've put together a set of videos for use in computers, not online.  Currently we're using Apple's Keynote to present our videos to to the student.  This has the advantage of allowing us to put videos in a sequential order, with absolutely no work in the development department, and most importantly was easy for any student to control and navigate.
    Things have now changed.
    Keynote can no longer hold the size of our videos and we are constantly adding and changing videos all the time.  Now that CS5 is out, I would like to build a stand alone flash application for our system modeled after the same look and functionality of youtube. 
    Key features would be:
    • Main video player that links to our resident video files
    • Something that generates and displays a title for the current video
    • A text box below the main video player for notes and instructions
    • a side bar of thumbnails for all related videos, with titles displayed
    Future features would be an easy way for us to change videos in and out of the library (by "uploading" and "downloading" using a form for the videos, although not to the net, but again, on the resident computer).
    It looks like CS5 would make this possible.  My plan is to make a youtube-like site using flash catalyst.  I think I can do it myself since the first version only needs basic elements and design, but I know I'm going to run into some problems because I'm not sure the limitations of catalyst for this style of interactive video gallery. 
    What I'm looking for is someone to just quickly guide, tell, or yell me in the right direction, and I'm really keen (hell-bent?) on trying it out using Flash Catalyst... is this the way?
    Keeping in mind that my first draft only has to be a simple working version of the system, and I can play with the rest later, is any of what I said possible using flash catalyst?
    Thanks in advance to whoever can help me out!

    I doubt MU can do this.  It's pretty limited in scope &  I don't think it supports server-side code which you would need to parse feeds.  But feel free to post your question in the MU forum.  Maybe somebody there has a workaround.
    http://forums.adobe.com/community/muse/help_with_using_adobe_muse
    Nancy O.

  • Business catalyst websites

    I have dreamweaver  cs6 for some time now, and i remeber that i read or saw  in some video that i have got one BC site scince i bought dreamweaver.
    How does this work, do i get a free bc website for me? does it need my dreamweaver license serial  number?do i still have to pay and choose the 3 available webbasic,webmarketing or webcommerce plan or is it for free scince i bought dreamweaver cs6?is this only for creative cloud members?

    Hi Marco,
    This offer to get a free Business Catalyst site only applies if you subscribe to one of the Adobe offerints.
    You get 1 site for free when you have a Dreamweaver single product subscription
    You get 5 sites for free as a Creative Cloud subscriber
    They are on the Adobe Web Hosting plan (the simplest)
    Hope this helps,
    Alexandru

Maybe you are looking for