-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebug_page.html
More file actions
1704 lines (1357 loc) · 66.6 KB
/
Copy pathdebug_page.html
File metadata and controls
1704 lines (1357 loc) · 66.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN" class="ua-windows ua-webkit">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="renderer" content="webkit">
<meta name="referrer" content="always">
<meta name="google-site-verification" content="ok0wCgT20tBBgo9_zat2iAcimtN4Ftf5ccsh092Xeyw" />
<title>
隐者山河 短评
</title>
<meta name="baidu-site-verification" content="cZdR4xxR7RxmM4zE" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="Sun, 6 Mar 2006 01:00:00 GMT">
<meta name="keywords" content="隐者山河,影讯,排片,放映时间,电影票价,在线购票"/>
<meta name="description" content="隐者山河短评" />
<meta name="mobile-agent" content="format=html5; url=https://m.douban.com/movie/subject/37000403/comments"/>
<link rel="apple-touch-icon" href="https://img1.doubanio.com/cuphead/movie-static/pics/apple-touch-icon.png">
<link href="https://img1.doubanio.com/f/vendors/fae7e145bf16b2f427ba0fe7ef3d47c04af3a6c0/css/douban.css" rel="stylesheet" type="text/css">
<link href="https://img1.doubanio.com/f/vendors/ee6598d46af0bc554cecec9bcbf525b9b0582cb0/css/separation/_all.css" rel="stylesheet" type="text/css">
<link href="https://img1.doubanio.com/cuphead/movie-static/base/init.15f4b.css" rel="stylesheet">
<script type="text/javascript">var _head_start = new Date();</script>
<script type="text/javascript" src="https://img1.doubanio.com/f/vendors/0511abe9863c2ea7084efa7e24d1d86c5b3974f1/js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="https://img1.doubanio.com/f/vendors/e258329ca4b2122b4efe53fddc418967441e0e7f/js/douban.js"></script>
<script type="text/javascript" src="https://img1.doubanio.com/f/vendors/b0d3faaf7a432605add54908e39e17746824d6cc/js/separation/_all.js"></script>
<style type="text/css"></style>
<style type="text/css">img { max-width: 100%; }</style>
<script type="text/javascript"></script>
<style type="text/css">
.movie-summary {overflow:hidden; zoom:1;}
.movie-summary .movie-pic {margin-bottom:15px; margin-top:3px;}
.movie-summary p {margin:3px 0; padding-left:2.5em; text-indent:-2.5em; color:#111;}
.movie-summary p .pl, .movie-summary p a:link , .movie-summary p a:visited{color:#111;}
.movie-summary p a:hover {color:#fff;}
.trail_link,.trail_link:visited,.trail_link:hover,.trail_link:active {margin-top:5px; display:block; height:28px; width:96px; background:url('https://img3.doubanio.com/cuphead/movie-static/pics/movie_trailer_icon2.png'); overflow:hidden; line-height:99em;}
</style>
<link rel="shortcut icon" href="https://img1.doubanio.com/favicon.ico" type="image/x-icon">
</head>
<body>
<script type="text/javascript">var _body_start = new Date();</script>
<link href="//img3.doubanio.com/dae/accounts/resources/ba98e9b/shire/bundle.css" rel="stylesheet" type="text/css">
<div id="db-global-nav" class="global-nav">
<div class="bd">
<div class="top-nav-info">
<a href="https://accounts.douban.com/passport/login?source=movie" class="nav-login" rel="nofollow">登录/注册</a>
</div>
<div class="top-nav-doubanapp">
<a href="https://www.douban.com/doubanapp/app?channel=top-nav" class="lnk-doubanapp">下载豆瓣客户端</a>
<div id="doubanapp-tip">
<a href="https://www.douban.com/doubanapp/app?channel=qipao" class="tip-link">豆瓣 <span class="version">6.0</span> 全新发布</a>
<a href="javascript: void 0;" class="tip-close">×</a>
</div>
<div id="top-nav-appintro" class="more-items">
<p class="appintro-title">豆瓣</p>
<p class="qrcode">扫码直接下载</p>
<div class="download">
<a href="https://www.douban.com/doubanapp/redirect?channel=top-nav&direct_dl=1&download=iOS">iPhone</a>
<span>·</span>
<a href="https://www.douban.com/doubanapp/redirect?channel=top-nav&direct_dl=1&download=Android" class="download-android">Android</a>
</div>
</div>
</div>
<div class="global-nav-items">
<ul>
<li class="">
<a href="https://www.douban.com" target="_blank" data-moreurl-dict="{"from":"top-nav-click-main","uid":"0"}">豆瓣</a>
</li>
<li class="">
<a href="https://book.douban.com" target="_blank" data-moreurl-dict="{"from":"top-nav-click-book","uid":"0"}">读书</a>
</li>
<li class="on">
<a href="https://movie.douban.com" data-moreurl-dict="{"from":"top-nav-click-movie","uid":"0"}">电影</a>
</li>
<li class="">
<a href="https://music.douban.com" target="_blank" data-moreurl-dict="{"from":"top-nav-click-music","uid":"0"}">音乐</a>
</li>
<li class="">
<a href="https://www.douban.com/podcast/" target="_blank" data-moreurl-dict="{"from":"top-nav-click-podcast","uid":"0"}">播客</a>
</li>
<li class="">
<a href="https://www.douban.com/location" target="_blank" data-moreurl-dict="{"from":"top-nav-click-location","uid":"0"}">同城</a>
</li>
<li class="">
<a href="https://www.douban.com/group" target="_blank" data-moreurl-dict="{"from":"top-nav-click-group","uid":"0"}">小组</a>
</li>
<li class="">
<a href="https://read.douban.com/?dcs=top-nav&dcm=douban" target="_blank" data-moreurl-dict="{"from":"top-nav-click-read","uid":"0"}">阅读</a>
</li>
<li class="">
<a href="https://fm.douban.com/?from_=shire_top_nav" target="_blank" data-moreurl-dict="{"from":"top-nav-click-fm","uid":"0"}">FM</a>
</li>
<li class="">
<a href="https://time.douban.com/?dt_time_source=douban-web_top_nav" target="_blank" data-moreurl-dict="{"from":"top-nav-click-time","uid":"0"}">时间</a>
</li>
<li class="">
<a href="https://market.douban.com/?utm_campaign=douban_top_nav&utm_source=douban&utm_medium=pc_web" target="_blank" data-moreurl-dict="{"from":"top-nav-click-market","uid":"0"}">豆品</a>
</li>
</ul>
</div>
</div>
</div>
<script>
;window._GLOBAL_NAV = {
DOUBAN_URL: "https://www.douban.com",
N_NEW_NOTIS: 0,
N_NEW_DOUMAIL: 0
};
</script>
<script src="//img3.doubanio.com/dae/accounts/resources/ba98e9b/shire/bundle.js" defer="defer"></script>
<link href="//img3.doubanio.com/dae/accounts/resources/ba98e9b/movie/bundle.css" rel="stylesheet" type="text/css">
<div id="db-nav-movie" class="nav">
<div class="nav-wrap">
<div class="nav-primary">
<div class="nav-logo">
<a href="https://movie.douban.com">豆瓣电影</a>
</div>
<div class="nav-search">
<form action="https://search.douban.com/movie/subject_search" method="get">
<fieldset>
<legend>搜索:</legend>
<label for="inp-query">
</label>
<div class="inp"><input id="inp-query" name="search_text" size="22" maxlength="60" placeholder="搜索电影、电视剧、综艺、影人" value=""></div>
<div class="inp-btn"><input type="submit" value="搜索"></div>
<input type="hidden" name="cat" value="1002" />
</fieldset>
</form>
</div>
</div>
</div>
<div class="nav-secondary">
<div class="nav-items">
<ul>
<li ><a href="https://movie.douban.com/cinema/nowplaying/"
>影讯&购票</a>
</li>
<li ><a href="https://movie.douban.com/explore"
>选电影</a>
</li>
<li ><a href="https://movie.douban.com/tv/"
>选剧集</a>
</li>
<li ><a href="https://movie.douban.com/chart"
>排行榜</a>
</li>
<li ><a href="https://movie.douban.com/review/best/"
>影评</a>
</li>
<li ><a href="https://movie.douban.com/annual/2024/?fullscreen=1&dt_from=movie_navigation"
>2024年度榜单</a>
</li>
<li ><a href="https://c9.douban.com/app/standbyme-2024/?autorotate=false&fullscreen=true&hidenav=true&monitor_screenshot=true&df_from=web_navigation"
target="_blank"
>2024年度报告</a>
</li>
</ul>
</div>
<a href="https://movie.douban.com/annual/2024/?fullscreen=1&source=movie_navigation_logo" class="movieannual"></a>
</div>
</div>
<script id="suggResult" type="text/x-jquery-tmpl">
<li data-link="{{= url}}">
<a href="{{= url}}" onclick="moreurl(this, {from:'movie_search_sugg', query:'{{= keyword }}', subject_id:'{{= id}}', i: '{{= index}}', type: '{{= type}}'})">
<img src="{{= img}}" width="40" />
<p>
<em>{{= title}}</em>
{{if year}}
<span>{{= year}}</span>
{{/if}}
{{if sub_title}}
<br /><span>{{= sub_title}}</span>
{{/if}}
{{if address}}
<br /><span>{{= address}}</span>
{{/if}}
{{if episode}}
{{if episode=="unknow"}}
<br /><span>集数未知</span>
{{else}}
<br /><span>共{{= episode}}集</span>
{{/if}}
{{/if}}
</p>
</a>
</li>
</script>
<script src="//img3.doubanio.com/dae/accounts/resources/ba98e9b/movie/bundle.js" defer="defer"></script>
<div id="wrapper">
<div id="content">
<h1>隐者山河 短评</h1>
<div class="grid-16-8 clearfix">
<div class="article">
<link rel="stylesheet" href="https://img1.doubanio.com/f/vendors/e8a7261937da62636d22ca4c579efc4a4d759b1b/css/ui/dialog.css">
<link rel="stylesheet" href="https://img1.doubanio.com/f/vendors/9aae5c6f1a6c1ef339d7c9a37d69641086bd6917/subject-comments/comments.css">
<div class="clearfix Comments-hd">
<ul class="fleft CommentTabs">
<li class="is-active">
<span>看过(125)</span>
</li>
<li>
<a href="?status=F">想看(49)</a>
</li>
</ul>
<div class="fright">
<a href="javascript:;" class="comment_btn j a_show_login" name="cbtn-37000403">我来写短评</a>
</div>
</div>
<div class="title_line clearfix color_gray">
<div class="fleft Comments-sortby">
<span>热门</span>
<a href="?sort=time&status=P" class="j a_show_login">最新</a>
<!-- 登录用户可见 -->
</div>
</div>
<div class="mod-bd" id="comments">
<div class="comment-item" data-cid="4311967539">
<div class="avatar">
<a title="砰砰." href="https://www.douban.com/people/232478208/">
<img src="https://img3.doubanio.com/icon/u232478208-2.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">18</span>
<input value="4311967539" type="hidden"/>
<a href="javascript:;" data-id="4311967539"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/232478208/">砰砰.</a>
<span>看过</span>
<span class="allstar40 rating" title="推荐"></span>
<span class="comment-time" title="2024-09-29 12:57:56">
2024-09-29 12:57:56
</span>
<span class="comment-location">山西</span>
</span>
</h3>
<p class="comment-content">
<span class="short">出乎意料。“我不取悦任何人,不取悦西方人,也不取悦中国人”</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4311967539"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4316914923">
<div class="avatar">
<a title="且歌且行" href="https://www.douban.com/people/170902115/">
<img src="https://img3.doubanio.com/icon/u170902115-3.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">7</span>
<input value="4316914923" type="hidden"/>
<a href="javascript:;" data-id="4316914923"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/170902115/">且歌且行</a>
<span>看过</span>
<span class="allstar50 rating" title="力荐"></span>
<span class="comment-time" title="2024-10-04 18:50:59">
2024-10-04 18:50:59
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">提供了一个坚持做自己还很有成就的艺术家的生命样本,加强了我做自己的信心</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4316914923"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4515280724">
<div class="avatar">
<a title="托卡苏" href="https://www.douban.com/people/Narindo/">
<img src="https://img3.doubanio.com/icon/u1048449-442.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">4</span>
<input value="4515280724" type="hidden"/>
<a href="javascript:;" data-id="4515280724"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/Narindo/">托卡苏</a>
<span>看过</span>
<span class="allstar30 rating" title="还行"></span>
<span class="comment-time" title="2025-04-24 22:33:22">
2025-04-24 22:33:22
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">一般,但比起了解音乐家本人,不如直接了解其音乐。后面他解释提到《如戏人生》的编排,会对乐团里平常陪衬角色的演奏者带来不一样的挑战时,确实有点顽童一般的风趣,影院里不少人都被逗笑了。</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4515280724"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4687997776">
<div class="avatar">
<a title="mocuishle" href="https://www.douban.com/people/140467640/">
<img src="https://img9.doubanio.com/icon/u140467640-5.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">1</span>
<input value="4687997776" type="hidden"/>
<a href="javascript:;" data-id="4687997776"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/140467640/">mocuishle</a>
<span>看过</span>
<span class="allstar10 rating" title="很差"></span>
<span class="comment-time" title="2025-11-11 20:09:33">
2025-11-11 20:09:33
</span>
<span class="comment-location">上海</span>
</span>
</h3>
<p class="comment-content">
<span class="short">拍的跟电视台专题片无异,最终还是跟导演审美和能力有太多关系。多好的人物题材能拍的如此无趣。我的时代和我有一集也是拍陈老师,希望导演好好学习下,不要老沉浸在赞美声潮中意淫了。作为电视台文献纪录可以,但是作为一部传记电影根本不配。</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4687997776"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4310296458">
<div class="avatar">
<a title="G·I·N" href="https://www.douban.com/people/190915515/">
<img src="https://img3.doubanio.com/icon/u190915515-3.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">5</span>
<input value="4310296458" type="hidden"/>
<a href="javascript:;" data-id="4310296458"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/190915515/">G·I·N</a>
<span>看过</span>
<span class="allstar20 rating" title="较差"></span>
<span class="comment-time" title="2024-09-27 12:52:44">
2024-09-27 12:52:44
</span>
<span class="comment-location">山西</span>
</span>
</h3>
<p class="comment-content">
<span class="short">匠人精神</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4310296458"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4688193090">
<div class="avatar">
<a title="西拉栗" href="https://www.douban.com/people/200534875/">
<img src="https://img2.doubanio.com/icon/u200534875-1.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">1</span>
<input value="4688193090" type="hidden"/>
<a href="javascript:;" data-id="4688193090"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/200534875/">西拉栗</a>
<span>看过</span>
<span class="allstar10 rating" title="很差"></span>
<span class="comment-time" title="2025-11-12 00:14:35">
2025-11-12 00:14:35
</span>
<span class="comment-location">上海</span>
</span>
</h3>
<p class="comment-content">
<span class="short">一盘好菜被糟蹋了。这么好的人物,却被导演做成电视台专题片,然后还竟然胆敢说是「传记电影」。影片中所有能打动人的部分都是陈其钢老师本人真挚的表达,其余部分真的看到胸闷。。。第一次如此如鲠的观影体验。。。从片子里感受到导演的自恋和偷懒,自恋在那些做作的旁白配音,偷懒在大量的毫无意义的风光空镜。。。最重要还僵硬的用演出素材接二连三做串联,凑成2小时的“电影”。本片如果把各种无意义的部分剪掉拿给各大电视台做专题播放或者是给音乐界当文献留档我可以接受,但如果打着陈其钢的「传记电影」四处招摇撞骗,我真心难受又香菇!请导演再去学学视听语言吧!求求了!!</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4688193090"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4515445981">
<div class="avatar">
<a title="Bridy!" href="https://www.douban.com/people/149560847/">
<img src="https://img3.doubanio.com/icon/u149560847-13.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">6</span>
<input value="4515445981" type="hidden"/>
<a href="javascript:;" data-id="4515445981"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/149560847/">Bridy!</a>
<span>看过</span>
<span class="allstar30 rating" title="还行"></span>
<span class="comment-time" title="2025-04-25 01:48:44">
2025-04-25 01:48:44
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">更多的只是记录,深度不够(旁边的大妈爽朗的笑声真的很让人出戏)北京电影节百老汇观-</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4515445981"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4515147112">
<div class="avatar">
<a title="bx_777" href="https://www.douban.com/people/168961784/">
<img src="https://img9.doubanio.com/icon/u168961784-5.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">8</span>
<input value="4515147112" type="hidden"/>
<a href="javascript:;" data-id="4515147112"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/168961784/">bx_777</a>
<span>看过</span>
<span class="allstar20 rating" title="较差"></span>
<span class="comment-time" title="2025-04-24 19:59:34">
2025-04-24 19:59:34
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">流水账式人物纪录片,有价值的部分只有陈其钢老师这个人物本身的厚度和深度,毫无导演的表达(除了故弄玄虚做作的旁白…)比起纪录片更像任务献礼片😅</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4515147112"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4378224651">
<div class="avatar">
<a title="霾桑 等108个人" href="https://www.douban.com/people/steammoonsnow/">
<img src="https://img3.doubanio.com/icon/u59334347-2.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">5</span>
<input value="4378224651" type="hidden"/>
<a href="javascript:;" data-id="4378224651"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/steammoonsnow/">霾桑 等108个人</a>
<span>看过</span>
<span class="allstar40 rating" title="推荐"></span>
<span class="comment-time" title="2024-12-10 11:59:02">
2024-12-10 11:59:02
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">他“归隐”的时间是2015年,年份有意思,正好避开后面大起大落的一个浪潮。十年左右后,浪潮落下,这些“隐者”作为旁观浪潮的人,确实有资格对着大家说些什么。另外,片子强调对“主体”的追寻,就是,不是说艺术家属于东方或者西方,而是艺术家主体一定能超越东、西方的框架——片子里强调“人文主义”,也是这个意思。最后,他诵唱“我欲乘风归去”,其实是有点儿“绝命诗”或者“哀歌”的意味了。我从前挺喜欢他给十三钗、归来的电影配乐,全都单曲或者整碟循环过,十多年前。</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4378224651"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4686985749">
<div class="avatar">
<a title="mangojune" href="https://www.douban.com/people/1029981/">
<img src="https://img1.doubanio.com/icon/u1029981-8.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">0</span>
<input value="4686985749" type="hidden"/>
<a href="javascript:;" data-id="4686985749"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/1029981/">mangojune</a>
<span>看过</span>
<span class="allstar40 rating" title="推荐"></span>
<span class="comment-time" title="2025-11-10 13:32:08">
2025-11-10 13:32:08
</span>
<span class="comment-location">浙江</span>
</span>
</h3>
<p class="comment-content">
<span class="short">从《掬水月在手》《90后》到《隐者山河》,是需要为这些有灵魂的中国人拍摄纪录片,并看到~</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4686985749"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4562471820">
<div class="avatar">
<a title="Matthieu" href="https://www.douban.com/people/223946681/">
<img src="https://img1.doubanio.com/icon/u223946681-10.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">4</span>
<input value="4562471820" type="hidden"/>
<a href="javascript:;" data-id="4562471820"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/223946681/">Matthieu</a>
<span>看过</span>
<span class="allstar20 rating" title="较差"></span>
<span class="comment-time" title="2025-06-19 23:21:02">
2025-06-19 23:21:02
</span>
<span class="comment-location">上海</span>
</span>
</h3>
<p class="comment-content">
<span class="short">从镜头到音影剪辑到加上那些建模海鸟和p上去的月亮镜头到念白,完美的装垫儿台晚会质感,好的时候就是让陈其钢和其他人和场景自己发生的时候,坏的时候就是导演决定要开始做事的时候。</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4562471820"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4515159128">
<div class="avatar">
<a title="日灼" href="https://www.douban.com/people/59714311/">
<img src="https://img9.doubanio.com/icon/u59714311-45.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">2</span>
<input value="4515159128" type="hidden"/>
<a href="javascript:;" data-id="4515159128"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/59714311/">日灼</a>
<span>看过</span>
<span class="allstar30 rating" title="还行"></span>
<span class="comment-time" title="2025-04-24 20:15:28">
2025-04-24 20:15:28
</span>
<span class="comment-location">北京</span>
</span>
</h3>
<p class="comment-content">
<span class="short">陈其钢本人很有趣。能感受到中西两种文化交融在个体之上,呈现出的思维方式和文化思考,遣词造句非常理性和精准。</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4515159128"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4311950965">
<div class="avatar">
<a title="Kathodos" href="https://www.douban.com/people/Kathodos/">
<img src="https://img3.doubanio.com/icon/u175157754-2.jpg" />
</a>
</div>
<div class="comment">
<h3>
<span class="comment-vote">
<span class="votes vote-count">11</span>
<input value="4311950965" type="hidden"/>
<a href="javascript:;" data-id="4311950965"
class="j a_show_login"
onclick="">有用</a>
<!-- 删除短评 -->
</span>
<span class="comment-info">
<a href="https://www.douban.com/people/Kathodos/">Kathodos</a>
<span>看过</span>
<span class="allstar50 rating" title="力荐"></span>
<span class="comment-time" title="2024-09-29 12:32:33">
2024-09-29 12:32:33
</span>
<span class="comment-location">山西</span>
</span>
</h3>
<p class="comment-content">
<span class="short">2024.9.29 平遥电影节PYIFF
人物形象丰满波折,适合纪录片,纪录片画面很棒,叙事逻辑也很不错。说实话对严肃音乐只有朦胧喜欢的非科班人士也能被吸引。时代已经远离严肃了,这样的坚持需要定力。中国传统的隐者可能也是如此。传统艺文之美,中法之间的“我是谁”问题,都颇多感触。影后主创谈话很真诚,纪录片在电影节确实站劣势。不知为何,可能是手快,成观影群群主了...</span>
</p>
<div class="comment-report" data-url="https://movie.douban.com/subject/37000403/comments?comment_id=4311950965"></div>
</div>
<script>
(function(){
$("body").delegate(".comment-item", 'mouseenter mouseleave', function (e) {
switch (e.type) {
case "mouseenter":
$(this).find(".comment-report").css('visibility', 'visible');
break;
case "mouseleave":
$(this).find(".comment-report").css('visibility', 'hidden');
break;
}
});
})()
</script>
</div>
<div class="comment-item" data-cid="4561642849">
<div class="avatar">
<a title="到里斯本看海" href="https://www.douban.com/people/tongxin17/">
<img src="https://img9.doubanio.com/icon/u1060617-95.jpg" />
</a>