Install TimeSide
-----------------
-Telemeta needs the audio processing library named TimeSide.
+Telemeta needs the audio processing library named TimeSide (>= 0.3)
You have to download and install it from source.
So, download the last archive at :
Install JSON-RPC server
------------------------
-In order to use markers on the player, you will need a JSONN-RPC server for django::
+In order to use markers on the player, you will need a JSON-RPC server for django::
git clone git://github.com/samuraisam/django-json-rpc.git
cd django-json-rpc
+++ /dev/null
-==================================
-Telemeta 1.0 - Refactoring Warning
-==================================
-
-In the perspective of Telemeta 1.0, most parts of the code are currently
-being refactored.
-
-In this context, you should expect the SVN trunk to be **very unstable**.
-
-You may not be able to use it at all until we're done actually... So please
-be patient.
-
-This warning will be removed once things get better, and that we get closer
-to the beta stage.
-
keys_done = []
for data in dc_metadata:
key = data[0]
- value = data[1]
+ value = data[1].encode('utf-8')
if value:
if key == 'date':
value = value.split(';')[0].split('=')
else:
value = value[0].split('-')[0]
if key in mapp:
- metadata[mapp[key]] = str(value)
+ print value
+ metadata[mapp[key]] = value.decode('utf-8')
elif 'all' in mapp.keys():
- metadata[key] = str(value)
+ metadata[key] = value.decode('utf-8')
keys_done.append(key)
return metadata