{"id":973,"date":"2010-10-05T19:22:32","date_gmt":"2010-10-05T17:22:32","guid":{"rendered":"http:\/\/linux.leunen.com\/?p=973"},"modified":"2010-10-05T19:22:32","modified_gmt":"2010-10-05T17:22:32","slug":"modifier-le-path-des-photos-dans-shotwell","status":"publish","type":"post","link":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/","title":{"rendered":"Modifier le path des photos dans Shotwell"},"content":{"rendered":"<p>Dans quelques jours sortira la version officielle d&rsquo;Ubuntu 10.10. Dans cette nouvelle version, <em>Shotwell<\/em> remplacera <em>F-Spot<\/em> pour la gestion des photos.<br \/>\nJe ne sais pas ce qu&rsquo;il en sera de la version qui sera propos\u00e9e dans <em>Maverick<\/em> mais jusqu&rsquo;\u00e0 pr\u00e9sent, il n&rsquo;est pas possible de changer le chemin des photos une fois que celles-ci ont \u00e9t\u00e9 import\u00e9es dans <em>Shotwell<\/em>. Cela veut dire que si vous changez vos photos de place, que vous les placez dans un autre r\u00e9pertoire, il n&rsquo;est pas possible de l&rsquo;indiquer \u00e0 <em>Shotwell<\/em>. Vous continuerez \u00e0 voir les miniatures s&rsquo;afficher dans <em>Shotwell<\/em> mais impossible d&rsquo;afficher la photo \u00e0 sa taille r\u00e9elle parce que, forc\u00e9ment, <em>Shotwell<\/em> ne connait pas le nouveau chemin.<\/p>\n<p>Je me suis trouv\u00e9 devant ce probl\u00e8me et la seule solution que j&rsquo;ai trouv\u00e9e est de modifier le chemin des photos directement dans la base de donn\u00e9es utilis\u00e9e par <em>Shotwell<\/em>.<br \/>\nIl faut savoir que <em>Shotwell<\/em> stoque les informations sur les photos dans une base de donn\u00e9es <em>sqlite<\/em> qui se trouve dans le r\u00e9pertoire <em>~\/.shotwell\/data\/photo.db<\/em>.<br \/>\nSi vous jeter un oeil au contenu de cette base de donn\u00e9es <em>sqlite<\/em>, vous verrez qu&rsquo;une des tables s&rsquo;appelle <em>PhotoTable<\/em>. Celle-ci contient un num\u00e9ro d&rsquo;index unique pour chaque photo, le chemin complet et le nom de fichier de la photo. <\/p>\n<p>Il suffit donc simplement d&rsquo;\u00e9crire un petit script simple pour modifier dans la base de donn\u00e9es le chemin des photos. La base de donn\u00e9es \u00e9tant une base de donn\u00e9es <em>sqlite<\/em>, j&rsquo;ai choisi d&rsquo;\u00e9crire le programme en python puisque celui-ci supporte nativement <em>sqlite<\/em>. De plus, comme son nom l&rsquo;indique, <em>sqlite<\/em> permet de dialoguer avec la base de donn\u00e9es au moyen de commandes <em>SQL<\/em>, ce qui simplifie les choses.<\/p>\n<p>Voici le script que j&rsquo;ai utilis\u00e9:<\/p>\n<pre class=\"codesource\">\r\n<span class=\"codecomment\">#!&nbsp;\/usr\/bin\/env&nbsp;python\r\n<\/span><span class=\"codecomment\">#&nbsp;-*-&nbsp;coding:&nbsp;utf-8&nbsp;-*-\r\n<\/span>\r\n<span class=\"reservedname\">import<\/span>&nbsp;sqlite3\r\n&nbsp;&nbsp;&nbsp;&nbsp;\r\n&nbsp;<span class=\"codecomment\">#&nbsp;!!!&nbsp;Donnez&nbsp;\u00e0&nbsp;oldpath&nbsp;et&nbsp;newpath&nbsp;les&nbsp;bonnes&nbsp;valeurs&nbsp;!!!\r\n<\/span>oldpath&nbsp;=&nbsp;\/ancien\/path\/des\/photos\r\nnewpath&nbsp;=&nbsp;\/nouveau\/path\r\n\r\nconn&nbsp;=&nbsp;sqlite3.connect(<span class=\"quotedstring\">'~\/.shotwell\/data\/photo.db'<\/span>)\r\n\r\n<span class=\"codecomment\">#&nbsp;Permet&nbsp;d'acc\u00e9der&nbsp;aux&nbsp;colonnes&nbsp;en&nbsp;utilisant&nbsp;leur&nbsp;nom\r\n<\/span>conn.row_factory&nbsp;=&nbsp;sqlite3.Row\r\nc&nbsp;=&nbsp;conn.cursor()\r\n\r\n<span class=\"codecomment\">#&nbsp;On&nbsp;utilise&nbsp;l'index&nbsp;le&nbsp;plus&nbsp;\u00e9lev\u00e9&nbsp;comme&nbsp;limite&nbsp;de&nbsp;la&nbsp;boucle\r\n<\/span>last_rowid&nbsp;=&nbsp;c.execute(<span class=\"quotedstring\">\"\"<\/span><span class=\"quotedstring\">\"SELECT&nbsp;MAX(id)&nbsp;FROM&nbsp;PhotoTable\"<\/span><span class=\"quotedstring\">\"\"<\/span>).fetchone()[0]\r\n\r\n<span class=\"reservedname\">for<\/span>&nbsp;row&nbsp;<span class=\"reservedname\">in<\/span>&nbsp;xrange(1,&nbsp;last_rowid+1):\r\n&nbsp;&nbsp;&nbsp;&nbsp;line&nbsp;=&nbsp;c.execute(<span class=\"quotedstring\">\"\"<\/span><span class=\"quotedstring\">\"SELECT&nbsp;*&nbsp;FROM&nbsp;PhotoTable&nbsp;where&nbsp;id=?\"<\/span><span class=\"quotedstring\">\"\"<\/span>,&nbsp;(row,)).fetchone()\r\n&nbsp;&nbsp;<span class=\"codecomment\">#&nbsp;Certaines&nbsp;lignes&nbsp;ont&nbsp;pu&nbsp;\u00eatre&nbsp;supprim\u00e9es&nbsp;et&nbsp;donc&nbsp;certains&nbsp;index&nbsp;ne&nbsp;pas&nbsp;exister\r\n<\/span>&nbsp;&nbsp;&nbsp;&nbsp;<span class=\"reservedname\">if<\/span>&nbsp;line:\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;newline&nbsp;=&nbsp;line[<span class=\"quotedstring\">'filename'<\/span>].replace(<span class=\"quotedstring\">'oldpath'<\/span>,&nbsp;<span class=\"quotedstring\">'newpath'<\/span>)\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rowid&nbsp;=&nbsp;line[<span class=\"quotedstring\">'id'<\/span>]\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;c.execute(<span class=\"quotedstring\">\"\"<\/span><span class=\"quotedstring\">\"UPDATE&nbsp;PhotoTable&nbsp;SET&nbsp;filename=?&nbsp;where&nbsp;id=?\"<\/span><span class=\"quotedstring\">\"\"<\/span>,&nbsp;(newline,&nbsp;rowid))\r\n\r\nconn.commit()\r\n\r\nc.close()\r\n<\/pre>\n<p>Si vous utilisez ce script, n&rsquo;oubliez pas de modifier dans celui-ci les variables <em>oldpath<\/em> et <em>newpath<\/em> en y mettant l&rsquo;ancien chemin et le nouveau.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dans quelques jours sortira la version officielle d&rsquo;Ubuntu 10.10. Dans cette nouvelle version, Shotwell remplacera F-Spot pour la gestion des photos. Je ne sais pas ce qu&rsquo;il en sera de la version qui sera propos\u00e9e dans Maverick mais jusqu&rsquo;\u00e0 pr\u00e9sent, il n&rsquo;est pas possible de changer le chemin des photos une fois que celles-ci ont [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[15,5],"tags":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Comment modifier le chemin des photos dans Shotwell\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Michel Leunen\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Autour de Linux | Ubuntu, linux, C++, audio, python, ...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Modifier le path des photos dans Shotwell | Autour de Linux\" \/>\n\t\t<meta property=\"og:description\" content=\"Comment modifier le chemin des photos dans Shotwell\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-10-05T17:22:32+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2010-10-05T17:22:32+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Modifier le path des photos dans Shotwell | Autour de Linux\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Comment modifier le chemin des photos dans Shotwell\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#article\",\"name\":\"Modifier le path des photos dans Shotwell | Autour de Linux\",\"headline\":\"Modifier le path des photos dans Shotwell\",\"author\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/author\\\/michel-leunen\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/#organization\"},\"datePublished\":\"2010-10-05T19:22:32+02:00\",\"dateModified\":\"2010-10-05T19:22:32+02:00\",\"inLanguage\":\"fr-FR\",\"commentCount\":12,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#webpage\"},\"articleSection\":\"python, Ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leunen.com\\\/linux\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/category\\\/ubuntu\\\/#listItem\",\"name\":\"Ubuntu\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/category\\\/ubuntu\\\/#listItem\",\"position\":2,\"name\":\"Ubuntu\",\"item\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/category\\\/ubuntu\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#listItem\",\"name\":\"Modifier le path des photos dans Shotwell\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#listItem\",\"position\":3,\"name\":\"Modifier le path des photos dans Shotwell\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/category\\\/ubuntu\\\/#listItem\",\"name\":\"Ubuntu\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/#organization\",\"name\":\"Autour de Linux\",\"description\":\"Ubuntu, linux, C++, audio, python, ...\",\"url\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/author\\\/michel-leunen\\\/#author\",\"url\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/author\\\/michel-leunen\\\/\",\"name\":\"Michel Leunen\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/41e08d5087493eaa9ce4ebd4e0a55ffb?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Michel Leunen\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#webpage\",\"url\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/\",\"name\":\"Modifier le path des photos dans Shotwell | Autour de Linux\",\"description\":\"Comment modifier le chemin des photos dans Shotwell\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/2010\\\/10\\\/modifier-le-path-des-photos-dans-shotwell\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/author\\\/michel-leunen\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/author\\\/michel-leunen\\\/#author\"},\"datePublished\":\"2010-10-05T19:22:32+02:00\",\"dateModified\":\"2010-10-05T19:22:32+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/#website\",\"url\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/\",\"name\":\"Autour de Linux\",\"description\":\"Ubuntu, linux, C++, audio, python, ...\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.leunen.com\\\/linux\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Modifier le path des photos dans Shotwell | Autour de Linux","description":"Comment modifier le chemin des photos dans Shotwell","canonical_url":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#article","name":"Modifier le path des photos dans Shotwell | Autour de Linux","headline":"Modifier le path des photos dans Shotwell","author":{"@id":"https:\/\/www.leunen.com\/linux\/author\/michel-leunen\/#author"},"publisher":{"@id":"https:\/\/www.leunen.com\/linux\/#organization"},"datePublished":"2010-10-05T19:22:32+02:00","dateModified":"2010-10-05T19:22:32+02:00","inLanguage":"fr-FR","commentCount":12,"mainEntityOfPage":{"@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#webpage"},"isPartOf":{"@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#webpage"},"articleSection":"python, Ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux#listItem","position":1,"name":"Home","item":"https:\/\/www.leunen.com\/linux","nextItem":{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/#listItem","name":"Ubuntu"}},{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/#listItem","position":2,"name":"Ubuntu","item":"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#listItem","name":"Modifier le path des photos dans Shotwell"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#listItem","position":3,"name":"Modifier le path des photos dans Shotwell","previousItem":{"@type":"ListItem","@id":"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/#listItem","name":"Ubuntu"}}]},{"@type":"Organization","@id":"https:\/\/www.leunen.com\/linux\/#organization","name":"Autour de Linux","description":"Ubuntu, linux, C++, audio, python, ...","url":"https:\/\/www.leunen.com\/linux\/"},{"@type":"Person","@id":"https:\/\/www.leunen.com\/linux\/author\/michel-leunen\/#author","url":"https:\/\/www.leunen.com\/linux\/author\/michel-leunen\/","name":"Michel Leunen","image":{"@type":"ImageObject","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/41e08d5087493eaa9ce4ebd4e0a55ffb?s=96&d=mm&r=g","width":96,"height":96,"caption":"Michel Leunen"}},{"@type":"WebPage","@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#webpage","url":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/","name":"Modifier le path des photos dans Shotwell | Autour de Linux","description":"Comment modifier le chemin des photos dans Shotwell","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/www.leunen.com\/linux\/#website"},"breadcrumb":{"@id":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/#breadcrumblist"},"author":{"@id":"https:\/\/www.leunen.com\/linux\/author\/michel-leunen\/#author"},"creator":{"@id":"https:\/\/www.leunen.com\/linux\/author\/michel-leunen\/#author"},"datePublished":"2010-10-05T19:22:32+02:00","dateModified":"2010-10-05T19:22:32+02:00"},{"@type":"WebSite","@id":"https:\/\/www.leunen.com\/linux\/#website","url":"https:\/\/www.leunen.com\/linux\/","name":"Autour de Linux","description":"Ubuntu, linux, C++, audio, python, ...","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/www.leunen.com\/linux\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Autour de Linux | Ubuntu, linux, C++, audio, python, ...","og:type":"article","og:title":"Modifier le path des photos dans Shotwell | Autour de Linux","og:description":"Comment modifier le chemin des photos dans Shotwell","og:url":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/","article:published_time":"2010-10-05T17:22:32+00:00","article:modified_time":"2010-10-05T17:22:32+00:00","twitter:card":"summary","twitter:title":"Modifier le path des photos dans Shotwell | Autour de Linux","twitter:description":"Comment modifier le chemin des photos dans Shotwell"},"aioseo_meta_data":{"post_id":"973","title":"Modifier le path des photos dans Shotwell | #site_title","description":"Comment modifier le chemin des photos dans Shotwell","keywords":[{"label":"shotwell,sqlite,sql,update,select,execute,connect","value":"shotwell,sqlite,sql,update,select,execute,connect"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 07:19:17","updated":"2025-06-23 21:06:29","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.leunen.com\/linux\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/\" title=\"Ubuntu\">Ubuntu<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tModifier le path des photos dans Shotwell\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.leunen.com\/linux"},{"label":"Ubuntu","link":"https:\/\/www.leunen.com\/linux\/category\/ubuntu\/"},{"label":"Modifier le path des photos dans Shotwell","link":"https:\/\/www.leunen.com\/linux\/2010\/10\/modifier-le-path-des-photos-dans-shotwell\/"}],"_links":{"self":[{"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/posts\/973"}],"collection":[{"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/comments?post=973"}],"version-history":[{"count":2,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/posts\/973\/revisions"}],"predecessor-version":[{"id":975,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/posts\/973\/revisions\/975"}],"wp:attachment":[{"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/media?parent=973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/categories?post=973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leunen.com\/linux\/wp-json\/wp\/v2\/tags?post=973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}