gc2gh / django-newsroom

Automatically exported from code.google.com/p/django-newsroom
Other
0 stars 0 forks source link

associate audio assets with photos/galleries. #30

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
this could be part of a slideshows app

class SlideShowGallery(Model):
    gallery = ForeignKey(Gallery)
    timing = CharField() 

class SlideShow(Model):
    gallery = ForeignKey(SlideShowGallery)
    audio = ForeignKey(Audio)

An example of timing might be just a string that has some syntax like 
0:20,0:45,0:50,1:10,...

Where each item in the list is based on the audio timeline and when the
photos should rotate.

Original issue reported on code.google.com by mand...@gmail.com on 8 Apr 2009 at 10:48

GoogleCodeExporter commented 8 years ago

Original comment by jgty...@gmail.com on 13 Apr 2009 at 11:22