dynamically adjust open-video-dialog layout depending on configuration
[ardour.git] / gtk2_ardour / add_video_dialog.cc
1 /*
2     Copyright (C) 2010-2013 Paul Davis
3     Author: Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #include <cstdio>
21 #include <cmath>
22
23 #include <sigc++/bind.h>
24 #include <curl/curl.h>
25
26 #include "pbd/error.h"
27 #include "pbd/convert.h"
28 #include "gtkmm2ext/utils.h"
29 #include "gtkmm2ext/rgb_macros.h"
30 #include "ardour/session_directory.h"
31 #include "ardour/profile.h"
32 #include "ardour/template_utils.h"
33 #include "ardour/session.h"
34 #include "ardour_ui.h"
35
36 #include "utils.h"
37 #include "add_video_dialog.h"
38 #include "utils_videotl.h"
39 #include "i18n.h"
40
41 using namespace Gtk;
42 using namespace std;
43 using namespace PBD;
44 using namespace ARDOUR;
45 using namespace VideoUtils;
46
47 #define PREVIEW_WIDTH (240)
48 #define PREVIEW_HEIGHT (180)
49
50 #ifndef MIN
51 #define MIN(a,b) ( (a) < (b) ? (a) : (b) )
52 #endif
53
54 AddVideoDialog::AddVideoDialog (Session* s)
55         : ArdourDialog (_("Set Video Track"))
56         , seek_slider (0,1000,1)
57         , preview_path ("")
58         , pi_tcin ("-", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false)
59         , pi_tcout ("-", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false)
60         , pi_aspect ("-", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false)
61         , pi_fps ("-", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false)
62         , chooser (FILE_CHOOSER_ACTION_OPEN)
63         , xjadeo_checkbox (_("Launch External Video Monitor"))
64         , set_session_fps_checkbox (_("Adjust Session Framerate to Match Video Framerate"))
65         , harvid_path ("")
66         , harvid_reset (_("Reload docroot"))
67         , harvid_list (ListStore::create(harvid_list_columns))
68         , harvid_list_view (harvid_list)
69         , show_advanced(false)
70         , loaded_docroot(false)
71 {
72         set_session (s);
73         set_name ("AddVideoDialog");
74         set_modal (true);
75         set_skip_taskbar_hint (true);
76         set_resizable (true);
77         set_size_request (800, -1);
78
79         harvid_initialized = false;
80         std::string dstdir = video_dest_dir(_session->session_directory().video_path(), video_get_docroot(Config));
81
82         /* Harvid Browser */
83         harvid_list_view.append_column("", pixBufRenderer);
84         harvid_list_view.append_column(_("Filename"), harvid_list_columns.filename);
85
86         harvid_list_view.get_column(0)->set_alignment(0.5);
87         harvid_list_view.get_column(0)->add_attribute(pixBufRenderer, "stock-id", harvid_list_columns.id);
88         harvid_list_view.get_column(1)->set_expand(true);
89         harvid_list_view.get_column(1)->set_sort_column(harvid_list_columns.filename);
90         harvid_list_view.set_enable_search(true);
91         harvid_list_view.set_search_column(1);
92
93         harvid_list_view.get_selection()->set_mode (SELECTION_SINGLE);
94
95         harvid_list_view.get_selection()->signal_changed().connect(sigc::mem_fun(*this, &AddVideoDialog::harvid_list_view_selected));
96         harvid_list_view.signal_row_activated().connect (sigc::mem_fun (*this, &AddVideoDialog::harvid_list_view_activated));
97
98         Gtk::ScrolledWindow *scroll = manage(new ScrolledWindow);
99         scroll->add(harvid_list_view);
100         scroll->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
101
102         HBox* hbox = manage (new HBox);
103         harvid_path.set_alignment (0, 0.5);
104         hbox->pack_start (harvid_path, true, true);
105         hbox->pack_start (harvid_reset, false, false);
106
107         server_index_box.pack_start (*hbox, false, false);
108         server_index_box.pack_start (*scroll, true, true);
109
110         /* file chooser */
111         chooser.set_border_width (4);
112 #ifdef GTKOSX
113         /* some broken redraw behaviour - this is a bandaid */
114         chooser.signal_selection_changed().connect (mem_fun (chooser, &Widget::queue_draw));
115 #endif
116         chooser.set_current_folder (dstdir);
117
118         Gtk::FileFilter video_filter;
119         Gtk::FileFilter matchall_filter;
120         video_filter.add_custom (FILE_FILTER_FILENAME, mem_fun(*this, &AddVideoDialog::on_video_filter));
121         video_filter.set_name (_("Video files"));
122
123         matchall_filter.add_pattern ("*.*");
124         matchall_filter.set_name (_("All files"));
125
126         chooser.add_filter (video_filter);
127         chooser.add_filter (matchall_filter);
128         chooser.set_select_multiple (false);
129
130         file_chooser_box.pack_start (chooser, true, true, 0);
131
132         /* Global Options*/
133         Gtk::Label* l;
134         VBox* options_box = manage (new VBox);
135
136         l = manage (new Label (_("<b>Options</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
137         l->set_use_markup ();
138
139         options_box->pack_start (*l, false, true, 4);
140         options_box->pack_start (xjadeo_checkbox, false, true, 2);
141         options_box->pack_start (set_session_fps_checkbox, false, true, 2);
142
143         /* preview pane */
144         VBox* previewpane = manage (new VBox);
145         Gtk::Table *table = manage(new Table(5,2));
146
147         table->set_row_spacings(2);
148         table->set_col_spacings(4);
149
150         l = manage (new Label (_("<b>Video Information</b>"), Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER, false));
151         l->set_use_markup ();
152         table->attach (*l, 0, 2, 0, 1, FILL, FILL);
153         l = manage (new Label (_("Start:"), Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER, false));
154         table->attach (*l, 0, 1, 1, 2, FILL, FILL);
155         table->attach (pi_tcin, 1, 2, 1, 2, FILL, FILL);
156         l = manage (new Label (_("End:"), Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER, false));
157         table->attach (*l, 0, 1, 2, 3, FILL, FILL);
158         table->attach (pi_tcout, 1, 2, 2, 3, FILL, FILL);
159         l = manage (new Label (_("Frame rate:"), Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER, false));
160         table->attach (*l, 0, 1, 3, 4, FILL, FILL);
161         table->attach (pi_fps, 1, 2, 3, 4, FILL, FILL);
162         l = manage (new Label (_("Aspect Ratio:"), Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER, false));
163         table->attach (*l, 0, 1, 4, 5, FILL, FILL);
164         table->attach (pi_aspect, 1, 2, 4, 5, FILL, FILL);
165
166         preview_image = manage(new Gtk::Image);
167
168         imgbuf = Gdk::Pixbuf::create(Gdk::COLORSPACE_RGB, true, 8, PREVIEW_WIDTH, PREVIEW_HEIGHT);
169         imgbuf->fill(RGBA_TO_UINT(127,0,0,255));
170         preview_image->set(imgbuf);
171         seek_slider.set_draw_value(false);
172
173         hbox = manage (new HBox);
174         hbox->pack_start (*table, true, false);
175
176         Gtk::Alignment *al = manage(new Gtk::Alignment());
177         al->set_size_request(-1, 20);
178
179         previewpane->pack_start (*preview_image, false, false);
180         previewpane->pack_start (seek_slider, false, false);
181         previewpane->pack_start (*al, false, false);
182         previewpane->pack_start (*hbox, true, true, 6);
183
184         /* Prepare Overall layout */
185
186         hbox = manage (new HBox);
187         hbox->pack_start (browser_container, true, true);
188         hbox->pack_start (*previewpane, false, false);
189
190         get_vbox()->set_spacing (4);
191         get_vbox()->pack_start (*hbox, true, true);
192         get_vbox()->pack_start (*options_box, false, false);
193
194         /* xjadeo checkbox */
195         if (ARDOUR_UI::instance()->video_timeline->found_xjadeo()
196                         /* TODO xjadeo setup w/ xjremote */
197                         && video_get_docroot(Config).size() > 0) {
198                 xjadeo_checkbox.set_active(true);  /* set in ardour_ui.cpp ?! */
199         } else {
200                 printf("xjadeo was not found or video-server docroot is unset (remote video-server)\n");
201                 xjadeo_checkbox.set_active(false);
202                 xjadeo_checkbox.set_sensitive(false);
203         }
204
205         /* FPS checkbox */
206         set_session_fps_checkbox.set_active(true);
207
208         /* Buttons */
209         add_button (Stock::CANCEL, RESPONSE_CANCEL);
210         ok_button = add_button (Stock::OK, RESPONSE_ACCEPT);
211         //ok_button->set_sensitive(false);
212         set_action_ok(false);
213
214         /* connect signals after eveything has been initialized */
215         chooser.signal_selection_changed().connect (mem_fun (*this, &AddVideoDialog::file_selection_changed));
216         chooser.signal_file_activated().connect (mem_fun (*this, &AddVideoDialog::file_activated));
217         //chooser.signal_update_preview().connect(sigc::mem_fun(*this, &AddVideoDialog::update_preview));
218         notebook.signal_switch_page().connect (sigc::hide_return (sigc::hide (sigc::hide (sigc::mem_fun (*this, &AddVideoDialog::page_switch)))));
219         seek_slider.signal_value_changed().connect(sigc::mem_fun(*this, &AddVideoDialog::seek_preview));
220         harvid_reset.signal_clicked().connect (sigc::mem_fun (*this, &AddVideoDialog::harvid_load_docroot));
221 }
222
223 AddVideoDialog::~AddVideoDialog ()
224 {
225 }
226
227 void
228 AddVideoDialog::on_show ()
229 {
230         /* overall layout depending on get_video_advanced_setup() and docroot */
231         for (int i = notebook.get_n_pages(); i > 0 ; --i) {
232                 notebook.remove_page(i);
233         }
234         if (server_index_box.get_parent()) {
235                 server_index_box.get_parent()->remove(server_index_box);
236         }
237         if (file_chooser_box.get_parent()) {
238                 file_chooser_box.get_parent()->remove(file_chooser_box);
239         }
240         if (notebook.get_parent()) {
241                 notebook.get_parent()->remove(notebook);
242         }
243
244         if (Config->get_video_advanced_setup()) {
245                 notebook.append_page (server_index_box, _("VideoServerIndex"));
246                 if (video_get_docroot(Config).size() > 0) {
247                         notebook.append_page (file_chooser_box, _("Browse Files"));
248                 }
249                 browser_container.pack_start (notebook, true, true);
250                 show_advanced = true;
251                 if (!loaded_docroot) {
252                         harvid_load_docroot();
253                 }
254         } else {
255                 browser_container.pack_start (file_chooser_box, true, true);
256                 show_advanced = false;
257                 loaded_docroot = false;
258         }
259
260         show_all_children ();
261
262         Dialog::on_show ();
263 }
264
265 static bool check_video_file_extension(std::string file)
266 {
267         const char* suffixes[] = {
268                 ".avi"     , ".AVI"     ,
269                 ".mov"     , ".MOV"     ,
270                 ".ogg"     , ".OGG"     ,
271                 ".ogv"     , ".OGV"     ,
272                 ".mpg"     , ".MPG"     ,
273                 ".mov"     , ".MOV"     ,
274                 ".mp4"     , ".MP4"     ,
275                 ".mkv"     , ".MKV"     ,
276                 ".vob"     , ".VOB"     ,
277                 ".asf"     , ".ASF"     ,
278                 ".avs"     , ".AVS"     ,
279                 ".dts"     , ".DTS"     ,
280                 ".flv"     , ".FLV"     ,
281                 ".m4v"     , ".M4V"     ,
282                 ".matroska", ".MATROSKA",
283                 ".h264"    , ".H264"    ,
284                 ".dv"      , ".DV"      ,
285                 ".dirac"   , ".DIRAC"   ,
286                 ".webm"    , ".WEBM"    ,
287         };
288
289         for (size_t n = 0; n < sizeof(suffixes)/sizeof(suffixes[0]); ++n) {
290                 if (file.rfind (suffixes[n]) == file.length() - strlen (suffixes[n])) {
291                         return true;
292                 }
293         }
294
295         return false;
296 }
297
298 bool
299 AddVideoDialog::on_video_filter (const FileFilter::Info& filter_info)
300 {
301         return check_video_file_extension(filter_info.filename);
302 }
303
304 std::string
305 AddVideoDialog::file_name (bool &local_file)
306 {
307         int n = notebook.get_current_page ();
308         if (n == 1 || !show_advanced) {
309                 local_file = true;
310                 return chooser.get_filename();
311         } else {
312                 local_file = false;
313                 Gtk::TreeModel::iterator iter = harvid_list_view.get_selection()->get_selected();
314                 if(!iter) return "";
315
316                 std::string uri = (*iter)[harvid_list_columns.uri];
317                 std::string video_server_url = video_get_server_url(Config);
318
319                 /* check if video server is running locally */
320                 if (video_get_docroot(Config).size() > 0
321                                 && !video_server_url.compare(0, 16, "http://localhost"))
322                 {
323                         /* check if the file can be accessed */
324                         int plen;
325                         CURL *curl;
326                         curl = curl_easy_init();
327                         char *ue = curl_easy_unescape(curl, uri.c_str(), uri.length(), &plen);
328 #ifdef PLATFORM_WINDOWS
329                         char *tmp;
330                         while (tmp = strchr(ue, '/')) *tmp = '\\';
331 #endif
332                         std::string path = video_get_docroot(Config) + ue;
333                         if (!::access(path.c_str(), R_OK)) {
334                                 uri = path;
335                                 local_file = true;
336                         }
337                         curl_easy_cleanup(curl);
338                         curl_free(ue);
339                 }
340                 return uri;
341         }
342 }
343
344 enum VtlImportOption
345 AddVideoDialog::import_option ()
346 {
347         int n = notebook.get_current_page ();
348         if (n == 0 && show_advanced) { return VTL_IMPORT_NONE; }
349         return VTL_IMPORT_TRANSCODE;
350 }
351
352 bool
353 AddVideoDialog::launch_xjadeo ()
354 {
355         return xjadeo_checkbox.get_active();
356 }
357
358 bool
359 AddVideoDialog::auto_set_session_fps ()
360 {
361         return set_session_fps_checkbox.get_active();
362 }
363
364 void
365 AddVideoDialog::clear_preview_image ()
366 {
367         imgbuf->fill(RGBA_TO_UINT(0,0,0,255));
368         video_draw_cross(imgbuf);
369         preview_image->set(imgbuf);
370         preview_image->show();
371 }
372
373 void
374 AddVideoDialog::set_action_ok (bool yn)
375 {
376         if (yn) {
377                 ok_button->set_sensitive(true);
378         } else {
379                 preview_path = "";
380                 pi_tcin.set_text("-");
381                 pi_tcout.set_text("-");
382                 pi_aspect.set_text("-");
383                 pi_fps.set_text("-");
384                 ok_button->set_sensitive(false);
385                 clear_preview_image();
386         }
387 }
388
389 void
390 AddVideoDialog::file_selection_changed ()
391 {
392         if (chooser.get_filename().size() > 0) {
393                 std::string path = chooser.get_filename();
394                 bool ok =
395                                 check_video_file_extension(path)
396                                 &&  Glib::file_test(path.c_str(), Glib::FILE_TEST_IS_REGULAR | Glib::FILE_TEST_IS_SYMLINK)
397                                 && !Glib::file_test(path.c_str(), Glib::FILE_TEST_IS_DIR);
398                 set_action_ok(ok);
399                 if (ok) {
400                         seek_slider.set_value(0);
401                         request_preview(video_map_path(video_get_docroot(Config), path));
402                 }
403         } else {
404                 set_action_ok(false);
405         }
406 }
407
408 void
409 AddVideoDialog::file_activated ()
410 {
411         if (chooser.get_filename().size() > 0) {
412                 std::string path = chooser.get_filename();
413                 // TODO check docroot -> set import options
414                 bool ok =
415                                 check_video_file_extension(path)
416                                 &&  Glib::file_test(path.c_str(), Glib::FILE_TEST_IS_REGULAR | Glib::FILE_TEST_IS_SYMLINK)
417                                 && !Glib::file_test(path.c_str(), Glib::FILE_TEST_IS_DIR);
418                 if (ok) {
419                         Gtk::Dialog::response(RESPONSE_ACCEPT);
420                 }
421         }
422 }
423
424 /**** Tree List Interaction ***/
425
426 void
427 AddVideoDialog::harvid_list_view_selected () {
428         Gtk::TreeModel::iterator iter = harvid_list_view.get_selection()->get_selected();
429         // TODO check docroot -> set import options, xjadeo
430         if(!iter) {
431                 set_action_ok(false);
432                 return;
433         }
434         if ((std::string)((*iter)[harvid_list_columns.id]) == Stock::DIRECTORY.id) {
435                 set_action_ok(false);
436         } else {
437                 set_action_ok(true);
438                 seek_slider.set_value(0);
439                 request_preview((*iter)[harvid_list_columns.uri]);
440         }
441 }
442
443 void
444 AddVideoDialog::harvid_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*) {
445         Gtk::TreeModel::iterator iter = harvid_list->get_iter(path);
446         if (!iter) return;
447         std::string type = (*iter)[harvid_list_columns.id];
448         std::string url = (*iter)[harvid_list_columns.uri];
449
450 #if 0
451         printf ("A: %s %s %s\n",
452                         ((std::string)((*iter)[harvid_list_columns.id])).c_str(),
453                         ((std::string)((*iter)[harvid_list_columns.uri])).c_str(),
454                         ((std::string)((*iter)[harvid_list_columns.filename])).c_str());
455 #endif
456
457         if (type == Gtk::Stock::DIRECTORY.id) {
458                 harvid_request(url.c_str());
459         } else {
460                 Gtk::Dialog::response(RESPONSE_ACCEPT);
461         }
462 }
463
464 void
465 AddVideoDialog::harvid_load_docroot() {
466         set_action_ok(false);
467         loaded_docroot = true;
468
469         std::string video_server_url = video_get_server_url(Config);
470         char url[2048];
471         snprintf(url, sizeof(url), "%s%sindex/"
472                 , video_server_url.c_str()
473                 , (video_server_url.length()>0 && video_server_url.at(video_server_url.length()-1) == '/')?"":"/");
474         harvid_request(url);
475         harvid_initialized = true;
476 }
477
478 bool
479 AddVideoDialog::page_switch() {
480         if (notebook.get_current_page () == 1 || show_advanced) {
481                 file_selection_changed();
482                 return true;
483         }
484
485         if (harvid_initialized) {
486                 harvid_list_view_selected();
487         } else {
488                 harvid_load_docroot();
489         }
490         return true;
491 }
492
493 /**** Harvid HTTP interface ***/
494 void
495 AddVideoDialog::harvid_request(std::string u)
496 {
497         char url[2048];
498         int status;
499         snprintf(url, sizeof(url), "%s?format=csv", u.c_str());
500
501         harvid_list->clear();
502
503         char *res = a3_curl_http_get(url, &status);
504         if (status != 200) {
505                 printf("request failed\n"); // XXX
506                 harvid_path.set_text(" - request failed -");
507                 free(res);
508                 return;
509         }
510
511         /* add up-to-parent */
512         size_t se = u.find_last_of("/", u.size()-2);
513         size_t ss = u.find("/index/");
514         if (se != string::npos && ss != string::npos && se > ss) {
515                 TreeModel::iterator new_row = harvid_list->append();
516                 TreeModel::Row row = *new_row;
517                 row[harvid_list_columns.id      ] = Gtk::Stock::DIRECTORY.id;
518                 row[harvid_list_columns.uri     ] = u.substr(0, se + 1);
519                 row[harvid_list_columns.filename] = X_("..");
520         }
521         if (se != string::npos) {
522                 int plen;
523                 std::string path = u.substr(ss + 6);
524                 CURL *curl;
525                 curl = curl_easy_init();
526                 char *ue = curl_easy_unescape(curl, path.c_str(), path.length(), &plen);
527                 harvid_path.set_text(std::string(ue));
528                 curl_easy_cleanup(curl);
529                 curl_free(ue);
530         } else {
531                 harvid_path.set_text(" ??? ");
532         }
533
534         if (!res) return;
535
536         std::vector<std::vector<std::string> > lines;
537         ParseCSV(std::string(res), lines);
538         for (std::vector<std::vector<std::string> >::iterator i = lines.begin(); i != lines.end(); ++i) {
539                 TreeModel::iterator new_row = harvid_list->append();
540                 TreeModel::Row row = *new_row;
541
542                 if (i->at(0) == X_("D")) {
543                         row[harvid_list_columns.id      ] = Gtk::Stock::DIRECTORY.id;
544                         row[harvid_list_columns.uri     ] = i->at(1).c_str();
545                         row[harvid_list_columns.filename] = i->at(2).c_str();
546                 } else {
547                         row[harvid_list_columns.id      ] = Gtk::Stock::MEDIA_PLAY.id;
548                         row[harvid_list_columns.uri     ] = i->at(2).c_str();
549                         row[harvid_list_columns.filename] = i->at(3).c_str();
550                 }
551         }
552
553         free(res);
554 }
555
556 void
557 AddVideoDialog::seek_preview()
558 {
559         if (preview_path.size() > 0)
560                 request_preview(preview_path);
561 }
562
563 void
564 AddVideoDialog::request_preview(std::string u)
565 {
566         std::string video_server_url = video_get_server_url(Config);
567
568         double video_file_fps;
569         long long int video_duration;
570         double video_start_offset;
571         double video_aspect_ratio;
572
573         int clip_width = PREVIEW_WIDTH;
574         int clip_height = PREVIEW_HEIGHT;
575         int clip_xoff, clip_yoff;
576
577         if (!video_query_info(video_server_url, u,
578                         video_file_fps, video_duration, video_start_offset, video_aspect_ratio))
579         {
580                 printf("image preview info request failed\n");
581                 // set_action_ok(false); // XXX only if docroot mismatch
582                 preview_path = "";
583                 pi_tcin.set_text("-");
584                 pi_tcout.set_text("-");
585                 pi_aspect.set_text("-");
586                 pi_fps.set_text("-");
587
588                 clear_preview_image();
589                 return;
590         }
591
592         if ((PREVIEW_WIDTH / (double)PREVIEW_HEIGHT) > video_aspect_ratio ) {
593                 clip_width = MIN(PREVIEW_WIDTH, rint(clip_height * video_aspect_ratio));
594         } else {
595                 clip_height = MIN(PREVIEW_HEIGHT, rint(clip_width / video_aspect_ratio));
596         }
597
598         pi_tcin.set_text(Timecode::timecode_format_sampletime(
599                                 video_start_offset, video_file_fps, video_file_fps, rint(video_file_fps*100.0)==2997));
600         pi_tcout.set_text(Timecode::timecode_format_sampletime(
601                                 video_start_offset + video_duration, video_file_fps, video_file_fps, rint(video_file_fps*100.0)==2997));
602
603         /* todo break out this code -> re-usability */
604         const int arc = rint(video_aspect_ratio*100);
605
606         switch (arc) {
607                 case 100:
608                         pi_aspect.set_text(X_(" 1:1"));  // square (large format stills)
609                         break;
610                 case 125:
611                         pi_aspect.set_text(X_(" 5:4"));
612                         break;
613                 case 133:
614                         pi_aspect.set_text(X_(" 4:3"));
615                         break;
616                 case 134:
617                         pi_aspect.set_text(X_(" 47:35")); // 752x560, Super8-scans
618                         break;
619                 case 137:
620                 case 138:
621                         pi_aspect.set_text(X_(" 1.37:1")); // 'Academy ratio' <= 1953
622                         break;
623                 case 141:
624                         pi_aspect.set_text(X_(" 1.41:1")); //  Lichtenberg ratio
625                         break;
626                 case 150:
627                         pi_aspect.set_text(X_(" 3:2"));  // classic 35mm
628                         break;
629                 case 160:
630                         pi_aspect.set_text(X_(" 8:5"));  // credit-card size
631                         break;
632                 case 162:
633                         pi_aspect.set_text(X_(" 16:10")); // golden ratio 1.61803..
634                         break;
635                 case 166:
636                 case 167:
637                         pi_aspect.set_text(X_(" 5:3")); // Super16, EU-widescreen
638                         break;
639                 case 177:
640                 case 178:
641                         pi_aspect.set_text(X_(" 16:9")); // HD video
642                         break;
643                 case 180:
644                         pi_aspect.set_text(X_(" 9:5"));
645                         break;
646                 case 185:
647                         pi_aspect.set_text(X_(" 1.85:1")); // US widescreen cinema
648                         break;
649                 case 200:
650                         pi_aspect.set_text(X_(" 2:1"));
651                         break;
652                 case 239:
653                 case 240:
654                         pi_aspect.set_text(X_(" 2.40:1")); // Anamorphic
655                         break;
656                 case 266:
657                 case 267:
658                         pi_aspect.set_text(X_(" 2.66:1")); // CinemaScope
659                         break;
660                 case 275:
661                         pi_aspect.set_text(X_(" 2.75:1")); // Ultra Panavision
662                         break;
663                 case 400:
664                         pi_aspect.set_text(X_(" 4.00:1")); // three 35mm 1.33:1 polyvision
665                         break;
666                 default:
667                         pi_aspect.set_text(string_compose(X_(" %1:1"), video_aspect_ratio));
668                 break;
669         }
670
671         pi_fps.set_text(string_compose(_(" %1 fps"), video_file_fps));
672
673         clip_xoff = (PREVIEW_WIDTH - clip_width)/2;
674         clip_yoff = (PREVIEW_HEIGHT - clip_height)/2;
675
676         char url[2048];
677         snprintf(url, sizeof(url), "%s%s?frame=%lli&w=%d&h=%di&file=%s&format=rgb"
678                 , video_server_url.c_str()
679                 , (video_server_url.length()>0 && video_server_url.at(video_server_url.length()-1) == '/')?"":"/"
680                 , (long long) (video_duration * seek_slider.get_value() / 1000.0)
681                 , clip_width, clip_height, u.c_str());
682
683         char *data = a3_curl_http_get(url, NULL);
684         if (!data) {
685                 printf("image preview request failed %s\n", url);
686                 imgbuf->fill(RGBA_TO_UINT(0,0,0,255));
687                 video_draw_cross(imgbuf);
688                 preview_path = "";
689         } else {
690                 Glib::RefPtr<Gdk::Pixbuf> tmp;
691                 tmp = Gdk::Pixbuf::create_from_data ((guint8*) data, Gdk::COLORSPACE_RGB, false, 8, clip_width, clip_height, clip_width*3);
692                 if (clip_width != PREVIEW_WIDTH || clip_height != PREVIEW_HEIGHT) {
693                         imgbuf->fill(RGBA_TO_UINT(0,0,0,255));
694                 }
695                 tmp->copy_area (0, 0, clip_width, clip_height, imgbuf, clip_xoff, clip_yoff);
696                 preview_path = u;
697                 free(data);
698         }
699         preview_image->set(imgbuf);
700         preview_image->show();
701 }