GNOME Bugzilla – Bug 579410
formatter doesn't like unicode
Last modified: 2009-05-14 14:10:32 UTC
Saving a project doesn't save the paths properly, so I get something like this when opening it: Event bus error: Ressource introuvable. gstfilesrc.c(1046): gst_file_src_start (): /GstPipeline:pipeline3/pitivi+elements+singledecodebin+SingleDecodeBin:pitivi+elements+singledecodebin+singledecodebin7/GstFileSrc:urisrc: No such file "/home/jeff/Vidéos/montage/380 bellevue à vendre/1.mov" Now, I looked at the .xptv file, and it is saved like this: <source default_duration="53586866666" duration="53586866666" filename="file:///home/jeff/Vidéos/montage/380 bellevue à vendre/1.mov" id="0" type="pitivi.factories.file.FileSourceFactory"> If I edit that part and change it to something like this, then magically, everything works: <source default_duration="53586866666" duration="53586866666" filename="file:///home/jeff/Vidéos/montage/380 bellevue à vendre/1.mov" id="0" type="pitivi.factories.file.FileSourceFactory">
commit 80f03ba5c3a836a3298c37bd3ba7ffe561a2849a Author: Alessandro Decina <alessandro.d@gmail.com> Date: Mon Apr 27 19:10:13 2009 +0200 Write filenames as utf-8 in the project file. Fixes #579410.
Ignore the previous comment, this is the actual commit commit a864deab802295d53e45043eefe496ee2672d371 Author: Alessandro Decina <alessandro.d@gmail.com> Date: Mon Apr 27 19:17:56 2009 +0200 Write filenames as utf-8 in the project file. Fixes #579410.