vvvmax / unitegallery

Unite Gallery - Responsive jQuery Image and Video Gallery Plugin. Aim to be the best gallery on the web on it's kind. See demo here:
http://unitegallery.net
MIT License
530 stars 158 forks source link

helpful support scripts #99

Open john-walsh opened 8 years ago

john-walsh commented 8 years ago

please see:

https://sourceforge.net/projects/slidersupportscripts/ https://github.com/john-walsh/slidersupportscripts/

feel free to reference that project in your next update.

vvvmax commented 8 years ago

good luck with the script :)

On Sun, Aug 7, 2016 at 11:52 PM, John Walsh notifications@github.com wrote:

please see:

https://sourceforge.net/projects/slidersupportscripts/ https://github.com/john-walsh/slidersupportscripts/

feel free to reference that project in your next update.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/vvvmax/unitegallery/issues/99, or mute the thread https://github.com/notifications/unsubscribe-auth/AC_K_kNHfEdt-jgQr-ntod-JR7HPaGdbks5qdkV4gaJpZM4JelbV .

john-walsh commented 8 years ago

Thanks.

I'm using unitegallery here:

http://www.squashrocs.org/gallery

and attached is my script to get all the image/video links and build the html data for unitegallery - easy with my sss support !

John.

On 08/10/2016 04:15 PM, Max Valiano wrote:

good luck with the script :)

On Sun, Aug 7, 2016 at 11:52 PM, John Walsh notifications@github.com wrote:

please see:

https://sourceforge.net/projects/slidersupportscripts/ https://github.com/john-walsh/slidersupportscripts/

feel free to reference that project in your next update.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/vvvmax/unitegallery/issues/99, or mute the thread

https://github.com/notifications/unsubscribe-auth/AC_K_kNHfEdt-jgQr-ntod-JR7HPaGdbks5qdkV4gaJpZM4JelbV .

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/vvvmax/unitegallery/issues/99#issuecomment-238989823, or mute the thread https://github.com/notifications/unsubscribe-auth/APRH7ToDr2j2dBja0GvrZUmES6yRXgeZks5qejFOgaJpZM4JelbV.

!/usr/bin/env bash

out_dir=../unitegallery_ss/

=====================================================================

Pictures

=====================================================================

get the picasa albums

if (( 1 )); then ./get_picasa_albums.php cp a.out picasa_albumlist_list.php fi

get all the photos in each album

if (( 1 )); then sss_id=0

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_summer_camps_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_puc_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_general_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_buff_ind_12.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_proam_jr_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_last_fun_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_ywcp_14.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_match_gvc_may_14.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_match_gvc_oct_14.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_horizons_14.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_horizons_15.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_bbq_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_ward_16.php ((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_profile_pics.php

((sss_id++))

./get_picasa_photos.php ${sss_id} > ${out_dir}picasa_match_buf_feb_16.php ((sss_id++))

fi

=====================================================================

Videos

=====================================================================

get the youtube playlists

if (( 1 )); then ./get_youtube_playlists.php cp a.out youtube_playlist_list.php fi

get all the videos in each playlist

if (( 1 )); then sss_id=0

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_summer_camps_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_puc_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_proam_jr_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_buff_ind_12.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_general_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_ywcp_14.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_ward_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_hyder_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_match_buf_feb_16.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_match_gvc_oct_14.php ((sss_id++))

./get_youtube_videos.php ${sss_id} > ${out_dir}youtube_horizons_15.php ((sss_id++))

fi

=====================================================================

john-walsh commented 8 years ago

Of course google has now closed down the 'picasa' web interface. The URL's to existing images still work, but now there is no way to view the albums and get the URL's for any new albums/images. I'll be investigating google photos, getting URL's for unitegallery to use. Please let me know if you are doing anything in that area, also like being able to play videos from google photo.

vvvmax commented 8 years ago

ok, cool, thanks. good luck!

btw, I can't see your attachment because github don't attach files, but I'll get into the image hostings sometime, then I'll impliment it.

On Fri, Aug 12, 2016 at 3:15 AM, John Walsh notifications@github.com wrote:

Of course google has now closed down the 'picasa' web interface. The URL's to existing images still work, but now there is no way to view the albums and get the URL's for any new albums/images. I'll be investigating google photos, getting URL's for unitegallery to use. Please let me know if you are doing anything in that area, also like being able to play videos from google photo.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/vvvmax/unitegallery/issues/99#issuecomment-239330897, or mute the thread https://github.com/notifications/unsubscribe-auth/AC_K_lNpvECsF52D9kbUCB308yMNSnIkks5qe7sHgaJpZM4JelbV .