Project copied from one mac to another fails to play clips #76
-
Hi, Source mac was a recent Macbook Pro - destination is an iMac |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @motioncircus , The file path reference to the proxies in the transcription data, has got a reference to the home folder in it's path, so when you change computer unless that's changed as well, it wouldn't be able to find it, if that makes sense? ok, let's break this down. As you know there's a folder in the user systems. on a Mac it's +/Users/${home_folder}/Library/Application\ Support/digital-paper-edit-electron This is what you'd copy from one mac to another to move your whole projects across. This contains, the proxies inside the And there's a
Out of these once Here's an example [
{
"projectId": "366724cd3aab487b9e3b4ed3be2b3284",
"title": "Transcription Name",
"description": "",
+ "path": "/Users/${home_folder}/Movies/Transcription Name-g3Af2ntyQyU.mp4",
+ "url": "/Users/${home_folder}/Library/Application Support/digital-paper-edit-electron/media/Transcription Name-g3Af2ntyQyU.c797b714ce5d4283b7f778c3ce79e56a.mp4",
"status": "done",
"_id": "c797b714ce5d4283b7f778c3ce79e56a",
"id": "c797b714ce5d4283b7f778c3ce79e56a",
"metadata": {
+ "filePathName": "/Users/${home_folder}/Movies/Transcription Name-g3Af2ntyQyU.mp4",
"fileName": "Transcription Name-g3Af2ntyQyU.mp4",
"date": "2020-04-29 20:07:42",
"reelName": "NA",
"timecode": "NA",
"r_frame_rate": "30000/1001",
"fps": 29.97,
"duration": 2894.0912,
"sampleRate": 44100
},
+ "videoUrl": "/Users/${home_folder}/Library/Application Support/digital-paper-edit-electron/media/Transcription Name-g3Af2ntyQyU.c797b714ce5d4283b7f778c3ce79e56a.mp4",
"transcript": {
"words": [
{
"id": 0,
"text": "Good",
"start": 4.1,
"end": 5.1
},
...
],
"paragraphs": [
{
"start": 4.1,
"end": 7.22,
"speaker": "U_UKN"
},
...
],
},
"clipName": "Transcription Name-g3Af2ntyQyU.mp4",
"sttEngine": "AssemblyAI",
+ "audioUrl": "/Users/${home_folder}/Library/Application Support/digital-paper-edit-electron/media/Transcription Name-g3Af2ntyQyU.c797b714ce5d4283b7f778c3ce79e56a.wav"
},
...
] As you can see above I've highlighted in green the relevant part, and replace my home directory name with A possible solution is to
See if this work As a note, to handle |
Beta Was this translation helpful? Give feedback.
Hi @motioncircus ,
Yes, I think I know what's happening.
The file path reference to the proxies in the transcription data, has got a reference to the home folder in it's path, so when you change computer unless that's changed as well, it wouldn't be able to find it, if that makes sense?
ok, let's break this down.
As you know there's a folder in the user systems. on a Mac it's
+/Users/${home_folder}/Library/Application\ Support/digital-paper-edit-electron
This is what you'd copy from one mac to another to move your whole projects across.
This contains, the proxies inside the
/media
folder, with the previews.And there's a
/db
folder that contains the transcription data.