fragment.json 380 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996
  1. {
  2. "fragments": [
  3. {
  4. "case_index": 1,
  5. "fragment_id": "f_s1_0",
  6. "action": "提取",
  7. "action_mech": "",
  8. "inputs": [
  9. {
  10. "modality": "视频",
  11. "description": "AI生成的10秒参考视频",
  12. "relation": "[来源.原始输入]"
  13. },
  14. {
  15. "modality": "文本",
  16. "description": "补充的核心点描述",
  17. "relation": "[来源.原始输入]"
  18. }
  19. ],
  20. "outputs": [
  21. {
  22. "modality": "文本",
  23. "description": "正向提示词",
  24. "relation": "[去向.s2I]"
  25. },
  26. {
  27. "modality": "文本",
  28. "description": "负向提示词",
  29. "relation": "[去向.s2I]"
  30. }
  31. ],
  32. "in_modalities": [
  33. "视频",
  34. "文本"
  35. ],
  36. "in_config_modalities": [],
  37. "out_modalities": [
  38. "文本"
  39. ],
  40. "modality_signature": "视频+文本 → 文本",
  41. "modality_signature_skipped": false,
  42. "apply_shizhi": [
  43. {
  44. "category_id": 1615,
  45. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  46. "element": null,
  47. "rationale": "短剧人物本质上是叙事中的角色设定,最接近叙事角色。"
  48. },
  49. {
  50. "category_id": 262,
  51. "category_path": "/表象/视觉/空间/空间场所/生活场景",
  52. "element": null,
  53. "rationale": "短剧场景通常对应人物活动发生的生活化空间场景。"
  54. }
  55. ],
  56. "apply_xingshi": [
  57. {
  58. "category_id": 1074,
  59. "category_path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式",
  60. "element": null,
  61. "rationale": "运镜方式属于拍摄执行层面的拍摄方式。"
  62. },
  63. {
  64. "category_id": 403,
  65. "category_path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象",
  66. "element": null,
  67. "rationale": "人物外观主要落在穿搭与整体造型呈现。"
  68. },
  69. {
  70. "category_id": 386,
  71. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态",
  72. "element": null,
  73. "rationale": "动作细节属于人物动作姿态层面的表现。"
  74. }
  75. ],
  76. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/叙事情境/短剧人物场景",
  77. "body": "上传AI生成的10秒视频到manus,让其根据核心点拆解视频的运镜、人物等元素,反推出正向提示词和负向提示词",
  78. "effects": [
  79. {
  80. "statement": "实现视频元素的结构化拆解",
  81. "criteria": "输出的提示词能够准确描述视频中的运镜方式、人物特征、动作细节等关键元素",
  82. "judge_method": "llm",
  83. "negative_examples": [
  84. "提示词过于笼统,缺少具体的运镜或人物描述",
  85. "提示词与原视频内容不符"
  86. ]
  87. }
  88. ],
  89. "tools": [
  90. "manus"
  91. ],
  92. "control_target": [
  93. "运镜",
  94. "人物特征",
  95. "动作"
  96. ],
  97. "artifact_type": "正向提示词",
  98. "workflow_step_ref": {
  99. "workflow_id": null,
  100. "step_id": "s1"
  101. },
  102. "is_alternative_to": [],
  103. "case_title": "全网首发,免费,0-1做一个完整超AI真人短剧,附上提示词和技巧,让你看不出真人还是AI,完整流程,不私藏,超级干货。",
  104. "case_url": "https://mp.weixin.qq.com/s?__biz=MzIwNDcxNzI0Ng==&idx=1&mid=2247488160&sn=0f253dad0443337ab1414b36c2f1ee75"
  105. },
  106. {
  107. "case_index": 1,
  108. "fragment_id": "f_s2_0",
  109. "action": "生成",
  110. "action_mech": "",
  111. "inputs": [
  112. {
  113. "modality": "文本",
  114. "description": "正向提示词",
  115. "relation": "[来源.s1O]"
  116. },
  117. {
  118. "modality": "文本",
  119. "description": "负向提示词",
  120. "relation": "[来源.s1O]"
  121. }
  122. ],
  123. "outputs": [
  124. {
  125. "modality": "图片",
  126. "description": "人物图片",
  127. "relation": "[去向.s3I]"
  128. }
  129. ],
  130. "in_modalities": [
  131. "文本"
  132. ],
  133. "in_config_modalities": [],
  134. "out_modalities": [
  135. "图片"
  136. ],
  137. "modality_signature": "文本 → 图片",
  138. "modality_signature_skipped": false,
  139. "apply_shizhi": [
  140. {
  141. "category_id": 1615,
  142. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  143. "element": null,
  144. "rationale": "短剧人物可归入承担情节功能的人物角色。"
  145. }
  146. ],
  147. "apply_xingshi": [
  148. {
  149. "category_id": 403,
  150. "category_path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象",
  151. "element": null,
  152. "rationale": "人物外观直接对应整体形象与穿搭呈现。"
  153. },
  154. {
  155. "category_id": 7672,
  156. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/姿态体位",
  157. "element": null,
  158. "rationale": "姿态更具体地指向人物的体位与固定姿势呈现。"
  159. }
  160. ],
  161. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/短剧人物造型姿态",
  162. "body": "将反推的正向提示词和负向提示词喂给AI生图工具,生成人物图片",
  163. "effects": [
  164. {
  165. "statement": "实现符合提示词描述的人物图片生成",
  166. "criteria": "生成的图片中人物外观、姿态、场景与提示词描述一致",
  167. "judge_method": "vlm",
  168. "negative_examples": [
  169. "人物特征与描述不符",
  170. "画面质量低劣",
  171. "出现明显的AI生成瑕疵"
  172. ]
  173. }
  174. ],
  175. "tools": [],
  176. "control_target": [
  177. "人物外观",
  178. "姿态",
  179. "场景"
  180. ],
  181. "artifact_type": "原始图片",
  182. "workflow_step_ref": {
  183. "workflow_id": null,
  184. "step_id": "s2"
  185. },
  186. "is_alternative_to": [],
  187. "case_title": "全网首发,免费,0-1做一个完整超AI真人短剧,附上提示词和技巧,让你看不出真人还是AI,完整流程,不私藏,超级干货。",
  188. "case_url": "https://mp.weixin.qq.com/s?__biz=MzIwNDcxNzI0Ng==&idx=1&mid=2247488160&sn=0f253dad0443337ab1414b36c2f1ee75"
  189. },
  190. {
  191. "case_index": 1,
  192. "fragment_id": "f_s3_0",
  193. "action": "生成",
  194. "action_mech": "",
  195. "inputs": [
  196. {
  197. "modality": "图片",
  198. "description": "参考人物图",
  199. "relation": "[来源.s2O]"
  200. },
  201. {
  202. "modality": "文本",
  203. "description": "人物描述提示词加动作描述",
  204. "relation": "[来源.原始输入]"
  205. }
  206. ],
  207. "outputs": [
  208. {
  209. "modality": "图片",
  210. "description": "分镜图片",
  211. "relation": "[去向.s4I]"
  212. }
  213. ],
  214. "in_modalities": [
  215. "图片",
  216. "文本"
  217. ],
  218. "in_config_modalities": [],
  219. "out_modalities": [
  220. "图片"
  221. ],
  222. "modality_signature": "图片+文本 → 图片",
  223. "modality_signature_skipped": false,
  224. "apply_shizhi": [
  225. {
  226. "category_id": 1615,
  227. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  228. "element": null,
  229. "rationale": "短剧人物仍以叙事角色为最贴近的实质归属。"
  230. },
  231. {
  232. "category_id": 9313,
  233. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态/动作姿势",
  234. "element": null,
  235. "rationale": "人物动作属于人物身体姿势与动作状态的实质内容。"
  236. }
  237. ],
  238. "apply_xingshi": [
  239. {
  240. "category_id": 386,
  241. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态",
  242. "element": null,
  243. "rationale": "动作姿态与草稿表述完全对应。"
  244. },
  245. {
  246. "category_id": 19311,
  247. "category_path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉",
  248. "element": null,
  249. "rationale": "运动连贯性常通过动态捕捉式拍摄来体现连续运动过程。"
  250. }
  251. ],
  252. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态/动作姿势/连续动作",
  253. "body": "根据人物描述提示词,增加动作描述(如举手机、扎头发等),使用参考图生图方式,根据上一张参考生成下一张,确保人物一致性。使用Nano Banana pro模型",
  254. "effects": [
  255. {
  256. "statement": "实现人物身份一致性下的动作变化",
  257. "criteria": "生成的分镜图片中人物脸部特征、整体外观保持一致,同时呈现出新的动作姿态",
  258. "judge_method": "vlm",
  259. "negative_examples": [
  260. "人物脸部特征发生变化",
  261. "动作不自然或不连贯",
  262. "人物身份不一致"
  263. ]
  264. },
  265. {
  266. "statement": "实现分镜动作的连贯性",
  267. "criteria": "相邻分镜之间的动作过渡自然流畅,符合真实人物运动规律",
  268. "judge_method": "vlm",
  269. "negative_examples": [
  270. "动作跳跃过大",
  271. "姿态突变不合理",
  272. "运动轨迹不连贯"
  273. ]
  274. }
  275. ],
  276. "tools": [
  277. "Nano Banana pro"
  278. ],
  279. "control_target": [
  280. "身份一致性",
  281. "动作",
  282. "姿势"
  283. ],
  284. "artifact_type": "原始图片",
  285. "workflow_step_ref": {
  286. "workflow_id": null,
  287. "step_id": "s3"
  288. },
  289. "is_alternative_to": [],
  290. "case_title": "全网首发,免费,0-1做一个完整超AI真人短剧,附上提示词和技巧,让你看不出真人还是AI,完整流程,不私藏,超级干货。",
  291. "case_url": "https://mp.weixin.qq.com/s?__biz=MzIwNDcxNzI0Ng==&idx=1&mid=2247488160&sn=0f253dad0443337ab1414b36c2f1ee75"
  292. },
  293. {
  294. "case_index": 1,
  295. "fragment_id": "f_s4_0",
  296. "action": "生成",
  297. "action_mech": "",
  298. "inputs": [
  299. {
  300. "modality": "图片",
  301. "description": "分镜图片序列",
  302. "relation": "[来源.s3O]"
  303. },
  304. {
  305. "modality": "文本",
  306. "description": "视频生成提示词(包含去掉BGM的要求)",
  307. "relation": "[来源.原始输入]"
  308. },
  309. {
  310. "modality": "参数",
  311. "description": "声音开关配置",
  312. "relation": "[来源.原始输入]"
  313. }
  314. ],
  315. "outputs": [
  316. {
  317. "modality": "视频",
  318. "description": "真人短剧视频片段",
  319. "relation": "[去向.最终成品]"
  320. }
  321. ],
  322. "in_modalities": [
  323. "图片",
  324. "文本"
  325. ],
  326. "in_config_modalities": [
  327. "参数"
  328. ],
  329. "out_modalities": [
  330. "视频"
  331. ],
  332. "modality_signature": "图片+文本 → 视频",
  333. "modality_signature_skipped": false,
  334. "apply_shizhi": [
  335. {
  336. "category_id": 463,
  337. "category_path": "/表象/视觉/实体/物品/影像物品/影视作品",
  338. "element": null,
  339. "rationale": "短剧片段本质上属于影视作品中的片段内容。"
  340. }
  341. ],
  342. "apply_xingshi": [
  343. {
  344. "category_id": 19311,
  345. "category_path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉",
  346. "element": null,
  347. "rationale": "动作流畅度通常体现为动态过程捕捉是否顺畅自然。"
  348. },
  349. {
  350. "category_id": 431,
  351. "category_path": "/呈现/视觉/视觉制作/实景拍摄/拍摄取景/场景取景",
  352. "element": null,
  353. "rationale": "真人质感更接近真实场景拍摄与实景取材带来的观感。"
  354. },
  355. {
  356. "category_id": 195,
  357. "category_path": "/呈现/视觉/视觉制作/素材来源/影视素材",
  358. "element": null,
  359. "rationale": "声音呈现在现有树中无专门声音节点,影视素材最接近片段整体媒介来源。"
  360. }
  361. ],
  362. "suggest_apply_to": "/表象/视觉/实体/物品/影像物品/影视作品/短剧片段",
  363. "body": "将分镜图片(原始人物图+动作图)输入视频生成工具,打开声音选项,提示词中加入去掉BGM音乐的要求,生成真人视频片段。重复此过程生成多段视频",
  364. "effects": [
  365. {
  366. "statement": "实现分镜图片到视频的动画化",
  367. "criteria": "生成的视频中人物动作流畅自然,符合分镜图片序列的动作设计",
  368. "judge_method": "vlm",
  369. "negative_examples": [
  370. "视频卡顿或跳帧",
  371. "动作不连贯",
  372. "人物形象崩坏"
  373. ]
  374. },
  375. {
  376. "statement": "实现无背景音乐的人声视频",
  377. "criteria": "生成的视频包含人物说话声音但不包含背景音乐",
  378. "judge_method": "human",
  379. "negative_examples": [
  380. "视频包含背景音乐",
  381. "完全无声",
  382. "人声不清晰"
  383. ]
  384. },
  385. {
  386. "statement": "实现高度逼真的真人效果",
  387. "criteria": "生成的视频在视觉上难以区分是AI生成还是真人拍摄",
  388. "judge_method": "human",
  389. "negative_examples": [
  390. "明显的AI生成痕迹",
  391. "人物动作僵硬",
  392. "画面质感不真实"
  393. ]
  394. }
  395. ],
  396. "tools": [],
  397. "control_target": [
  398. "动作连贯性",
  399. "画质",
  400. "声音"
  401. ],
  402. "artifact_type": "",
  403. "workflow_step_ref": {
  404. "workflow_id": null,
  405. "step_id": "s4"
  406. },
  407. "is_alternative_to": [],
  408. "case_title": "全网首发,免费,0-1做一个完整超AI真人短剧,附上提示词和技巧,让你看不出真人还是AI,完整流程,不私藏,超级干货。",
  409. "case_url": "https://mp.weixin.qq.com/s?__biz=MzIwNDcxNzI0Ng==&idx=1&mid=2247488160&sn=0f253dad0443337ab1414b36c2f1ee75"
  410. },
  411. {
  412. "case_index": 2,
  413. "fragment_id": "f_s1_0",
  414. "action": "筛选",
  415. "action_mech": "",
  416. "inputs": [
  417. {
  418. "modality": "文本",
  419. "description": "平台爆款题材参考信息",
  420. "relation": "[来源.原始输入]"
  421. }
  422. ],
  423. "outputs": [
  424. {
  425. "modality": "文本",
  426. "description": "已验证爆款题材方向",
  427. "relation": "[去向.s2I]"
  428. }
  429. ],
  430. "in_modalities": [
  431. "文本"
  432. ],
  433. "in_config_modalities": [],
  434. "out_modalities": [
  435. "文本"
  436. ],
  437. "modality_signature": "文本 → 文本",
  438. "modality_signature_skipped": false,
  439. "apply_shizhi": [
  440. {
  441. "category_id": 3534,
  442. "category_path": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感",
  443. "element": null,
  444. "rationale": "都市爱情的核心是婚恋关系与情感纠葛,最贴近婚恋情感。"
  445. },
  446. {
  447. "category_id": 16731,
  448. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  449. "element": null,
  450. "rationale": "霸总与真假千金都强烈指向豪门、富裕阶层生活语境。"
  451. },
  452. {
  453. "category_id": 16671,
  454. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  455. "element": null,
  456. "rationale": "爽文反转常包含身份翻盘与处境逆转,接近逆袭语义。"
  457. }
  458. ],
  459. "apply_xingshi": [],
  460. "suggest_apply_to": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感/都市豪门",
  461. "body": "去找已经曝过的题材,然后让AI来优化。我曝的两条10W+的视频,一条是霸总题材,一条是真假千金题材。都是抖音、快手上已经验证过的爆款类型。",
  462. "effects": [
  463. {
  464. "statement": "实现爆款题材定向筛选",
  465. "criteria": "输出的题材方向在抖音或快手上有可查证的10W+播放量案例支撑",
  466. "judge_method": "human",
  467. "negative_examples": [
  468. "选取的题材在主流短视频平台上无爆款数据支撑",
  469. "选取原创未经验证的冷门题材"
  470. ]
  471. }
  472. ],
  473. "tools": [],
  474. "control_target": [
  475. "场景"
  476. ],
  477. "artifact_type": "",
  478. "workflow_step_ref": {
  479. "workflow_id": null,
  480. "step_id": "s1"
  481. },
  482. "is_alternative_to": [],
  483. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  484. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  485. },
  486. {
  487. "case_index": 2,
  488. "fragment_id": "f_s2_0",
  489. "action": "生成",
  490. "action_mech": "",
  491. "inputs": [
  492. {
  493. "modality": "文本",
  494. "description": "剧本创作思路(类型、集数、受众)",
  495. "relation": "[来源.原始输入]"
  496. }
  497. ],
  498. "outputs": [
  499. {
  500. "modality": "文本",
  501. "description": "完整剧本大纲及每集剧情",
  502. "relation": "[去向.s2I]"
  503. }
  504. ],
  505. "in_modalities": [
  506. "文本"
  507. ],
  508. "in_config_modalities": [],
  509. "out_modalities": [
  510. "文本"
  511. ],
  512. "modality_signature": "文本 → 文本",
  513. "modality_signature_skipped": false,
  514. "apply_shizhi": [
  515. {
  516. "category_id": 3534,
  517. "category_path": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感",
  518. "element": null,
  519. "rationale": "都市爱情短剧首先落在婚恋关系与情感主题上。"
  520. },
  521. {
  522. "category_id": 16731,
  523. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  524. "element": null,
  525. "rationale": "真假千金与豪门恩怨都以富贵阶层生活和豪门环境为核心。"
  526. },
  527. {
  528. "category_id": 16671,
  529. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  530. "element": null,
  531. "rationale": "极致反转常服务于身份翻盘和处境逆转,和逆袭高度相关。"
  532. }
  533. ],
  534. "apply_xingshi": [
  535. {
  536. "category_id": 5852,
  537. "category_path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事",
  538. "element": null,
  539. "rationale": "分集叙事本质是把内容切分为多个连续段落展开。"
  540. },
  541. {
  542. "category_id": 4533,
  543. "category_path": "/架构/叙事/叙事技法/戏剧张力/反转/结局反转",
  544. "element": null,
  545. "rationale": "悬念结尾常通过结尾处制造意外转折,最接近结局反转。"
  546. },
  547. {
  548. "category_id": 2231,
  549. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/快节奏处理",
  550. "element": null,
  551. "rationale": "爽文节奏强调推进快、切换快,贴近快节奏处理。"
  552. }
  553. ],
  554. "suggest_apply_to": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感/都市豪门短剧",
  555. "body": "在豆包中输入剧本创作思路:剧本类型:都市爱情,总集数:15集,目标受众:通用(可以选男频或女频),点击生成,豆包很快就生成了剧本大纲以及每一集的剧情。",
  556. "effects": [
  557. {
  558. "statement": "实现完整剧本大纲自动生成",
  559. "criteria": "输出包含15集大纲,每集有独立剧情描述,结尾有悬念钩子",
  560. "judge_method": "llm",
  561. "negative_examples": [
  562. "输出仅有总体简介而无分集内容",
  563. "各集剧情雷同无递进关系"
  564. ]
  565. }
  566. ],
  567. "tools": [
  568. "豆包"
  569. ],
  570. "control_target": [
  571. "场景"
  572. ],
  573. "artifact_type": "结构化提示词",
  574. "workflow_step_ref": {
  575. "workflow_id": null,
  576. "step_id": "s2"
  577. },
  578. "is_alternative_to": [],
  579. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  580. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  581. },
  582. {
  583. "case_index": 2,
  584. "fragment_id": "f_s2_1",
  585. "action": "生成",
  586. "action_mech": "",
  587. "inputs": [
  588. {
  589. "modality": "文本",
  590. "description": "每集剧情大纲",
  591. "relation": "[来源.上一步产物]"
  592. }
  593. ],
  594. "outputs": [
  595. {
  596. "modality": "文本",
  597. "description": "每集分镜说明、景别、镜头、人物动作和台词",
  598. "relation": "[去向.s3I]"
  599. }
  600. ],
  601. "in_modalities": [
  602. "文本"
  603. ],
  604. "in_config_modalities": [],
  605. "out_modalities": [
  606. "文本"
  607. ],
  608. "modality_signature": "文本 → 文本",
  609. "modality_signature_skipped": false,
  610. "apply_shizhi": [
  611. {
  612. "category_id": 1615,
  613. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  614. "element": null,
  615. "rationale": "短剧分镜与人物动作首先围绕角色在叙事中的呈现展开。"
  616. },
  617. {
  618. "category_id": 1193,
  619. "category_path": "/表象/视觉/行为/人际互动/反应回应",
  620. "element": null,
  621. "rationale": "人物动作常体现角色对情境的行为回应,可先归入反应回应。"
  622. },
  623. {
  624. "category_id": 88,
  625. "category_path": "/理念/现象",
  626. "element": null,
  627. "rationale": "场景描述过于宽泛,在现有树中只能落到较粗的现象层。"
  628. }
  629. ],
  630. "apply_xingshi": [
  631. {
  632. "category_id": 7713,
  633. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  634. "element": null,
  635. "rationale": "景别属于镜头距离和角度控制,现有树中以景别角度节点最贴近。"
  636. },
  637. {
  638. "category_id": 1816,
  639. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  640. "element": null,
  641. "rationale": "镜头运动带来动态引导感,和动态叙事构图最接近。"
  642. },
  643. {
  644. "category_id": 2932,
  645. "category_path": "/架构/修辞/修辞意象/句式辞格/韵律句式/节奏韵律",
  646. "element": null,
  647. "rationale": "台词节奏属于语言表达的节奏控制,可对应节奏韵律。"
  648. }
  649. ],
  650. "suggest_apply_to": "/呈现/视觉/视觉制作/分镜设计/人物调度/场景分镜",
  651. "body": "接着再让豆包生成每一集的分镜说明、景别、镜头、人物动作和台词。剧本质量直接决定了后面视频的效果。如果豆包生成的剧本有些地方不满意,可以让它重新生成某一集,或者手动修改调整。确认没问题后,把剧本下载下来。",
  652. "effects": [
  653. {
  654. "statement": "实现分镜脚本细化",
  655. "criteria": "每集输出包含景别描述、镜头运动说明、人物动作指令和完整台词",
  656. "judge_method": "llm",
  657. "negative_examples": [
  658. "输出仅有台词而无镜头描述",
  659. "景别和动作描述模糊无法指导视频生成"
  660. ]
  661. }
  662. ],
  663. "tools": [
  664. "豆包"
  665. ],
  666. "control_target": [
  667. "构图",
  668. "姿势",
  669. "场景"
  670. ],
  671. "artifact_type": "正向提示词",
  672. "workflow_step_ref": {
  673. "workflow_id": null,
  674. "step_id": "s2"
  675. },
  676. "is_alternative_to": [],
  677. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  678. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  679. },
  680. {
  681. "case_index": 2,
  682. "fragment_id": "f_s3_0",
  683. "action": "生成",
  684. "action_mech": "",
  685. "inputs": [
  686. {
  687. "modality": "文本",
  688. "description": "人物设定描述及详细外貌提示词",
  689. "relation": "[来源.原始输入]"
  690. }
  691. ],
  692. "outputs": [
  693. {
  694. "modality": "图片",
  695. "description": "核心角色人物形象参考图(每角色2-3张不同角度/表情)",
  696. "relation": "[去向.s4I]"
  697. }
  698. ],
  699. "in_modalities": [
  700. "文本"
  701. ],
  702. "in_config_modalities": [],
  703. "out_modalities": [
  704. "图片"
  705. ],
  706. "modality_signature": "文本 → 图片",
  707. "modality_signature_skipped": false,
  708. "apply_shizhi": [
  709. {
  710. "category_id": 16731,
  711. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  712. "element": null,
  713. "rationale": "都市豪门人物的核心语境是富裕阶层与豪门生活方式。"
  714. },
  715. {
  716. "category_id": 18514,
  717. "category_path": "/表象/视觉/实体/人物/群体/社会身份/家庭群体/大家族",
  718. "element": null,
  719. "rationale": "豪门人物常处于家族结构之中,大家族是较贴近的实体分类。"
  720. }
  721. ],
  722. "apply_xingshi": [
  723. {
  724. "category_id": 20113,
  725. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  726. "element": null,
  727. "rationale": "时尚人像构图与都市人物审美都明显偏向时尚现代风格。"
  728. },
  729. {
  730. "category_id": 7713,
  731. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  732. "element": null,
  733. "rationale": "人像构图和背景虚化常以近景特写强化主体人物。"
  734. }
  735. ],
  736. "suggest_apply_to": "/表象/视觉/实体/人物/群体/社会身份/豪门人物",
  737. "body": "苏晚提示词:一张极具时尚感的高清摄影作品。画面中心是一位气质高雅的年轻亚洲女性,留着精致的深色复古卷发,面带温柔自信的微笑。她身着一件洁白的丝绸改良式晚礼服……顾晏辰提示词:一张精致的高端时尚人像摄影,镜头中央是一位英俊的年轻亚洲男性……我会给每个核心角色生成2-3张不同角度、不同表情的参考图,后面做视频时直接用。",
  738. "effects": [
  739. {
  740. "statement": "实现角色外貌视觉化",
  741. "criteria": "生成图片中人物外貌与提示词描述高度吻合,包括发型、服装、气质等关键特征",
  742. "judge_method": "vlm",
  743. "negative_examples": [
  744. "生成图片中人物服装与提示词描述不符",
  745. "人物气质与角色设定偏差明显"
  746. ]
  747. },
  748. {
  749. "statement": "实现多角度参考图覆盖",
  750. "criteria": "同一角色有2-3张图片,角度或表情存在可见差异,可用于后续视频生成的一致性参考",
  751. "judge_method": "vlm",
  752. "negative_examples": [
  753. "所有参考图角度完全相同",
  754. "仅生成1张参考图"
  755. ]
  756. }
  757. ],
  758. "tools": [
  759. "豆包"
  760. ],
  761. "control_target": [
  762. "主体",
  763. "脸部特征",
  764. "质感",
  765. "光线"
  766. ],
  767. "artifact_type": "角色参考图",
  768. "workflow_step_ref": {
  769. "workflow_id": null,
  770. "step_id": "s3"
  771. },
  772. "is_alternative_to": [
  773. "f_s3_1",
  774. "f_s3_2",
  775. "f_s3_3"
  776. ],
  777. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  778. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  779. },
  780. {
  781. "case_index": 2,
  782. "fragment_id": "f_s3_1",
  783. "action": "生成",
  784. "action_mech": "",
  785. "inputs": [
  786. {
  787. "modality": "文本",
  788. "description": "人物设定描述及详细外貌提示词",
  789. "relation": "[来源.原始输入]"
  790. }
  791. ],
  792. "outputs": [
  793. {
  794. "modality": "图片",
  795. "description": "核心角色人物形象参考图",
  796. "relation": "[去向.s4I]"
  797. }
  798. ],
  799. "in_modalities": [
  800. "文本"
  801. ],
  802. "in_config_modalities": [],
  803. "out_modalities": [
  804. "图片"
  805. ],
  806. "modality_signature": "文本 → 图片",
  807. "modality_signature_skipped": false,
  808. "apply_shizhi": [
  809. {
  810. "category_id": 16731,
  811. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  812. "element": null,
  813. "rationale": "都市豪门人物角色主要由豪门与富裕生活语境定义。"
  814. },
  815. {
  816. "category_id": 1615,
  817. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  818. "element": null,
  819. "rationale": "人物角色这一表述本身也对应叙事中的角色设定。"
  820. }
  821. ],
  822. "apply_xingshi": [
  823. {
  824. "category_id": 20113,
  825. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  826. "element": null,
  827. "rationale": "时尚人像构图直接体现现代都市审美与时尚质感。"
  828. },
  829. {
  830. "category_id": 7713,
  831. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  832. "element": null,
  833. "rationale": "人像主体突出通常通过近景特写类构图实现。"
  834. }
  835. ],
  836. "suggest_apply_to": "/表象/视觉/实体/人物/群体/社会身份/豪门人物",
  837. "body": "这一步可以用你习惯的工具:Seedream 4.5都行。",
  838. "effects": [
  839. {
  840. "statement": "实现角色外貌视觉化",
  841. "criteria": "生成图片中人物外貌与提示词描述高度吻合,包括发型、服装、气质等关键特征",
  842. "judge_method": "vlm",
  843. "negative_examples": [
  844. "生成图片中人物服装与提示词描述不符",
  845. "人物气质与角色设定偏差明显"
  846. ]
  847. }
  848. ],
  849. "tools": [
  850. "Seedream 4.5"
  851. ],
  852. "control_target": [
  853. "主体",
  854. "脸部特征",
  855. "质感"
  856. ],
  857. "artifact_type": "角色参考图",
  858. "workflow_step_ref": {
  859. "workflow_id": null,
  860. "step_id": "s3"
  861. },
  862. "is_alternative_to": [
  863. "f_s3_0",
  864. "f_s3_2",
  865. "f_s3_3"
  866. ],
  867. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  868. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  869. },
  870. {
  871. "case_index": 2,
  872. "fragment_id": "f_s3_2",
  873. "action": "生成",
  874. "action_mech": "",
  875. "inputs": [
  876. {
  877. "modality": "文本",
  878. "description": "人物设定描述及详细外貌提示词",
  879. "relation": "[来源.原始输入]"
  880. }
  881. ],
  882. "outputs": [
  883. {
  884. "modality": "图片",
  885. "description": "核心角色人物形象参考图",
  886. "relation": "[去向.s4I]"
  887. }
  888. ],
  889. "in_modalities": [
  890. "文本"
  891. ],
  892. "in_config_modalities": [],
  893. "out_modalities": [
  894. "图片"
  895. ],
  896. "modality_signature": "文本 → 图片",
  897. "modality_signature_skipped": false,
  898. "apply_shizhi": [
  899. {
  900. "category_id": 16731,
  901. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  902. "element": null,
  903. "rationale": "都市豪门人物角色仍以豪门阶层与富贵生活为核心。"
  904. },
  905. {
  906. "category_id": 1615,
  907. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  908. "element": null,
  909. "rationale": "角色描述可映射到叙事角色这一人物功能节点。"
  910. }
  911. ],
  912. "apply_xingshi": [
  913. {
  914. "category_id": 20113,
  915. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  916. "element": null,
  917. "rationale": "高清时尚人像的审美取向最接近时尚现代。"
  918. },
  919. {
  920. "category_id": 7713,
  921. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  922. "element": null,
  923. "rationale": "人像构图强调人物主体时,常归入特写近景类技法。"
  924. }
  925. ],
  926. "suggest_apply_to": "/表象/视觉/实体/人物/群体/社会身份/豪门人物",
  927. "body": "这一步可以用你习惯的工具:MJ V7都行。",
  928. "effects": [
  929. {
  930. "statement": "实现角色外貌视觉化",
  931. "criteria": "生成图片中人物外貌与提示词描述高度吻合,包括发型、服装、气质等关键特征",
  932. "judge_method": "vlm",
  933. "negative_examples": [
  934. "生成图片中人物服装与提示词描述不符",
  935. "人物气质与角色设定偏差明显"
  936. ]
  937. }
  938. ],
  939. "tools": [
  940. "Midjourney V7"
  941. ],
  942. "control_target": [
  943. "主体",
  944. "脸部特征",
  945. "质感"
  946. ],
  947. "artifact_type": "角色参考图",
  948. "workflow_step_ref": {
  949. "workflow_id": null,
  950. "step_id": "s3"
  951. },
  952. "is_alternative_to": [
  953. "f_s3_0",
  954. "f_s3_1",
  955. "f_s3_3"
  956. ],
  957. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  958. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  959. },
  960. {
  961. "case_index": 2,
  962. "fragment_id": "f_s3_3",
  963. "action": "生成",
  964. "action_mech": "",
  965. "inputs": [
  966. {
  967. "modality": "文本",
  968. "description": "人物设定描述及详细外貌提示词",
  969. "relation": "[来源.原始输入]"
  970. }
  971. ],
  972. "outputs": [
  973. {
  974. "modality": "图片",
  975. "description": "核心角色人物形象参考图",
  976. "relation": "[去向.s4I]"
  977. }
  978. ],
  979. "in_modalities": [
  980. "文本"
  981. ],
  982. "in_config_modalities": [],
  983. "out_modalities": [
  984. "图片"
  985. ],
  986. "modality_signature": "文本 → 图片",
  987. "modality_signature_skipped": false,
  988. "apply_shizhi": [
  989. {
  990. "category_id": 16731,
  991. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  992. "element": null,
  993. "rationale": "都市豪门人物角色和富裕阶层生活状态紧密对应。"
  994. },
  995. {
  996. "category_id": 1615,
  997. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  998. "element": null,
  999. "rationale": "人物角色在现有树中也可由叙事角色承接。"
  1000. }
  1001. ],
  1002. "apply_xingshi": [
  1003. {
  1004. "category_id": 20113,
  1005. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  1006. "element": null,
  1007. "rationale": "时尚人像构图最直接体现现代时尚审美风格。"
  1008. },
  1009. {
  1010. "category_id": 7713,
  1011. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  1012. "element": null,
  1013. "rationale": "高清人像常以近景特写方式突出面部与人物状态。"
  1014. }
  1015. ],
  1016. "suggest_apply_to": "/表象/视觉/实体/人物/群体/社会身份/豪门人物",
  1017. "body": "这一步可以用你习惯的工具:Nano Banana Pro都行。",
  1018. "effects": [
  1019. {
  1020. "statement": "实现角色外貌视觉化",
  1021. "criteria": "生成图片中人物外貌与提示词描述高度吻合,包括发型、服装、气质等关键特征",
  1022. "judge_method": "vlm",
  1023. "negative_examples": [
  1024. "生成图片中人物服装与提示词描述不符",
  1025. "人物气质与角色设定偏差明显"
  1026. ]
  1027. }
  1028. ],
  1029. "tools": [
  1030. "Nano Banana Pro"
  1031. ],
  1032. "control_target": [
  1033. "主体",
  1034. "脸部特征",
  1035. "质感"
  1036. ],
  1037. "artifact_type": "角色参考图",
  1038. "workflow_step_ref": {
  1039. "workflow_id": null,
  1040. "step_id": "s3"
  1041. },
  1042. "is_alternative_to": [
  1043. "f_s3_0",
  1044. "f_s3_1",
  1045. "f_s3_2"
  1046. ],
  1047. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  1048. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  1049. },
  1050. {
  1051. "case_index": 2,
  1052. "fragment_id": "f_s4_0",
  1053. "action": "生成",
  1054. "action_mech": "",
  1055. "inputs": [
  1056. {
  1057. "modality": "图片",
  1058. "description": "角色人物参考图(多张)",
  1059. "relation": "[来源.上一步产物]"
  1060. },
  1061. {
  1062. "modality": "文本",
  1063. "description": "该集剧情分镜提示词",
  1064. "relation": "[来源.上一步产物]"
  1065. }
  1066. ],
  1067. "outputs": [
  1068. {
  1069. "modality": "视频",
  1070. "description": "15秒分镜视频片段",
  1071. "relation": "[去向.s5I]"
  1072. }
  1073. ],
  1074. "in_modalities": [
  1075. "图片",
  1076. "文本"
  1077. ],
  1078. "in_config_modalities": [],
  1079. "out_modalities": [
  1080. "视频"
  1081. ],
  1082. "modality_signature": "图片+文本 → 视频",
  1083. "modality_signature_skipped": false,
  1084. "apply_shizhi": [
  1085. {
  1086. "category_id": 16671,
  1087. "category_path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  1088. "element": null,
  1089. "rationale": "真假千金对决和霸气反转场景都包含身份翻盘与处境逆转。"
  1090. },
  1091. {
  1092. "category_id": 1615,
  1093. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  1094. "element": null,
  1095. "rationale": "都市短剧剧情往往围绕特定角色对抗展开,可落在叙事角色。"
  1096. }
  1097. ],
  1098. "apply_xingshi": [
  1099. {
  1100. "category_id": 1816,
  1101. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  1102. "element": null,
  1103. "rationale": "电影感镜头和人物动态表演都强调镜头对动作与叙事的引导。"
  1104. },
  1105. {
  1106. "category_id": 5211,
  1107. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/夸张表演/滑稽喜剧",
  1108. "element": null,
  1109. "rationale": "人物动态表演在现有树里只能近似映射到强调表演动作的夸张表演节点。"
  1110. }
  1111. ],
  1112. "suggest_apply_to": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭/真假千金对决",
  1113. "body": "打开豆包APP(网页版只能上传一张参考图,APP可以上传多张),选择Seedance 2.0功能,上传人物参考图,输入这一集的剧情提示词(从豆包生成的剧本里复制),点击生成,等待几分钟。假千金装可怜、真千金霸气打脸、最后女王加冕,整个剧情流畅自然,口型完美对上,音效也恰到好处。当然,生成过程中也会遇到生成失败的情况,看下提示词有没有违规。",
  1114. "effects": [
  1115. {
  1116. "statement": "实现角色一致性视频生成",
  1117. "criteria": "生成视频中人物外貌与上传参考图保持高度一致,脸型、发型、服装风格可辨认为同一角色",
  1118. "judge_method": "vlm",
  1119. "negative_examples": [
  1120. "视频中人物与参考图角色外貌差异明显",
  1121. "不同片段中同一角色外貌不一致"
  1122. ]
  1123. },
  1124. {
  1125. "statement": "实现口型与台词同步",
  1126. "criteria": "视频中人物口型动作与剧情台词节奏吻合,无明显错位",
  1127. "judge_method": "vlm",
  1128. "negative_examples": [
  1129. "人物嘴部动作与台词完全不匹配",
  1130. "人物全程无口型变化"
  1131. ]
  1132. },
  1133. {
  1134. "statement": "实现剧情场景动态呈现",
  1135. "criteria": "视频内容与输入的分镜提示词描述的场景、动作、情绪相符",
  1136. "judge_method": "vlm",
  1137. "negative_examples": [
  1138. "视频场景与提示词描述的情节完全无关",
  1139. "人物动作与剧情要求相悖"
  1140. ]
  1141. }
  1142. ],
  1143. "tools": [
  1144. "豆包",
  1145. "Seedance 2.0"
  1146. ],
  1147. "control_target": [
  1148. "身份一致性",
  1149. "脸部特征",
  1150. "姿势",
  1151. "场景"
  1152. ],
  1153. "artifact_type": "静态图",
  1154. "workflow_step_ref": {
  1155. "workflow_id": null,
  1156. "step_id": "s4"
  1157. },
  1158. "is_alternative_to": [],
  1159. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  1160. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  1161. },
  1162. {
  1163. "case_index": 2,
  1164. "fragment_id": "f_s5_0",
  1165. "action": "剪辑",
  1166. "action_mech": "",
  1167. "inputs": [
  1168. {
  1169. "modality": "视频",
  1170. "description": "多个15秒分镜视频片段",
  1171. "relation": "[来源.上一步产物]"
  1172. }
  1173. ],
  1174. "outputs": [
  1175. {
  1176. "modality": "视频",
  1177. "description": "完整合成短剧视频",
  1178. "relation": "[去向.最终成品]"
  1179. }
  1180. ],
  1181. "in_modalities": [
  1182. "视频"
  1183. ],
  1184. "in_config_modalities": [],
  1185. "out_modalities": [
  1186. "视频"
  1187. ],
  1188. "modality_signature": "视频 → 视频",
  1189. "modality_signature_skipped": false,
  1190. "apply_shizhi": [
  1191. {
  1192. "category_id": 21851,
  1193. "category_path": "/理念/知识/思想/概念范畴/性质属性/风格属性",
  1194. "element": null,
  1195. "rationale": "「AI短剧完整集数」更接近对内容组织形态或作品属性的概括,树中缺少更直接的短剧集数节点,故落在较粗的风格属性。"
  1196. }
  1197. ],
  1198. "apply_xingshi": [
  1199. {
  1200. "category_id": 5852,
  1201. "category_path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事",
  1202. "element": null,
  1203. "rationale": "「AI短剧完整集数」涉及按集或片段切分展开,最接近分段叙事的组织方式。"
  1204. },
  1205. {
  1206. "category_id": 878,
  1207. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  1208. "element": null,
  1209. "rationale": "「片段拼接节奏」与「速度调整」都直接对应剪辑节奏的整体控制。"
  1210. },
  1211. {
  1212. "category_id": 350,
  1213. "category_path": "/架构/逻辑/信息编排逻辑/条目列举/分段结构",
  1214. "element": null,
  1215. "rationale": "字幕排版与内容分块呈现都带有分段与模块化编排特征,最接近分段结构。"
  1216. }
  1217. ],
  1218. "suggest_apply_to": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分集短剧",
  1219. "body": "单个15秒的视频确实有点短,看得不够过瘾。可以把多个15秒的视频拼接起来。把视频导入到剪映中,调整速度,剪掉一些镜头,添加字幕。",
  1220. "effects": [
  1221. {
  1222. "statement": "实现多片段连贯拼接",
  1223. "criteria": "多个15秒片段拼接后叙事连贯,片段间无明显跳跃或逻辑断裂",
  1224. "judge_method": "vlm",
  1225. "negative_examples": [
  1226. "片段拼接处出现明显画面跳切且叙事断裂",
  1227. "片段顺序与剧情逻辑不符"
  1228. ]
  1229. },
  1230. {
  1231. "statement": "实现字幕与画面对齐",
  1232. "criteria": "字幕文字与对应画面台词内容一致,时间轴对齐无明显偏移",
  1233. "judge_method": "vlm",
  1234. "negative_examples": [
  1235. "字幕出现时间与对应台词画面不同步",
  1236. "字幕内容与画面台词不匹配"
  1237. ]
  1238. }
  1239. ],
  1240. "tools": [
  1241. "剪映"
  1242. ],
  1243. "control_target": [
  1244. "画质",
  1245. "局部区域"
  1246. ],
  1247. "artifact_type": "",
  1248. "workflow_step_ref": {
  1249. "workflow_id": null,
  1250. "step_id": "s5"
  1251. },
  1252. "is_alternative_to": [],
  1253. "case_title": "33万播放!豆包+Seedance 2.0做AI短剧,保姆级教程来了",
  1254. "case_url": "https://mp.weixin.qq.com/s?__biz=MzUyOTA0MTczOA==&idx=1&mid=2247503325&sn=6ee74f95d4aa2c810d32d6cf0f833806"
  1255. },
  1256. {
  1257. "case_index": 3,
  1258. "fragment_id": "f_s1_0",
  1259. "action": "生成",
  1260. "action_mech": "",
  1261. "inputs": [
  1262. {
  1263. "modality": "文本",
  1264. "description": "制作真人风格短剧的需求描述",
  1265. "relation": "[来源.原始输入]"
  1266. }
  1267. ],
  1268. "outputs": [
  1269. {
  1270. "modality": "文本",
  1271. "description": "5个有反转的趣味创意方向",
  1272. "relation": "[去向.s1I]"
  1273. }
  1274. ],
  1275. "in_modalities": [
  1276. "文本"
  1277. ],
  1278. "in_config_modalities": [],
  1279. "out_modalities": [
  1280. "文本"
  1281. ],
  1282. "modality_signature": "文本 → 文本",
  1283. "modality_signature_skipped": false,
  1284. "apply_shizhi": [
  1285. {
  1286. "category_id": 280,
  1287. "category_path": "/理念/事件/社会事件/人物故事/趣闻轶事",
  1288. "element": null,
  1289. "rationale": "故事选题指向具体故事内容,树中最接近的是人物故事与趣闻类叙事对象。"
  1290. },
  1291. {
  1292. "category_id": 9591,
  1293. "category_path": "/理念/知识/思想/概念范畴/认知思辨/概念构想",
  1294. "element": null,
  1295. "rationale": "创意方向本质上是抽象设想与创意构想,适合落在概念构想。"
  1296. }
  1297. ],
  1298. "apply_xingshi": [
  1299. {
  1300. "category_id": 4531,
  1301. "category_path": "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转",
  1302. "element": null,
  1303. "rationale": "反转设计直接对应叙事中的反转手法,逻辑反转是最贴近的具体类型。"
  1304. },
  1305. {
  1306. "category_id": 139,
  1307. "category_path": "/架构/叙事",
  1308. "element": null,
  1309. "rationale": "叙事结构属于整体叙述组织策略,适合挂在叙事总类下。"
  1310. }
  1311. ],
  1312. "suggest_apply_to": "/架构/叙事/叙事技法/戏剧张力/反转/故事反转",
  1313. "body": "让AI根据要求生成故事选题方向,提供5个有反转的趣味创意方向",
  1314. "effects": [
  1315. {
  1316. "statement": "实现多个可选故事创意方向的生成",
  1317. "criteria": "生成至少5个不同的故事创意,每个创意包含反转元素和趣味性",
  1318. "judge_method": "llm",
  1319. "negative_examples": [
  1320. "生成的创意少于5个",
  1321. "创意缺乏反转元素",
  1322. "创意之间重复雷同"
  1323. ]
  1324. }
  1325. ],
  1326. "tools": [
  1327. "AI对话工具"
  1328. ],
  1329. "control_target": [
  1330. "故事创意",
  1331. "反转设计"
  1332. ],
  1333. "artifact_type": "结构化提示词",
  1334. "workflow_step_ref": {
  1335. "workflow_id": null,
  1336. "step_id": "s1"
  1337. },
  1338. "is_alternative_to": [],
  1339. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1340. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1341. },
  1342. {
  1343. "case_index": 3,
  1344. "fragment_id": "f_s1_1",
  1345. "action": "扩展",
  1346. "action_mech": "",
  1347. "inputs": [
  1348. {
  1349. "modality": "文本",
  1350. "description": "选定的故事创意",
  1351. "relation": "[来源.s1O]"
  1352. }
  1353. ],
  1354. "outputs": [
  1355. {
  1356. "modality": "文本",
  1357. "description": "逻辑清晰剧情完整的故事剧本",
  1358. "relation": "[去向.s2I]"
  1359. }
  1360. ],
  1361. "in_modalities": [
  1362. "文本"
  1363. ],
  1364. "in_config_modalities": [],
  1365. "out_modalities": [
  1366. "文本"
  1367. ],
  1368. "modality_signature": "文本 → 文本",
  1369. "modality_signature_skipped": false,
  1370. "apply_shizhi": [
  1371. {
  1372. "category_id": 280,
  1373. "category_path": "/理念/事件/社会事件/人物故事/趣闻轶事",
  1374. "element": null,
  1375. "rationale": "故事剧情对应具体故事事件内容,现有树中以人物故事与趣闻轶事最为接近。"
  1376. },
  1377. {
  1378. "category_id": 1608,
  1379. "category_path": "/理念/知识/思想/概念范畴/时间过程",
  1380. "element": null,
  1381. "rationale": "情节发展强调事件推进过程,符合时间过程这一动态变化概念。"
  1382. }
  1383. ],
  1384. "apply_xingshi": [
  1385. {
  1386. "category_id": 139,
  1387. "category_path": "/架构/叙事",
  1388. "element": null,
  1389. "rationale": "叙事结构属于叙事层面的整体组织方式。"
  1390. },
  1391. {
  1392. "category_id": 878,
  1393. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  1394. "element": null,
  1395. "rationale": "节奏对应内容推进快慢与切换控制,最接近节奏控制。"
  1396. }
  1397. ],
  1398. "suggest_apply_to": "/架构/叙事/叙事组织/脉络铺排/结构编排/剧情节奏",
  1399. "body": "选择满意的选题后,继续对话让AI将创意展开成逻辑清晰剧情完整的故事",
  1400. "effects": [
  1401. {
  1402. "statement": "实现从创意到完整剧本的扩展",
  1403. "criteria": "生成的故事具有完整的起承转合,逻辑连贯,情节展开充分",
  1404. "judge_method": "llm",
  1405. "negative_examples": [
  1406. "故事情节跳跃不连贯",
  1407. "缺少关键情节环节",
  1408. "逻辑矛盾"
  1409. ]
  1410. }
  1411. ],
  1412. "tools": [
  1413. "AI对话工具"
  1414. ],
  1415. "control_target": [
  1416. "故事逻辑",
  1417. "剧情完整性"
  1418. ],
  1419. "artifact_type": "正向提示词",
  1420. "workflow_step_ref": {
  1421. "workflow_id": null,
  1422. "step_id": "s1"
  1423. },
  1424. "is_alternative_to": [],
  1425. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1426. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1427. },
  1428. {
  1429. "case_index": 3,
  1430. "fragment_id": "f_s1_2",
  1431. "action": "改写",
  1432. "action_mech": "",
  1433. "inputs": [
  1434. {
  1435. "modality": "文本",
  1436. "description": "初版故事剧本",
  1437. "relation": "[来源.s1O]"
  1438. },
  1439. {
  1440. "modality": "文本",
  1441. "description": "修改要求(加反转、调节奏等)",
  1442. "relation": "[来源.原始输入]"
  1443. }
  1444. ],
  1445. "outputs": [
  1446. {
  1447. "modality": "文本",
  1448. "description": "修改后的故事剧本",
  1449. "relation": "[去向.s2I]"
  1450. }
  1451. ],
  1452. "in_modalities": [
  1453. "文本"
  1454. ],
  1455. "in_config_modalities": [],
  1456. "out_modalities": [
  1457. "文本"
  1458. ],
  1459. "modality_signature": "文本 → 文本",
  1460. "modality_signature_skipped": false,
  1461. "apply_shizhi": [
  1462. {
  1463. "category_id": 1608,
  1464. "category_path": "/理念/知识/思想/概念范畴/时间过程",
  1465. "element": null,
  1466. "rationale": "情节节奏强调情节推进中的时间快慢关系,可归入时间过程。"
  1467. }
  1468. ],
  1469. "apply_xingshi": [
  1470. {
  1471. "category_id": 4531,
  1472. "category_path": "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转",
  1473. "element": null,
  1474. "rationale": "故事反转最贴近叙事中的逻辑反转手法。"
  1475. },
  1476. {
  1477. "category_id": 878,
  1478. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  1479. "element": null,
  1480. "rationale": "叙事节奏在现有形式树中与节奏控制最接近。"
  1481. }
  1482. ],
  1483. "suggest_apply_to": "/架构/叙事/叙事技法/戏剧张力/反转/故事反转",
  1484. "body": "不满意随时修改,加反转、调节奏,直到满意为止",
  1485. "effects": [
  1486. {
  1487. "statement": "实现剧本按需求迭代优化",
  1488. "criteria": "剧本根据用户反馈进行调整,反转更明显或节奏更合理",
  1489. "judge_method": "llm",
  1490. "negative_examples": [
  1491. "修改后未体现用户要求",
  1492. "修改破坏了原有逻辑"
  1493. ]
  1494. }
  1495. ],
  1496. "tools": [
  1497. "AI对话工具"
  1498. ],
  1499. "control_target": [
  1500. "故事节奏",
  1501. "反转设计"
  1502. ],
  1503. "artifact_type": "正向提示词",
  1504. "workflow_step_ref": {
  1505. "workflow_id": null,
  1506. "step_id": "s1"
  1507. },
  1508. "is_alternative_to": [],
  1509. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1510. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1511. },
  1512. {
  1513. "case_index": 3,
  1514. "fragment_id": "f_s2_0",
  1515. "action": "生成",
  1516. "action_mech": "",
  1517. "inputs": [
  1518. {
  1519. "modality": "文本",
  1520. "description": "故事剧本内容",
  1521. "relation": "[来源.s1O]"
  1522. }
  1523. ],
  1524. "outputs": [
  1525. {
  1526. "modality": "文本",
  1527. "description": "场景的AI绘画提示词",
  1528. "relation": "[去向.s2I]"
  1529. }
  1530. ],
  1531. "in_modalities": [
  1532. "文本"
  1533. ],
  1534. "in_config_modalities": [],
  1535. "out_modalities": [
  1536. "文本"
  1537. ],
  1538. "modality_signature": "文本 → 文本",
  1539. "modality_signature_skipped": false,
  1540. "apply_shizhi": [
  1541. {
  1542. "category_id": 1281,
  1543. "category_path": "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述",
  1544. "element": null,
  1545. "rationale": "场景对应空间场所的描述性内容,场景描述是最直接映射。"
  1546. },
  1547. {
  1548. "category_id": 20791,
  1549. "category_path": "/表象/视觉/画面/后期/情绪意境/场景氛围",
  1550. "element": null,
  1551. "rationale": "环境氛围直接对应场景整体氛围感受。"
  1552. }
  1553. ],
  1554. "apply_xingshi": [
  1555. {
  1556. "category_id": 1816,
  1557. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  1558. "element": null,
  1559. "rationale": "场景构成涉及画面空间布局与组织,现有树中动态叙事构图最接近场景组织形式。"
  1560. },
  1561. {
  1562. "category_id": 1435,
  1563. "category_path": "/架构/创意/创意表现",
  1564. "element": null,
  1565. "rationale": "氛围营造属于整体审美与表现策略,适合落在创意表现这一较粗形式类。"
  1566. }
  1567. ],
  1568. "suggest_apply_to": "/表象/视觉/空间/空间场所/生活场景/场景氛围",
  1569. "body": "基于剧本让AI生成场景(废弃医院地下室、监控室)的AI绘画提示词",
  1570. "effects": [
  1571. {
  1572. "statement": "实现场景描述到绘画提示词的转换",
  1573. "criteria": "生成的提示词能准确描述剧本中的场景特征和氛围",
  1574. "judge_method": "llm",
  1575. "negative_examples": [
  1576. "提示词与剧本场景不符",
  1577. "缺少关键场景元素描述"
  1578. ]
  1579. }
  1580. ],
  1581. "tools": [
  1582. "AI对话工具"
  1583. ],
  1584. "control_target": [
  1585. "场景",
  1586. "氛围"
  1587. ],
  1588. "artifact_type": "正向提示词",
  1589. "workflow_step_ref": {
  1590. "workflow_id": null,
  1591. "step_id": "s2"
  1592. },
  1593. "is_alternative_to": [],
  1594. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1595. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1596. },
  1597. {
  1598. "case_index": 3,
  1599. "fragment_id": "f_s2_1",
  1600. "action": "生成",
  1601. "action_mech": "",
  1602. "inputs": [
  1603. {
  1604. "modality": "文本",
  1605. "description": "场景的AI绘画提示词",
  1606. "relation": "[来源.s2O]"
  1607. }
  1608. ],
  1609. "outputs": [
  1610. {
  1611. "modality": "图片",
  1612. "description": "场景图",
  1613. "relation": "[去向.s3I]"
  1614. }
  1615. ],
  1616. "in_modalities": [
  1617. "文本"
  1618. ],
  1619. "in_config_modalities": [],
  1620. "out_modalities": [
  1621. "图片"
  1622. ],
  1623. "modality_signature": "文本 → 图片",
  1624. "modality_signature_skipped": false,
  1625. "apply_shizhi": [
  1626. {
  1627. "category_id": 1281,
  1628. "category_path": "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述",
  1629. "element": null,
  1630. "rationale": "场景与环境都指向空间场所本身,场景描述是最贴近的实质节点。"
  1631. },
  1632. {
  1633. "category_id": 20791,
  1634. "category_path": "/表象/视觉/画面/后期/情绪意境/场景氛围",
  1635. "element": null,
  1636. "rationale": "环境往往连带整体气氛感受,场景氛围可承接这类语义。"
  1637. }
  1638. ],
  1639. "apply_xingshi": [
  1640. {
  1641. "category_id": 1816,
  1642. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  1643. "element": null,
  1644. "rationale": "场景构成主要体现为空间与画面组织方式。"
  1645. },
  1646. {
  1647. "category_id": 1435,
  1648. "category_path": "/架构/创意/创意表现",
  1649. "element": null,
  1650. "rationale": "氛围与光线都偏向整体表现风格和审美处理,适合归入创意表现。"
  1651. }
  1652. ],
  1653. "suggest_apply_to": "/表象/视觉/空间/空间场所/生活场景/环境氛围",
  1654. "body": "使用AI绘画提示词生成场景图",
  1655. "effects": [
  1656. {
  1657. "statement": "实现符合剧本要求的场景图生成",
  1658. "criteria": "生成的场景图氛围感强,符合废弃医院地下室或监控室的视觉特征",
  1659. "judge_method": "vlm",
  1660. "negative_examples": [
  1661. "场景氛围不符合剧本设定",
  1662. "场景元素缺失或错误"
  1663. ]
  1664. }
  1665. ],
  1666. "tools": [
  1667. "LibTV"
  1668. ],
  1669. "control_target": [
  1670. "场景",
  1671. "氛围"
  1672. ],
  1673. "artifact_type": "场景参考图",
  1674. "workflow_step_ref": {
  1675. "workflow_id": null,
  1676. "step_id": "s2"
  1677. },
  1678. "is_alternative_to": [],
  1679. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1680. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1681. },
  1682. {
  1683. "case_index": 3,
  1684. "fragment_id": "f_s2_2",
  1685. "action": "生成",
  1686. "action_mech": "",
  1687. "inputs": [
  1688. {
  1689. "modality": "图片",
  1690. "description": "上传的真人照片",
  1691. "relation": "[来源.原始输入]"
  1692. }
  1693. ],
  1694. "outputs": [
  1695. {
  1696. "modality": "图片",
  1697. "description": "角色三视图",
  1698. "relation": "[去向.s2I]"
  1699. }
  1700. ],
  1701. "in_modalities": [
  1702. "图片"
  1703. ],
  1704. "in_config_modalities": [],
  1705. "out_modalities": [
  1706. "图片"
  1707. ],
  1708. "modality_signature": "图片 → 图片",
  1709. "modality_signature_skipped": false,
  1710. "apply_shizhi": [
  1711. {
  1712. "category_id": 1615,
  1713. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  1714. "element": null,
  1715. "rationale": "角色直接对应故事中的人物角色设定。"
  1716. }
  1717. ],
  1718. "apply_xingshi": [
  1719. {
  1720. "category_id": 1076,
  1721. "category_path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/创意造型",
  1722. "element": null,
  1723. "rationale": "角色造型属于人物外观与装扮层面的造型处理。"
  1724. }
  1725. ],
  1726. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/角色造型",
  1727. "body": "上传真人图片生成角色三视图",
  1728. "effects": [
  1729. {
  1730. "statement": "实现角色多角度视图的生成",
  1731. "criteria": "生成的三视图保持角色身份一致性,包含正面、侧面、背面等多个角度",
  1732. "judge_method": "vlm",
  1733. "negative_examples": [
  1734. "不同视图的角色特征不一致",
  1735. "缺少关键视图角度"
  1736. ]
  1737. }
  1738. ],
  1739. "tools": [
  1740. "LibTV"
  1741. ],
  1742. "control_target": [
  1743. "身份一致性",
  1744. "角色形象"
  1745. ],
  1746. "artifact_type": "角色参考图",
  1747. "workflow_step_ref": {
  1748. "workflow_id": null,
  1749. "step_id": "s2"
  1750. },
  1751. "is_alternative_to": [],
  1752. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1753. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1754. },
  1755. {
  1756. "case_index": 3,
  1757. "fragment_id": "f_s3_0",
  1758. "action": "生成",
  1759. "action_mech": "",
  1760. "inputs": [
  1761. {
  1762. "modality": "图片",
  1763. "description": "角色参考图",
  1764. "relation": "[来源.s2O]"
  1765. },
  1766. {
  1767. "modality": "图片",
  1768. "description": "场景参考图",
  1769. "relation": "[来源.s2O]"
  1770. },
  1771. {
  1772. "modality": "文本",
  1773. "description": "风格、角色、场景描述和剧本内容",
  1774. "relation": "[来源.s1O]"
  1775. }
  1776. ],
  1777. "outputs": [
  1778. {
  1779. "modality": "视频",
  1780. "description": "单段剧情视频(15秒内)",
  1781. "relation": "[去向.s4I]"
  1782. }
  1783. ],
  1784. "in_modalities": [
  1785. "图片",
  1786. "文本"
  1787. ],
  1788. "in_config_modalities": [],
  1789. "out_modalities": [
  1790. "视频"
  1791. ],
  1792. "modality_signature": "图片+文本 → 视频",
  1793. "modality_signature_skipped": false,
  1794. "apply_shizhi": [
  1795. {
  1796. "category_id": 1615,
  1797. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  1798. "element": null,
  1799. "rationale": "角色对应叙事中的人物角色设定。"
  1800. },
  1801. {
  1802. "category_id": 1281,
  1803. "category_path": "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述",
  1804. "element": null,
  1805. "rationale": "场景对应空间场所的描述内容。"
  1806. },
  1807. {
  1808. "category_id": 280,
  1809. "category_path": "/理念/事件/社会事件/人物故事/趣闻轶事",
  1810. "element": null,
  1811. "rationale": "剧情对应故事事件内容,现有树中人物故事类最接近。"
  1812. }
  1813. ],
  1814. "apply_xingshi": [
  1815. {
  1816. "category_id": 1816,
  1817. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  1818. "element": null,
  1819. "rationale": "镜头与叙事镜头组织最接近动态叙事构图方式。"
  1820. },
  1821. {
  1822. "category_id": 1473,
  1823. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/创意动作",
  1824. "element": null,
  1825. "rationale": "动作直接对应人物动作姿态的呈现形式。"
  1826. },
  1827. {
  1828. "category_id": 139,
  1829. "category_path": "/架构/叙事",
  1830. "element": null,
  1831. "rationale": "叙事属于整体内容组织和讲述方式。"
  1832. }
  1833. ],
  1834. "suggest_apply_to": "/架构/叙事/叙事演绎/角色场景剧情",
  1835. "body": "将角色和场景图片关联到Seedance 2.0视频模型;提示词中交代风格、角色、场景,复制剧本内容(单段控制在15秒内);根据剧情替换角色和场景参考图;提示词中加上不要字幕、不要背景音乐",
  1836. "effects": [
  1837. {
  1838. "statement": "实现基于角色和场景的剧情视频生成",
  1839. "criteria": "生成的视频时长在15秒内,角色和场景与参考图一致,剧情内容符合提示词描述,无字幕和背景音乐",
  1840. "judge_method": "vlm",
  1841. "negative_examples": [
  1842. "视频时长超过15秒",
  1843. "角色或场景与参考图不符",
  1844. "包含字幕或背景音乐"
  1845. ]
  1846. },
  1847. {
  1848. "statement": "实现角色身份在视频中的一致性保持",
  1849. "criteria": "视频中的角色外观特征与参考图保持一致",
  1850. "judge_method": "vlm",
  1851. "negative_examples": [
  1852. "角色外观在视频中发生变化",
  1853. "角色特征与参考图明显不符"
  1854. ]
  1855. }
  1856. ],
  1857. "tools": [
  1858. "LibTV",
  1859. "Seedance 2.0"
  1860. ],
  1861. "control_target": [
  1862. "身份一致性",
  1863. "场景",
  1864. "剧情内容"
  1865. ],
  1866. "artifact_type": "",
  1867. "workflow_step_ref": {
  1868. "workflow_id": null,
  1869. "step_id": "s3"
  1870. },
  1871. "is_alternative_to": [],
  1872. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1873. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1874. },
  1875. {
  1876. "case_index": 3,
  1877. "fragment_id": "f_s3_1",
  1878. "action": "生成",
  1879. "action_mech": "",
  1880. "inputs": [
  1881. {
  1882. "modality": "音频",
  1883. "description": "参考音频",
  1884. "relation": "[来源.原始输入]"
  1885. }
  1886. ],
  1887. "outputs": [
  1888. {
  1889. "modality": "音频",
  1890. "description": "复刻的角色配音",
  1891. "relation": "[去向.s3O]"
  1892. }
  1893. ],
  1894. "in_modalities": [
  1895. "音频"
  1896. ],
  1897. "in_config_modalities": [],
  1898. "out_modalities": [
  1899. "音频"
  1900. ],
  1901. "modality_signature": "音频 → 音频",
  1902. "modality_signature_skipped": false,
  1903. "apply_shizhi": [
  1904. {
  1905. "category_id": 1615,
  1906. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  1907. "element": null,
  1908. "rationale": "角色声音本质上服务于叙事中的角色设定与角色塑造。"
  1909. }
  1910. ],
  1911. "apply_xingshi": [
  1912. {
  1913. "category_id": 2012,
  1914. "category_path": "/呈现/听觉/语音/表达形式/风格化解说/叙事手法",
  1915. "element": null,
  1916. "rationale": "音色属于语音呈现层面的表达方式,树中最接近的是语音的风格化表达手法。"
  1917. }
  1918. ],
  1919. "suggest_apply_to": "/呈现/听觉/语音/角色塑造/角色音色",
  1920. "body": "上传参考音频让Seedance 2.0复刻音色",
  1921. "effects": [
  1922. {
  1923. "statement": "实现角色配音音色的一致性",
  1924. "criteria": "生成的配音音色与参考音频相似,角色说话时音色保持一致",
  1925. "judge_method": "human",
  1926. "negative_examples": [
  1927. "配音音色与参考音频差异明显",
  1928. "同一角色在不同片段音色不一致"
  1929. ]
  1930. }
  1931. ],
  1932. "tools": [
  1933. "Seedance 2.0"
  1934. ],
  1935. "control_target": [
  1936. "音色"
  1937. ],
  1938. "artifact_type": "",
  1939. "workflow_step_ref": {
  1940. "workflow_id": null,
  1941. "step_id": "s3"
  1942. },
  1943. "is_alternative_to": [
  1944. "f_s3_2"
  1945. ],
  1946. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  1947. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  1948. },
  1949. {
  1950. "case_index": 3,
  1951. "fragment_id": "f_s4_0",
  1952. "action": "剪辑",
  1953. "action_mech": "",
  1954. "inputs": [
  1955. {
  1956. "modality": "视频",
  1957. "description": "所有视频片段",
  1958. "relation": "[来源.s3O]"
  1959. }
  1960. ],
  1961. "outputs": [
  1962. {
  1963. "modality": "视频",
  1964. "description": "完整短剧成片",
  1965. "relation": "[去向.最终成品]"
  1966. }
  1967. ],
  1968. "in_modalities": [
  1969. "视频"
  1970. ],
  1971. "in_config_modalities": [],
  1972. "out_modalities": [
  1973. "视频"
  1974. ],
  1975. "modality_signature": "视频 → 视频",
  1976. "modality_signature_skipped": false,
  1977. "apply_shizhi": [
  1978. {
  1979. "category_id": 1615,
  1980. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  1981. "element": null,
  1982. "rationale": "完整故事通常围绕角色展开,树中最接近故事承载对象的是叙事角色。"
  1983. }
  1984. ],
  1985. "apply_xingshi": [
  1986. {
  1987. "category_id": 139,
  1988. "category_path": "/架构/叙事",
  1989. "element": null,
  1990. "rationale": "完整故事直接对应整体叙事组织,是最贴近的形式主路径。"
  1991. },
  1992. {
  1993. "category_id": 878,
  1994. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  1995. "element": null,
  1996. "rationale": "叙事节奏与转场都属于剪辑层面的节奏控制与组接处理。"
  1997. },
  1998. {
  1999. "category_id": 1953,
  2000. "category_path": "/呈现/听觉/配乐/节奏特征",
  2001. "element": null,
  2002. "rationale": "配乐是该故事呈现中的独立形式维度,树中有直接对应的听觉节奏特征节点。"
  2003. }
  2004. ],
  2005. "suggest_apply_to": "/架构/叙事/叙事组织/完整故事/节奏转场",
  2006. "body": "将所有视频片段导入剪辑工具,添加背景乐、字幕等元素,调整细节",
  2007. "effects": [
  2008. {
  2009. "statement": "实现多个视频片段的连贯组合",
  2010. "criteria": "所有片段按剧情顺序拼接,转场自然,整体叙事流畅",
  2011. "judge_method": "vlm",
  2012. "negative_examples": [
  2013. "片段顺序错乱",
  2014. "转场生硬",
  2015. "叙事不连贯"
  2016. ]
  2017. },
  2018. {
  2019. "statement": "实现视频的完整性增强",
  2020. "criteria": "成片包含背景音乐、字幕等必要元素,观感完整",
  2021. "judge_method": "vlm",
  2022. "negative_examples": [
  2023. "缺少背景音乐",
  2024. "缺少字幕",
  2025. "音画不同步"
  2026. ]
  2027. }
  2028. ],
  2029. "tools": [
  2030. "剪辑工具"
  2031. ],
  2032. "control_target": [
  2033. "叙事连贯性",
  2034. "观感完整性"
  2035. ],
  2036. "artifact_type": "",
  2037. "workflow_step_ref": {
  2038. "workflow_id": null,
  2039. "step_id": "s4"
  2040. },
  2041. "is_alternative_to": [],
  2042. "case_title": "真人模式解禁!LibTV & Seedance2.0 AI 短剧保姆级教程,5分钟上手!",
  2043. "case_url": "https://mp.weixin.qq.com/s?__biz=MzI3NzkxNzM2NQ==&idx=1&mid=2247490074&sn=50765c9d9d31c4fdf2e5dbd6c8d63ce5"
  2044. },
  2045. {
  2046. "case_index": 4,
  2047. "fragment_id": "f_s1_0",
  2048. "action": "生成",
  2049. "action_mech": "",
  2050. "inputs": [
  2051. {
  2052. "modality": "文本",
  2053. "description": "生成指令",
  2054. "relation": "[来源.原始输入]"
  2055. },
  2056. {
  2057. "modality": "参数",
  2058. "description": "参数配置",
  2059. "relation": "[来源.原始输入]"
  2060. }
  2061. ],
  2062. "outputs": [
  2063. {
  2064. "modality": "图片",
  2065. "description": "角色参考图",
  2066. "relation": "[去向.s3I]"
  2067. }
  2068. ],
  2069. "in_modalities": [
  2070. "文本"
  2071. ],
  2072. "in_config_modalities": [
  2073. "参数"
  2074. ],
  2075. "out_modalities": [
  2076. "图片"
  2077. ],
  2078. "modality_signature": "文本 → 图片",
  2079. "modality_signature_skipped": false,
  2080. "apply_shizhi": [
  2081. {
  2082. "category_id": 12871,
  2083. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  2084. "element": null,
  2085. "rationale": "港风少女角色设定的核心是人物角色身份与设定。"
  2086. },
  2087. {
  2088. "category_id": 15471,
  2089. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型",
  2090. "element": null,
  2091. "rationale": "港风少女同时包含鲜明的时代与文化风格造型特征。"
  2092. }
  2093. ],
  2094. "apply_xingshi": [
  2095. {
  2096. "category_id": 1058,
  2097. "category_path": "/呈现/视觉/视觉制作/实景拍摄",
  2098. "element": null,
  2099. "rationale": "白底棚拍属于真实摄影取材下的拍摄呈现方式。"
  2100. },
  2101. {
  2102. "category_id": 20052,
  2103. "category_path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/胶片色调",
  2104. "element": null,
  2105. "rationale": "复古胶片感直接对应胶片色调式的怀旧技术呈现。"
  2106. },
  2107. {
  2108. "category_id": 20056,
  2109. "category_path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/老照片风格",
  2110. "element": null,
  2111. "rationale": "港风复古视觉常伴随旧时代照片式的整体年代感。"
  2112. }
  2113. ],
  2114. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定/港风少女",
  2115. "body": "少女角色普通版提示词:亚洲甜美清纯少女、双马尾、夏天碎花短睡裙、邵氏电影风、90年代港片写实、四视图一致、白底16:9、高细节复古质感。",
  2116. "effects": [
  2117. {
  2118. "statement": "实现少女角色多视图一致设定",
  2119. "criteria": "同一张图内包含特写、正视全身、右侧全身、后视全身,且发型面容服装体型保持一致",
  2120. "judge_method": "vlm",
  2121. "negative_examples": [
  2122. "四个视图人物不是同一外观",
  2123. "缺少任一视图或出现裁切"
  2124. ]
  2125. }
  2126. ],
  2127. "tools": [
  2128. "gpt-image2",
  2129. "豆包",
  2130. "gemini",
  2131. "Nano Banana2",
  2132. "即梦"
  2133. ],
  2134. "control_target": [
  2135. "主体",
  2136. "身份一致性",
  2137. "姿势",
  2138. "构图",
  2139. "光线",
  2140. "质感"
  2141. ],
  2142. "artifact_type": "角色参考图",
  2143. "workflow_step_ref": {
  2144. "workflow_id": null,
  2145. "step_id": "s1"
  2146. },
  2147. "is_alternative_to": [
  2148. "f_s1_1"
  2149. ],
  2150. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2151. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2152. },
  2153. {
  2154. "case_index": 4,
  2155. "fragment_id": "f_s1_1",
  2156. "action": "生成",
  2157. "action_mech": "",
  2158. "inputs": [
  2159. {
  2160. "modality": "文本",
  2161. "description": "生成指令",
  2162. "relation": "[来源.原始输入]"
  2163. },
  2164. {
  2165. "modality": "参数",
  2166. "description": "参数配置",
  2167. "relation": "[来源.原始输入]"
  2168. }
  2169. ],
  2170. "outputs": [
  2171. {
  2172. "modality": "图片",
  2173. "description": "角色参考图",
  2174. "relation": "[去向.s3I]"
  2175. }
  2176. ],
  2177. "in_modalities": [
  2178. "文本"
  2179. ],
  2180. "in_config_modalities": [
  2181. "参数"
  2182. ],
  2183. "out_modalities": [
  2184. "图片"
  2185. ],
  2186. "modality_signature": "文本 → 图片",
  2187. "modality_signature_skipped": false,
  2188. "apply_shizhi": [
  2189. {
  2190. "category_id": 12871,
  2191. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  2192. "element": null,
  2193. "rationale": "港风少女角色设定本质上是对人物身份与角色属性的定义。"
  2194. },
  2195. {
  2196. "category_id": 15471,
  2197. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型",
  2198. "element": null,
  2199. "rationale": "港风少女也体现为特定风格化外观造型。"
  2200. }
  2201. ],
  2202. "apply_xingshi": [
  2203. {
  2204. "category_id": 19152,
  2205. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局/人物姿态",
  2206. "element": null,
  2207. "rationale": "体态定向控制主要落在人物姿态作为构图与呈现重点。"
  2208. },
  2209. {
  2210. "category_id": 386,
  2211. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态",
  2212. "element": null,
  2213. "rationale": "体态控制属于人物动作姿态层面的形象塑造。"
  2214. },
  2215. {
  2216. "category_id": 1814,
  2217. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局",
  2218. "element": null,
  2219. "rationale": "四视图角色板更接近围绕人物展开的版式与布局组织。"
  2220. }
  2221. ],
  2222. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定/港风少女",
  2223. "body": "少女角色有肉感版提示词:在普通版基础上增加上半身有肉感与腿部线条描述,其余四视图一致、白底、16:9等约束不变。",
  2224. "effects": [
  2225. {
  2226. "statement": "实现少女体态特征的定向调整",
  2227. "criteria": "整体仍保持清纯港风前提下,上半身与腿部体态符合设定且四视图一致",
  2228. "judge_method": "vlm",
  2229. "negative_examples": [
  2230. "体态特征与设定不符",
  2231. "风格偏离港片写实"
  2232. ]
  2233. }
  2234. ],
  2235. "tools": [
  2236. "Nano Banana2",
  2237. "gpt-image2",
  2238. "gemini"
  2239. ],
  2240. "control_target": [
  2241. "主体",
  2242. "姿势",
  2243. "质感"
  2244. ],
  2245. "artifact_type": "角色参考图",
  2246. "workflow_step_ref": {
  2247. "workflow_id": null,
  2248. "step_id": "s1"
  2249. },
  2250. "is_alternative_to": [
  2251. "f_s1_0"
  2252. ],
  2253. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2254. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2255. },
  2256. {
  2257. "case_index": 4,
  2258. "fragment_id": "f_s1_2",
  2259. "action": "生成",
  2260. "action_mech": "",
  2261. "inputs": [
  2262. {
  2263. "modality": "文本",
  2264. "description": "生成指令",
  2265. "relation": "[来源.原始输入]"
  2266. }
  2267. ],
  2268. "outputs": [
  2269. {
  2270. "modality": "图片",
  2271. "description": "角色参考图",
  2272. "relation": "[去向.s3I]"
  2273. }
  2274. ],
  2275. "in_modalities": [
  2276. "文本"
  2277. ],
  2278. "in_config_modalities": [],
  2279. "out_modalities": [
  2280. "图片"
  2281. ],
  2282. "modality_signature": "文本 → 图片",
  2283. "modality_signature_skipped": false,
  2284. "apply_shizhi": [
  2285. {
  2286. "category_id": 10971,
  2287. "category_path": "/表象/视觉/实体/动物/虚拟角色/拟人卡通",
  2288. "element": null,
  2289. "rationale": "拟人化橘猫角色设定直接属于拟人化动物虚拟角色。"
  2290. },
  2291. {
  2292. "category_id": 12871,
  2293. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  2294. "element": null,
  2295. "rationale": "作为角色设定,其内容也涉及角色身份与人设定义。"
  2296. }
  2297. ],
  2298. "apply_xingshi": [
  2299. {
  2300. "category_id": 1999,
  2301. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格",
  2302. "element": null,
  2303. "rationale": "复古电影风直接对应电影化视觉艺术风格。"
  2304. },
  2305. {
  2306. "category_id": 204,
  2307. "category_path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古",
  2308. "element": null,
  2309. "rationale": "复古电影风同时体现怀旧复古的整体氛围。"
  2310. },
  2311. {
  2312. "category_id": 1814,
  2313. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局",
  2314. "element": null,
  2315. "rationale": "白底单体角色图主要是围绕单一主体的人物式布局呈现。"
  2316. }
  2317. ],
  2318. "suggest_apply_to": "/表象/视觉/实体/动物/虚拟角色/拟人卡通/橘猫角色",
  2319. "body": "橘猫角色提示词:生成橘猫,表情贱、无辜、嘴硬,白色背景,邵氏电影风格。",
  2320. "effects": [
  2321. {
  2322. "statement": "实现猫角色表情与风格定型",
  2323. "criteria": "猫的神态同时体现无辜与嘴硬感,整体画面具备复古邵氏风",
  2324. "judge_method": "vlm",
  2325. "negative_examples": [
  2326. "猫表情普通无戏剧感",
  2327. "背景或风格不符合设定"
  2328. ]
  2329. }
  2330. ],
  2331. "tools": [
  2332. "gpt-image2",
  2333. "豆包",
  2334. "gemini",
  2335. "即梦"
  2336. ],
  2337. "control_target": [
  2338. "主体",
  2339. "场景",
  2340. "质感"
  2341. ],
  2342. "artifact_type": "角色参考图",
  2343. "workflow_step_ref": {
  2344. "workflow_id": null,
  2345. "step_id": "s1"
  2346. },
  2347. "is_alternative_to": [],
  2348. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2349. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2350. },
  2351. {
  2352. "case_index": 4,
  2353. "fragment_id": "f_s2_0",
  2354. "action": "生成",
  2355. "action_mech": "",
  2356. "inputs": [
  2357. {
  2358. "modality": "文本",
  2359. "description": "生成指令",
  2360. "relation": "[来源.原始输入]"
  2361. }
  2362. ],
  2363. "outputs": [
  2364. {
  2365. "modality": "文本",
  2366. "description": "编辑指令",
  2367. "relation": "[去向.s3I]"
  2368. }
  2369. ],
  2370. "in_modalities": [
  2371. "文本"
  2372. ],
  2373. "in_config_modalities": [],
  2374. "out_modalities": [
  2375. "文本"
  2376. ],
  2377. "modality_signature": "文本 → 文本",
  2378. "modality_signature_skipped": false,
  2379. "apply_shizhi": [
  2380. {
  2381. "category_id": 1194,
  2382. "category_path": "/表象/视觉/行为/人际互动/关系行为/冲突对抗",
  2383. "element": null,
  2384. "rationale": "猫与少女对峙剧情的核心是双方之间的冲突对抗关系。"
  2385. },
  2386. {
  2387. "category_id": 21651,
  2388. "category_path": "/表象/视觉/实体/动物/宠物/宠物猫",
  2389. "element": null,
  2390. "rationale": "剧情中的一方主体明确是猫。"
  2391. },
  2392. {
  2393. "category_id": 976,
  2394. "category_path": "/表象/视觉/实体/人物/个体/身份角色",
  2395. "element": null,
  2396. "rationale": "剧情中的另一方主体是具有人物身份的少女。"
  2397. }
  2398. ],
  2399. "apply_xingshi": [
  2400. {
  2401. "category_id": 878,
  2402. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  2403. "element": null,
  2404. "rationale": "15秒短剧节奏主要体现为剪辑速度和节奏控制。"
  2405. },
  2406. {
  2407. "category_id": 2251,
  2408. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念",
  2409. "element": null,
  2410. "rationale": "短时长短剧强调整体节奏概念与节拍安排。"
  2411. },
  2412. {
  2413. "category_id": 4174,
  2414. "category_path": "/架构/叙事/叙事技法/戏剧张力/冲突/情节冲突",
  2415. "element": null,
  2416. "rationale": "对峙剧情通常通过情节冲突来组织时间轴分镜。"
  2417. }
  2418. ],
  2419. "suggest_apply_to": "/表象/视觉/行为/人际互动/关系行为/冲突对抗/猫少女对峙",
  2420. "body": "直接向模型描述目标:邵氏风格、猫与少女搞笑冲突、15秒时长、前3秒强钩子、正经到胡说再反转,输出带时间轴分镜与台词音效。",
  2421. "effects": [
  2422. {
  2423. "statement": "实现可直接投喂视频模型的短视频分镜脚本",
  2424. "criteria": "脚本含明确时间段、镜头动作、对白与音效,并覆盖开场冲突与结尾反转",
  2425. "judge_method": "llm",
  2426. "negative_examples": [
  2427. "只有剧情梗概没有分镜时间轴",
  2428. "缺少音效或台词层"
  2429. ]
  2430. }
  2431. ],
  2432. "tools": [
  2433. "gpt-image2"
  2434. ],
  2435. "control_target": [
  2436. "场景",
  2437. "构图",
  2438. "节奏"
  2439. ],
  2440. "artifact_type": "结构化提示词",
  2441. "workflow_step_ref": {
  2442. "workflow_id": null,
  2443. "step_id": "s2"
  2444. },
  2445. "is_alternative_to": [
  2446. "f_s2_1"
  2447. ],
  2448. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2449. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2450. },
  2451. {
  2452. "case_index": 4,
  2453. "fragment_id": "f_s2_1",
  2454. "action": "改写",
  2455. "action_mech": "",
  2456. "inputs": [
  2457. {
  2458. "modality": "文本",
  2459. "description": "参考素材",
  2460. "relation": "[来源.原始输入]"
  2461. },
  2462. {
  2463. "modality": "文本",
  2464. "description": "约束条件",
  2465. "relation": "[来源.原始输入]"
  2466. }
  2467. ],
  2468. "outputs": [
  2469. {
  2470. "modality": "文本",
  2471. "description": "编辑指令",
  2472. "relation": "[去向.s3I]"
  2473. }
  2474. ],
  2475. "in_modalities": [
  2476. "文本"
  2477. ],
  2478. "in_config_modalities": [],
  2479. "out_modalities": [
  2480. "文本"
  2481. ],
  2482. "modality_signature": "文本 → 文本",
  2483. "modality_signature_skipped": false,
  2484. "apply_shizhi": [
  2485. {
  2486. "category_id": 3016,
  2487. "category_path": "/表象/视觉/行为/表演行为/综艺表演/喜剧表演/情景剧",
  2488. "element": null,
  2489. "rationale": "爆款短剧剧情改编最接近具体场景化短剧表演内容。"
  2490. }
  2491. ],
  2492. "apply_xingshi": [
  2493. {
  2494. "category_id": 1028,
  2495. "category_path": "/架构/叙事/叙事组织/角色书写",
  2496. "element": null,
  2497. "rationale": "剧情改编中的分段对白常服务于角色表达与叙事组织。"
  2498. },
  2499. {
  2500. "category_id": 878,
  2501. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  2502. "element": null,
  2503. "rationale": "镜头推拉与停顿设计主要体现为镜头节奏控制。"
  2504. },
  2505. {
  2506. "category_id": 2251,
  2507. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念",
  2508. "element": null,
  2509. "rationale": "停顿设计属于对整体节奏概念的具体调度。"
  2510. }
  2511. ],
  2512. "suggest_apply_to": "/架构/叙事/叙事组织/短剧改编",
  2513. "body": "先提取爆款视频文案与时长,再让模型分析并仿写同风格分镜;示例给出gemini版总设定与5段镜头脚本。",
  2514. "effects": [
  2515. {
  2516. "statement": "实现对爆款结构的同型迁移",
  2517. "criteria": "新脚本保留爆款的冲突起手、对峙推进与反转收束,同时替换为当前剧情内容",
  2518. "judge_method": "llm",
  2519. "negative_examples": [
  2520. "仅复述原文案未形成新分镜",
  2521. "节奏结构与爆款模式脱节"
  2522. ]
  2523. }
  2524. ],
  2525. "tools": [
  2526. "gemini",
  2527. "豆包"
  2528. ],
  2529. "control_target": [
  2530. "节奏",
  2531. "构图",
  2532. "场景"
  2533. ],
  2534. "artifact_type": "结构化提示词",
  2535. "workflow_step_ref": {
  2536. "workflow_id": null,
  2537. "step_id": "s2"
  2538. },
  2539. "is_alternative_to": [
  2540. "f_s2_0"
  2541. ],
  2542. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2543. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2544. },
  2545. {
  2546. "case_index": 4,
  2547. "fragment_id": "f_s3_0",
  2548. "action": "生成",
  2549. "action_mech": "",
  2550. "inputs": [
  2551. {
  2552. "modality": "文本",
  2553. "description": "编辑指令",
  2554. "relation": "[来源.s2O]"
  2555. },
  2556. {
  2557. "modality": "图片",
  2558. "description": "参考素材",
  2559. "relation": "[来源.s1O]"
  2560. },
  2561. {
  2562. "modality": "图片",
  2563. "description": "参考素材",
  2564. "relation": "[来源.用户上传]"
  2565. },
  2566. {
  2567. "modality": "模型",
  2568. "description": "模型资源",
  2569. "relation": "[来源.外部资源]"
  2570. }
  2571. ],
  2572. "outputs": [
  2573. {
  2574. "modality": "视频",
  2575. "description": "成品",
  2576. "relation": "[去向.最终成品]"
  2577. }
  2578. ],
  2579. "in_modalities": [
  2580. "文本",
  2581. "图片"
  2582. ],
  2583. "in_config_modalities": [
  2584. "模型"
  2585. ],
  2586. "out_modalities": [
  2587. "视频"
  2588. ],
  2589. "modality_signature": "文本+图片 → 视频",
  2590. "modality_signature_skipped": false,
  2591. "apply_shizhi": [
  2592. {
  2593. "category_id": 1194,
  2594. "category_path": "/表象/视觉/行为/人际互动/关系行为/冲突对抗",
  2595. "element": null,
  2596. "rationale": "猫与少女冲突短剧的核心内容是人物与动物之间的对抗情境。"
  2597. },
  2598. {
  2599. "category_id": 21651,
  2600. "category_path": "/表象/视觉/实体/动物/宠物/宠物猫",
  2601. "element": null,
  2602. "rationale": "冲突短剧中的关键主体之一是猫。"
  2603. },
  2604. {
  2605. "category_id": 976,
  2606. "category_path": "/表象/视觉/实体/人物/个体/身份角色",
  2607. "element": null,
  2608. "rationale": "另一关键主体是具备角色身份的少女。"
  2609. }
  2610. ],
  2611. "apply_xingshi": [
  2612. {
  2613. "category_id": 20051,
  2614. "category_path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/复古色调",
  2615. "element": null,
  2616. "rationale": "邵氏复古影调首先体现为明显的复古色调处理。"
  2617. },
  2618. {
  2619. "category_id": 1999,
  2620. "category_path": "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格",
  2621. "element": null,
  2622. "rationale": "邵氏影调属于电影化视觉风格范畴。"
  2623. },
  2624. {
  2625. "category_id": 878,
  2626. "category_path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  2627. "element": null,
  2628. "rationale": "快节奏推拉镜头主要落在镜头切换与节奏控制。"
  2629. }
  2630. ],
  2631. "suggest_apply_to": "/表象/视觉/行为/人际互动/关系行为/冲突对抗/猫少女短剧植入",
  2632. "body": "在即梦中选择seedance2.0,粘贴分镜脚本并在对应段落引用少女角色图、猫角色图和客户产品图后提交生成视频。",
  2633. "effects": [
  2634. {
  2635. "statement": "实现角色与产品共同入镜的视频生成",
  2636. "criteria": "成片中可识别少女与猫的既定形象,并出现产品相关镜头且剧情按分镜推进",
  2637. "judge_method": "vlm",
  2638. "negative_examples": [
  2639. "角色外观漂移明显",
  2640. "产品未出现或出现位置错误"
  2641. ]
  2642. }
  2643. ],
  2644. "tools": [
  2645. "即梦",
  2646. "seedance2.0"
  2647. ],
  2648. "control_target": [
  2649. "主体",
  2650. "身份一致性",
  2651. "场景",
  2652. "构图"
  2653. ],
  2654. "artifact_type": "静态图",
  2655. "workflow_step_ref": {
  2656. "workflow_id": null,
  2657. "step_id": "s3"
  2658. },
  2659. "is_alternative_to": [],
  2660. "case_title": "偷摸发财!全流程拆解百万播放爆款邵氏猫咪与纯欲少女系列狂揽12万粉,小白也可以完美复刻AI视频",
  2661. "case_url": "https://mp.weixin.qq.com/s?__biz=Mzg2NjI1MjU1OA==&idx=1&mid=2247506322&sn=3188aa504cacade2888ed34f00ad08e8"
  2662. },
  2663. {
  2664. "case_index": 5,
  2665. "fragment_id": "f_s1_0",
  2666. "action": "生成",
  2667. "action_mech": "",
  2668. "inputs": [
  2669. {
  2670. "modality": "文本",
  2671. "description": "生成三联面部特写组图的生成指令,包含构图、布光、背景、角度、一致性等详细要求",
  2672. "relation": "[来源.原始输入]"
  2673. }
  2674. ],
  2675. "outputs": [
  2676. {
  2677. "modality": "图片",
  2678. "description": "同一人物三视角并排面部特写三联图,用于绕过Seedance真人人脸限制并保持人物一致性",
  2679. "relation": "[去向.s2I]"
  2680. }
  2681. ],
  2682. "in_modalities": [
  2683. "文本"
  2684. ],
  2685. "in_config_modalities": [],
  2686. "out_modalities": [
  2687. "图片"
  2688. ],
  2689. "modality_signature": "文本 → 图片",
  2690. "modality_signature_skipped": false,
  2691. "apply_shizhi": [
  2692. {
  2693. "category_id": 757,
  2694. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象",
  2695. "element": null,
  2696. "rationale": "AI美女人物的核心对象是技术生成的虚拟人物形象。"
  2697. },
  2698. {
  2699. "category_id": 21291,
  2700. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/肖像类型/女性肖像",
  2701. "element": null,
  2702. "rationale": "美女人物明确指向女性主体肖像。"
  2703. },
  2704. {
  2705. "category_id": 7371,
  2706. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/身体部位/面部",
  2707. "element": null,
  2708. "rationale": "多角度面部特写的内容核心落在人物面部。"
  2709. }
  2710. ],
  2711. "apply_xingshi": [
  2712. {
  2713. "category_id": 20332,
  2714. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/组合关系/并列叠加",
  2715. "element": null,
  2716. "rationale": "三联并排构图对应多个画面并列排布的组合关系。"
  2717. },
  2718. {
  2719. "category_id": 19336,
  2720. "category_path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/光影表现/光源特征/舞台光",
  2721. "element": null,
  2722. "rationale": "影棚布光属于受控光源塑造的布光方式,最接近舞台光类光源表现。"
  2723. },
  2724. {
  2725. "category_id": 7076,
  2726. "category_path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感",
  2727. "element": null,
  2728. "rationale": "高清写实质感直接对应强调真实还原的画质与材质表现。"
  2729. }
  2730. ],
  2731. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象/女性肖像/面部特写",
  2732. "body": "在豆包中输入提示词,生成同一人物头部颈部三联并排面部特写,三图比例、构图、布光完全统一,用两条纤细等距竖线分隔,简约杂志排版风格。左侧正面直视镜头,中间左脸45°四分之三侧面,右侧右脸90°标准纯侧面。统一替换为高品质影棚质感灰色无缝纹理背景,带细腻摄影颗粒感,专业影棚布光,皮肤质感真实自然,人物面部特征与参考图完全一致,整体为高清写实影棚试镜照效果。",
  2733. "effects": [
  2734. {
  2735. "statement": "实现同一人物多角度面部一致性呈现",
  2736. "criteria": "三张图中人物脸部特征、发型、造型高度一致,可识别为同一人",
  2737. "judge_method": "vlm",
  2738. "negative_examples": [
  2739. "三张图人物面部特征明显不同,无法判断为同一人"
  2740. ]
  2741. },
  2742. {
  2743. "statement": "实现绕过Seedance真人人脸检测限制的参考图准备",
  2744. "criteria": "生成图为AI绘制风格,不触发平台真人人脸上传限制,可正常用于图生视频输入",
  2745. "judge_method": "human",
  2746. "negative_examples": [
  2747. "上传后平台提示真人人脸限制,无法进行图生视频"
  2748. ]
  2749. },
  2750. {
  2751. "statement": "实现影棚质感高清写实人物图片",
  2752. "criteria": "背景为灰色无缝纹理,布光柔和均匀,眼部细节清晰,皮肤质感自然无过度磨皮",
  2753. "judge_method": "vlm",
  2754. "negative_examples": [
  2755. "背景杂乱有环境元素",
  2756. "皮肤过度磨皮失真",
  2757. "布光不均有明显曝光问题"
  2758. ]
  2759. }
  2760. ],
  2761. "tools": [
  2762. "豆包"
  2763. ],
  2764. "control_target": [
  2765. "身份一致性",
  2766. "脸部特征",
  2767. "构图",
  2768. "光线",
  2769. "背景",
  2770. "画质"
  2771. ],
  2772. "artifact_type": "角色参考图",
  2773. "workflow_step_ref": {
  2774. "workflow_id": null,
  2775. "step_id": "s1"
  2776. },
  2777. "is_alternative_to": [],
  2778. "case_title": "3天涨万粉,用豆包一键生成美女热舞视频,附提示词合集~",
  2779. "case_url": "https://mp.weixin.qq.com/s?__biz=MzY4NTIxMzI0NQ==&idx=1&mid=2247484433&sn=dc8b700e23a84a385ab98fe84902f7fa"
  2780. },
  2781. {
  2782. "case_index": 5,
  2783. "fragment_id": "f_s2_0",
  2784. "action": "生成",
  2785. "action_mech": "",
  2786. "inputs": [
  2787. {
  2788. "modality": "图片",
  2789. "description": "人物三联面部特写参考图,作为图生视频的人物一致性参考素材",
  2790. "relation": "[来源.s1O]"
  2791. },
  2792. {
  2793. "modality": "文本",
  2794. "description": "快节奏热舞动作提示词,描述舞蹈风格、动作细节、镜头设定、画质要求",
  2795. "relation": "[来源.原始输入]"
  2796. }
  2797. ],
  2798. "outputs": [
  2799. {
  2800. "modality": "视频",
  2801. "description": "AI生成的美女快节奏热舞短视频,适配短视频平台传播",
  2802. "relation": "[去向.最终成品]"
  2803. }
  2804. ],
  2805. "in_modalities": [
  2806. "图片",
  2807. "文本"
  2808. ],
  2809. "in_config_modalities": [],
  2810. "out_modalities": [
  2811. "视频"
  2812. ],
  2813. "modality_signature": "图片+文本 → 视频",
  2814. "modality_signature_skipped": false,
  2815. "apply_shizhi": [
  2816. {
  2817. "category_id": 1241,
  2818. "category_path": "/表象/视觉/行为/表演行为/舞蹈",
  2819. "element": null,
  2820. "rationale": "美女热舞和多风格舞蹈动作的核心内容都是舞蹈表演。"
  2821. },
  2822. {
  2823. "category_id": 7131,
  2824. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/人群特征/女性形象",
  2825. "element": null,
  2826. "rationale": "AI美女热舞中的主体形象明确是女性人物。"
  2827. },
  2828. {
  2829. "category_id": 3153,
  2830. "category_path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材",
  2831. "element": null,
  2832. "rationale": "短视频内容可落在用于视频呈现的影像素材这一内容对象上。"
  2833. }
  2834. ],
  2835. "apply_xingshi": [
  2836. {
  2837. "category_id": 2851,
  2838. "category_path": "/呈现/视觉/视觉制作/构图编排/版面设计/版面结构/载体类型/视频载体",
  2839. "element": null,
  2840. "rationale": "短视频内容首先对应以动态影像为核心的视频载体。"
  2841. },
  2842. {
  2843. "category_id": 1476,
  2844. "category_path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/舞蹈表演",
  2845. "element": null,
  2846. "rationale": "全身动作连贯和多风格舞蹈动作都属于舞蹈表演的呈现方式。"
  2847. },
  2848. {
  2849. "category_id": 7076,
  2850. "category_path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感",
  2851. "element": null,
  2852. "rationale": "高清写实画质最贴近写实还原质感这一画面处理方式。"
  2853. }
  2854. ],
  2855. "suggest_apply_to": "/表象/视觉/行为/表演行为/舞蹈/女性热舞/短视频",
  2856. "body": "将三联图输入Seedance图生视频,配合快节奏热舞提示词生成视频。10组提示词示例涵盖不同风格,均强调快节奏卡点、固定镜头、高清写实、动作连贯。例如第2组:清冷室内场景,高颜值女生,修身短款穿搭,极速卡点舞蹈,耸肩卡点、双手交叉开合,腰部快速左右扭动,交叉步律动,抬手撩发衔接扭腰,肢体舒展有力,节奏紧凑,镜头固定,全身动作流畅。",
  2857. "effects": [
  2858. {
  2859. "statement": "实现快节奏卡点热舞视频生成",
  2860. "criteria": "视频中人物舞蹈动作节奏明显快于普通AI生成舞蹈,具有卡点感,动作连贯不卡顿",
  2861. "judge_method": "vlm",
  2862. "negative_examples": [
  2863. "视频中人物动作缓慢拖沓,无明显节奏感",
  2864. "动作不连贯,出现明显跳帧或肢体扭曲"
  2865. ]
  2866. },
  2867. {
  2868. "statement": "实现人物身份一致性保持",
  2869. "criteria": "视频中人物外貌与输入参考图人物特征基本一致,可识别为同一角色",
  2870. "judge_method": "vlm",
  2871. "negative_examples": [
  2872. "视频中人物与参考图人物外貌差异明显,无法对应"
  2873. ]
  2874. },
  2875. {
  2876. "statement": "实现适配短视频平台的高清写实舞蹈内容",
  2877. "criteria": "视频画质清晰,人物写实风格,场景背景符合提示词描述,整体具备短视频传播视觉吸引力",
  2878. "judge_method": "human",
  2879. "negative_examples": [
  2880. "画质模糊失真",
  2881. "人物风格卡通化与写实要求不符"
  2882. ]
  2883. }
  2884. ],
  2885. "tools": [
  2886. "豆包",
  2887. "Seedance"
  2888. ],
  2889. "control_target": [
  2890. "主体",
  2891. "姿势",
  2892. "场景",
  2893. "画质",
  2894. "身份一致性"
  2895. ],
  2896. "artifact_type": "静态图",
  2897. "workflow_step_ref": {
  2898. "workflow_id": null,
  2899. "step_id": "s2"
  2900. },
  2901. "is_alternative_to": [],
  2902. "case_title": "3天涨万粉,用豆包一键生成美女热舞视频,附提示词合集~",
  2903. "case_url": "https://mp.weixin.qq.com/s?__biz=MzY4NTIxMzI0NQ==&idx=1&mid=2247484433&sn=dc8b700e23a84a385ab98fe84902f7fa"
  2904. },
  2905. {
  2906. "case_index": 6,
  2907. "fragment_id": "f_s1_0",
  2908. "action": "生成",
  2909. "action_mech": "",
  2910. "inputs": [
  2911. {
  2912. "modality": "文本",
  2913. "description": "场景与角色的生成指令",
  2914. "relation": "[来源.原始输入]"
  2915. }
  2916. ],
  2917. "outputs": [
  2918. {
  2919. "modality": "图片",
  2920. "description": "场景参考图与角色设计图",
  2921. "relation": "[去向.s2I]"
  2922. }
  2923. ],
  2924. "in_modalities": [
  2925. "文本"
  2926. ],
  2927. "in_config_modalities": [],
  2928. "out_modalities": [
  2929. "图片"
  2930. ],
  2931. "modality_signature": "文本 → 图片",
  2932. "modality_signature_skipped": false,
  2933. "apply_shizhi": [
  2934. {
  2935. "category_id": 12871,
  2936. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  2937. "element": null,
  2938. "rationale": "故事角色设计直接对应人物的角色身份与设定。"
  2939. },
  2940. {
  2941. "category_id": 1615,
  2942. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  2943. "element": null,
  2944. "rationale": "故事中的角色承担叙事功能,符合叙事角色这一内容对象。"
  2945. },
  2946. {
  2947. "category_id": 20791,
  2948. "category_path": "/表象/视觉/画面/后期/情绪意境/场景氛围",
  2949. "element": null,
  2950. "rationale": "故事场景设定包含整体环境氛围,最接近场景氛围这一实质内容。"
  2951. }
  2952. ],
  2953. "apply_xingshi": [
  2954. {
  2955. "category_id": 337,
  2956. "category_path": "/架构/叙事/叙事组织/角色书写/角色塑造",
  2957. "element": null,
  2958. "rationale": "角色外貌与服装风格是在叙事中对人物形象进行塑造。"
  2959. },
  2960. {
  2961. "category_id": 1067,
  2962. "category_path": "/呈现/视觉/视觉画面/形象塑造/造型装扮",
  2963. "element": null,
  2964. "rationale": "角色的外貌与服装风格属于造型装扮层面的呈现方式。"
  2965. },
  2966. {
  2967. "category_id": 1457,
  2968. "category_path": "/架构/策略/情感调动/情感激发/情感渲染/氛围营造",
  2969. "element": null,
  2970. "rationale": "场景环境氛围对应通过环境与载体进行氛围营造的手法。"
  2971. }
  2972. ],
  2973. "suggest_apply_to": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  2974. "body": "先生成好故事发生的场景和主要角色设计图",
  2975. "effects": [
  2976. {
  2977. "statement": "实现场景与角色视觉形象的确立",
  2978. "criteria": "输出图片中场景环境特征清晰可辨,角色外貌、服装、风格具有明确视觉特征,可作为后续分镜生成的参考素材",
  2979. "judge_method": "vlm",
  2980. "negative_examples": [
  2981. "场景图背景模糊无法辨认地点特征",
  2982. "角色设计图人物特征不稳定,无法在后续步骤中保持一致性"
  2983. ]
  2984. }
  2985. ],
  2986. "tools": [
  2987. "banana pro",
  2988. "TapNow"
  2989. ],
  2990. "control_target": [
  2991. "主体",
  2992. "场景",
  2993. "身份一致性"
  2994. ],
  2995. "artifact_type": "角色参考图",
  2996. "workflow_step_ref": {
  2997. "workflow_id": null,
  2998. "step_id": "s1"
  2999. },
  3000. "is_alternative_to": [],
  3001. "case_title": "AI生成九宫格分镜生成小技巧",
  3002. "case_url": "https://www.xiaohongshu.com/explore/69ccfada000000002003ba98"
  3003. },
  3004. {
  3005. "case_index": 6,
  3006. "fragment_id": "f_s2_0",
  3007. "action": "生成",
  3008. "action_mech": "",
  3009. "inputs": [
  3010. {
  3011. "modality": "文本",
  3012. "description": "故事情节描述及镜头要求提示词(含特写数量、俯仰镜头等约束)",
  3013. "relation": "[来源.原始输入]"
  3014. },
  3015. {
  3016. "modality": "图片",
  3017. "description": "场景参考图与角色设计图",
  3018. "relation": "[来源.s1O]"
  3019. },
  3020. {
  3021. "modality": "参数",
  3022. "description": "画面质量参数(建议4k)",
  3023. "relation": "[来源.原始输入]"
  3024. }
  3025. ],
  3026. "outputs": [
  3027. {
  3028. "modality": "图片",
  3029. "description": "九宫格或四宫格分镜合图",
  3030. "relation": "[去向.s3I]"
  3031. }
  3032. ],
  3033. "in_modalities": [
  3034. "文本",
  3035. "图片"
  3036. ],
  3037. "in_config_modalities": [
  3038. "参数"
  3039. ],
  3040. "out_modalities": [
  3041. "图片"
  3042. ],
  3043. "modality_signature": "文本+图片 → 图片",
  3044. "modality_signature_skipped": false,
  3045. "apply_shizhi": [
  3046. {
  3047. "category_id": 3153,
  3048. "category_path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材",
  3049. "element": null,
  3050. "rationale": "故事情节分镜叙事落实为一组连续画面素材,最接近影像素材。"
  3051. },
  3052. {
  3053. "category_id": 1615,
  3054. "category_path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  3055. "element": null,
  3056. "rationale": "多角色连续剧情包含多个承担叙事功能的角色。"
  3057. },
  3058. {
  3059. "category_id": 20911,
  3060. "category_path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材/拍摄视角",
  3061. "element": null,
  3062. "rationale": "特写镜头与俯仰镜头对应具体镜头视角素材特征。"
  3063. }
  3064. ],
  3065. "apply_xingshi": [
  3066. {
  3067. "category_id": 5852,
  3068. "category_path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事",
  3069. "element": null,
  3070. "rationale": "分镜叙事与多角色多场景连续剧情本质上是分段展开的叙事组织。"
  3071. },
  3072. {
  3073. "category_id": 6531,
  3074. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵",
  3075. "element": null,
  3076. "rationale": "九宫格或四宫格属于典型的网格矩阵式画面排版。"
  3077. },
  3078. {
  3079. "category_id": 365,
  3080. "category_path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强",
  3081. "element": null,
  3082. "rationale": "4k高清画质对应画面清晰度和质感提升的画质增强处理。"
  3083. }
  3084. ],
  3085. "suggest_apply_to": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分镜叙事/连续剧情",
  3086. "body": "根据场景和人物描述一段故事情节,生成分镜图,九宫格四宫格都可以,看情节复杂程度,在提示词中强调必须包含的镜头画面(比如需要至少几张特写?特殊的俯仰拍镜头?),你并不一定需要每一张画面去描述内容,只要你的故事情节说清楚了,剩下的交给AI。分镜图内容一般较多,建议画面质量选择4k。",
  3087. "effects": [
  3088. {
  3089. "statement": "实现多格分镜叙事图的一次性生成",
  3090. "criteria": "输出为九宫格或四宫格排列的分镜合图,各格画面连贯呈现故事情节,提示词中指定的特殊镜头(特写、俯仰角)在对应格中出现",
  3091. "judge_method": "vlm",
  3092. "negative_examples": [
  3093. "输出为单张图而非宫格排列",
  3094. "各格画面之间角色外貌不一致",
  3095. "提示词中要求的特写镜头未出现在任何格中"
  3096. ]
  3097. },
  3098. {
  3099. "statement": "实现4k画质的高清分镜输出",
  3100. "criteria": "输出图片分辨率达到4k级别,切分后单张图仍具备足够清晰度",
  3101. "judge_method": "rule",
  3102. "negative_examples": [
  3103. "输出图片分辨率低于4k,切分后单张图模糊"
  3104. ]
  3105. }
  3106. ],
  3107. "tools": [
  3108. "banana pro",
  3109. "TapNow"
  3110. ],
  3111. "control_target": [
  3112. "构图",
  3113. "场景",
  3114. "身份一致性",
  3115. "画质"
  3116. ],
  3117. "artifact_type": "静态图",
  3118. "workflow_step_ref": {
  3119. "workflow_id": null,
  3120. "step_id": "s2"
  3121. },
  3122. "is_alternative_to": [],
  3123. "case_title": "AI生成九宫格分镜生成小技巧",
  3124. "case_url": "https://www.xiaohongshu.com/explore/69ccfada000000002003ba98"
  3125. },
  3126. {
  3127. "case_index": 6,
  3128. "fragment_id": "f_s3_0",
  3129. "action": "提取",
  3130. "action_mech": "",
  3131. "inputs": [
  3132. {
  3133. "modality": "图片",
  3134. "description": "九宫格或四宫格分镜合图",
  3135. "relation": "[来源.s2O]"
  3136. }
  3137. ],
  3138. "outputs": [
  3139. {
  3140. "modality": "图片",
  3141. "description": "单张切分后的分镜图(九宫格切分后约1k,四宫格切分后约2k)",
  3142. "relation": "[去向.s4I]"
  3143. }
  3144. ],
  3145. "in_modalities": [
  3146. "图片"
  3147. ],
  3148. "in_config_modalities": [],
  3149. "out_modalities": [
  3150. "图片"
  3151. ],
  3152. "modality_signature": "图片 → 图片",
  3153. "modality_signature_skipped": false,
  3154. "apply_shizhi": [
  3155. {
  3156. "category_id": 3153,
  3157. "category_path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材",
  3158. "element": null,
  3159. "rationale": "分镜单帧画面独立化本质上是将单帧作为独立影像素材处理。"
  3160. }
  3161. ],
  3162. "apply_xingshi": [
  3163. {
  3164. "category_id": 1150,
  3165. "category_path": "/呈现/视觉/视觉制作/构图编排",
  3166. "element": null,
  3167. "rationale": "宫格切分后的单张尺寸规格属于版面与画面切分的构图编排问题。"
  3168. },
  3169. {
  3170. "category_id": 6531,
  3171. "category_path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵",
  3172. "element": null,
  3173. "rationale": "宫格切分这一前提直接落在网格矩阵式的组织方式上。"
  3174. }
  3175. ],
  3176. "suggest_apply_to": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材/分镜单帧",
  3177. "body": "生成好分镜宫格图之后执行Tapnow的快速切分功能,每一张分镜图自动切分好并单独生成。4k的九宫格切分好后单张图是1k的,四宫格切分好后单张图是2k的。",
  3178. "effects": [
  3179. {
  3180. "statement": "实现宫格分镜图的自动切分为独立单张",
  3181. "criteria": "每个宫格单元被准确裁切为独立图片文件,画面内容与合图中对应格一致,无内容变形或莫名改变",
  3182. "judge_method": "vlm",
  3183. "negative_examples": [
  3184. "切分后图片出现莫名的内容变化(如人物面部改变)",
  3185. "切分边界不准确导致相邻格内容混入",
  3186. "切分后图片数量与宫格数不符"
  3187. ]
  3188. }
  3189. ],
  3190. "tools": [
  3191. "TapNow"
  3192. ],
  3193. "control_target": [
  3194. "局部区域"
  3195. ],
  3196. "artifact_type": "静态图",
  3197. "workflow_step_ref": {
  3198. "workflow_id": null,
  3199. "step_id": "s3"
  3200. },
  3201. "is_alternative_to": [],
  3202. "case_title": "AI生成九宫格分镜生成小技巧",
  3203. "case_url": "https://www.xiaohongshu.com/explore/69ccfada000000002003ba98"
  3204. },
  3205. {
  3206. "case_index": 6,
  3207. "fragment_id": "f_s4_0",
  3208. "action": "增强",
  3209. "action_mech": "",
  3210. "inputs": [
  3211. {
  3212. "modality": "图片",
  3213. "description": "切分后的单张分镜图",
  3214. "relation": "[来源.s3O]"
  3215. }
  3216. ],
  3217. "outputs": [
  3218. {
  3219. "modality": "图片",
  3220. "description": "画质增强后的单张分镜图",
  3221. "relation": "[去向.最终成品]"
  3222. }
  3223. ],
  3224. "in_modalities": [
  3225. "图片"
  3226. ],
  3227. "in_config_modalities": [],
  3228. "out_modalities": [
  3229. "图片"
  3230. ],
  3231. "modality_signature": "图片 → 图片",
  3232. "modality_signature_skipped": false,
  3233. "apply_shizhi": [
  3234. {
  3235. "category_id": 3153,
  3236. "category_path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材",
  3237. "element": null,
  3238. "rationale": "分镜单帧画面清晰化作用对象仍是具体单帧影像素材。"
  3239. },
  3240. {
  3241. "category_id": 19932,
  3242. "category_path": "/表象/视觉/画面/后期/材质质感/影像质感",
  3243. "element": null,
  3244. "rationale": "清晰化会直接改变画面的影像质感表现。"
  3245. }
  3246. ],
  3247. "apply_xingshi": [
  3248. {
  3249. "category_id": 365,
  3250. "category_path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强",
  3251. "element": null,
  3252. "rationale": "超分辨率画质增强直接对应画质增强这一后期处理方式。"
  3253. }
  3254. ],
  3255. "suggest_apply_to": "/呈现/视觉/视觉制作/后期处理/画质优化处理/超分增强",
  3256. "body": "如果有需求就再消耗积分去画质增加一下",
  3257. "effects": [
  3258. {
  3259. "statement": "实现单张切分图的画质提升",
  3260. "criteria": "增强后图片分辨率或清晰度明显高于输入图,细节纹理更丰富,无明显噪点或模糊",
  3261. "judge_method": "vlm",
  3262. "negative_examples": [
  3263. "增强后图片与输入图视觉质量无明显差异",
  3264. "增强后出现伪影或过度锐化"
  3265. ]
  3266. }
  3267. ],
  3268. "tools": [
  3269. "TapNow"
  3270. ],
  3271. "control_target": [
  3272. "画质"
  3273. ],
  3274. "artifact_type": "静态图",
  3275. "workflow_step_ref": {
  3276. "workflow_id": null,
  3277. "step_id": "s4"
  3278. },
  3279. "is_alternative_to": [],
  3280. "case_title": "AI生成九宫格分镜生成小技巧",
  3281. "case_url": "https://www.xiaohongshu.com/explore/69ccfada000000002003ba98"
  3282. }
  3283. ],
  3284. "subtree": {
  3285. "shizhi": [
  3286. {
  3287. "name": "理念",
  3288. "path": "/理念",
  3289. "level": 1,
  3290. "stable_id": 39,
  3291. "description": "内容中涉及的抽象要素——方法、知识、观点、事件、趋势等概念性内容",
  3292. "is_real": true,
  3293. "is_hit": false,
  3294. "is_suggested": false,
  3295. "children": [
  3296. {
  3297. "name": "现象",
  3298. "path": "/理念/现象",
  3299. "level": 2,
  3300. "stable_id": 88,
  3301. "description": "可观察的生活状态、社会趋势和规律性模式",
  3302. "is_real": true,
  3303. "is_hit": true,
  3304. "is_suggested": false,
  3305. "children": [
  3306. {
  3307. "name": "生活状态",
  3308. "path": "/理念/现象/生活状态",
  3309. "level": 3,
  3310. "stable_id": 89,
  3311. "description": "不同人生阶段和群体的生活现状与经历",
  3312. "is_real": true,
  3313. "is_hit": false,
  3314. "is_suggested": false,
  3315. "children": [
  3316. {
  3317. "name": "个人境遇",
  3318. "path": "/理念/现象/生活状态/个人境遇",
  3319. "level": 4,
  3320. "stable_id": 128,
  3321. "description": "个人的生活条件、物质状态、日常细节等具体生存状况",
  3322. "is_real": true,
  3323. "is_hit": false,
  3324. "is_suggested": false,
  3325. "children": [
  3326. {
  3327. "name": "生活状态",
  3328. "path": "/理念/现象/生活状态/个人境遇/生活状态",
  3329. "level": 5,
  3330. "stable_id": 597,
  3331. "description": "日常生活的整体状态、节奏和具体细节",
  3332. "is_real": true,
  3333. "is_hit": false,
  3334. "is_suggested": false,
  3335. "children": [
  3336. {
  3337. "name": "生活品质",
  3338. "path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质",
  3339. "level": 6,
  3340. "stable_id": 1237,
  3341. "description": "物质条件、生活水平和生活方式相关的状态描述",
  3342. "is_real": true,
  3343. "is_hit": false,
  3344. "is_suggested": false,
  3345. "children": [
  3346. {
  3347. "name": "逆袭",
  3348. "path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  3349. "level": 7,
  3350. "stable_id": 16671,
  3351. "description": "从不利境遇或社会底层通过努力实现反转、获得成功的过程与现象",
  3352. "is_real": true,
  3353. "is_hit": true,
  3354. "is_suggested": false,
  3355. "children": [
  3356. {
  3357. "name": "真假千金对决",
  3358. "path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭/真假千金对决",
  3359. "level": 8,
  3360. "stable_id": null,
  3361. "description": "",
  3362. "is_real": false,
  3363. "is_hit": false,
  3364. "is_suggested": true,
  3365. "is_inferred": true,
  3366. "children": []
  3367. }
  3368. ]
  3369. },
  3370. {
  3371. "name": "富贵生活",
  3372. "path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  3373. "level": 7,
  3374. "stable_id": 16731,
  3375. "description": "富裕阶层的日常生活状态,包括豪门、名流的居住环境与生活方式",
  3376. "is_real": true,
  3377. "is_hit": true,
  3378. "is_suggested": false,
  3379. "children": []
  3380. }
  3381. ]
  3382. }
  3383. ]
  3384. }
  3385. ]
  3386. }
  3387. ]
  3388. }
  3389. ]
  3390. },
  3391. {
  3392. "name": "事件",
  3393. "path": "/理念/事件",
  3394. "level": 2,
  3395. "stable_id": 43,
  3396. "description": "发生的事情,包括个人事件、公共事件、历史事件等",
  3397. "is_real": true,
  3398. "is_hit": false,
  3399. "is_suggested": false,
  3400. "children": [
  3401. {
  3402. "name": "社会事件",
  3403. "path": "/理念/事件/社会事件",
  3404. "level": 3,
  3405. "stable_id": 23833,
  3406. "description": "普通人经历、慈善公益、刑事案件等社会领域的事件",
  3407. "is_real": true,
  3408. "is_hit": false,
  3409. "is_suggested": false,
  3410. "children": [
  3411. {
  3412. "name": "人物故事",
  3413. "path": "/理念/事件/社会事件/人物故事",
  3414. "level": 4,
  3415. "stable_id": 23853,
  3416. "description": "普通人的生活经历、励志故事、婚恋故事等个人经历",
  3417. "is_real": true,
  3418. "is_hit": false,
  3419. "is_suggested": false,
  3420. "children": [
  3421. {
  3422. "name": "趣闻轶事",
  3423. "path": "/理念/事件/社会事件/人物故事/趣闻轶事",
  3424. "level": 5,
  3425. "stable_id": 280,
  3426. "description": "日常生活中有趣、幽默或意外的小事件和逸闻趣事",
  3427. "is_real": true,
  3428. "is_hit": true,
  3429. "is_suggested": false,
  3430. "children": []
  3431. }
  3432. ]
  3433. }
  3434. ]
  3435. }
  3436. ]
  3437. },
  3438. {
  3439. "name": "知识",
  3440. "path": "/理念/知识",
  3441. "level": 2,
  3442. "stable_id": 44,
  3443. "description": "人类的认识和经验,包括概念、原理、理论等认知性内容",
  3444. "is_real": true,
  3445. "is_hit": false,
  3446. "is_suggested": false,
  3447. "children": [
  3448. {
  3449. "name": "思想",
  3450. "path": "/理念/知识/思想",
  3451. "level": 3,
  3452. "stable_id": 227,
  3453. "description": "哲学思想、学术理论、思想史等思想观念领域的知识",
  3454. "is_real": true,
  3455. "is_hit": false,
  3456. "is_suggested": false,
  3457. "children": [
  3458. {
  3459. "name": "概念范畴",
  3460. "path": "/理念/知识/思想/概念范畴",
  3461. "level": 4,
  3462. "stable_id": 794,
  3463. "description": "抽象的概念、范畴、关系类术语",
  3464. "is_real": true,
  3465. "is_hit": false,
  3466. "is_suggested": false,
  3467. "children": [
  3468. {
  3469. "name": "时间过程",
  3470. "path": "/理念/知识/思想/概念范畴/时间过程",
  3471. "level": 5,
  3472. "stable_id": 1608,
  3473. "description": "描述事物发展变化、时间节奏等动态过程的概念术语",
  3474. "is_real": true,
  3475. "is_hit": true,
  3476. "is_suggested": false,
  3477. "children": []
  3478. },
  3479. {
  3480. "name": "认知思辨",
  3481. "path": "/理念/知识/思想/概念范畴/认知思辨",
  3482. "level": 5,
  3483. "stable_id": 1609,
  3484. "description": "描述思维活动、认知判断、推理论证等思辨性概念术语",
  3485. "is_real": true,
  3486. "is_hit": false,
  3487. "is_suggested": false,
  3488. "children": [
  3489. {
  3490. "name": "概念构想",
  3491. "path": "/理念/知识/思想/概念范畴/认知思辨/概念构想",
  3492. "level": 6,
  3493. "stable_id": 9591,
  3494. "description": "关于想法、设想、概念等抽象思维形式的术语",
  3495. "is_real": true,
  3496. "is_hit": true,
  3497. "is_suggested": false,
  3498. "children": []
  3499. }
  3500. ]
  3501. },
  3502. {
  3503. "name": "性质属性",
  3504. "path": "/理念/知识/思想/概念范畴/性质属性",
  3505. "level": 5,
  3506. "stable_id": 1606,
  3507. "description": "描述事物固有性质、特征、程度等属性的概念术语",
  3508. "is_real": true,
  3509. "is_hit": false,
  3510. "is_suggested": false,
  3511. "children": [
  3512. {
  3513. "name": "风格属性",
  3514. "path": "/理念/知识/思想/概念范畴/性质属性/风格属性",
  3515. "level": 6,
  3516. "stable_id": 21851,
  3517. "description": "描述某种风格、表达方式或组织模式的特色属性,包括语言风格、生活风格及个性化定制等特征",
  3518. "is_real": true,
  3519. "is_hit": true,
  3520. "is_suggested": false,
  3521. "children": []
  3522. }
  3523. ]
  3524. }
  3525. ]
  3526. }
  3527. ]
  3528. }
  3529. ]
  3530. },
  3531. {
  3532. "name": "观念",
  3533. "path": "/理念/观念",
  3534. "level": 2,
  3535. "stable_id": 72,
  3536. "description": "观点、意见、价值判断等抽象认知",
  3537. "is_real": true,
  3538. "is_hit": false,
  3539. "is_suggested": false,
  3540. "children": [
  3541. {
  3542. "name": "个人观念",
  3543. "path": "/理念/观念/个人观念",
  3544. "level": 3,
  3545. "stable_id": 80,
  3546. "description": "个人层面的观点、感悟、价值取向等主观认知",
  3547. "is_real": true,
  3548. "is_hit": false,
  3549. "is_suggested": false,
  3550. "children": [
  3551. {
  3552. "name": "情感认同",
  3553. "path": "/理念/观念/个人观念/情感认同",
  3554. "level": 4,
  3555. "stable_id": 83,
  3556. "description": "爱国情怀、怀旧情结等深层情感认同",
  3557. "is_real": true,
  3558. "is_hit": false,
  3559. "is_suggested": false,
  3560. "children": [
  3561. {
  3562. "name": "人际情谊",
  3563. "path": "/理念/观念/个人观念/情感认同/人际情谊",
  3564. "level": 5,
  3565. "stable_id": 707,
  3566. "description": "同学、战友、亲情等人际关系中的情感联结",
  3567. "is_real": true,
  3568. "is_hit": false,
  3569. "is_suggested": false,
  3570. "children": [
  3571. {
  3572. "name": "婚恋情感",
  3573. "path": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感",
  3574. "level": 6,
  3575. "stable_id": 3534,
  3576. "description": "婚姻与恋爱中的情感观念与经历",
  3577. "is_real": true,
  3578. "is_hit": true,
  3579. "is_suggested": false,
  3580. "children": [
  3581. {
  3582. "name": "都市豪门",
  3583. "path": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感/都市豪门",
  3584. "level": 7,
  3585. "stable_id": null,
  3586. "description": "",
  3587. "is_real": false,
  3588. "is_hit": false,
  3589. "is_suggested": true,
  3590. "is_inferred": true,
  3591. "children": []
  3592. },
  3593. {
  3594. "name": "都市豪门短剧",
  3595. "path": "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感/都市豪门短剧",
  3596. "level": 7,
  3597. "stable_id": null,
  3598. "description": "",
  3599. "is_real": false,
  3600. "is_hit": false,
  3601. "is_suggested": true,
  3602. "is_inferred": true,
  3603. "children": []
  3604. }
  3605. ]
  3606. }
  3607. ]
  3608. }
  3609. ]
  3610. }
  3611. ]
  3612. }
  3613. ]
  3614. }
  3615. ]
  3616. },
  3617. {
  3618. "name": "表象",
  3619. "path": "/表象",
  3620. "level": 1,
  3621. "stable_id": 38,
  3622. "description": "内容中出现的具象可感知要素,包括视觉可见内容、听觉声音内容及各类内容形态",
  3623. "is_real": true,
  3624. "is_hit": false,
  3625. "is_suggested": false,
  3626. "children": [
  3627. {
  3628. "name": "视觉",
  3629. "path": "/表象/视觉",
  3630. "level": 2,
  3631. "stable_id": 248,
  3632. "description": "内容画面中可见的视觉要素,涵盖实体、场景、符号、行为及画面色彩风格等视觉特征",
  3633. "is_real": true,
  3634. "is_hit": false,
  3635. "is_suggested": false,
  3636. "children": [
  3637. {
  3638. "name": "空间",
  3639. "path": "/表象/视觉/空间",
  3640. "level": 3,
  3641. "stable_id": 50,
  3642. "description": "地理或物理空间环境",
  3643. "is_real": true,
  3644. "is_hit": false,
  3645. "is_suggested": false,
  3646. "children": [
  3647. {
  3648. "name": "空间场所",
  3649. "path": "/表象/视觉/空间/空间场所",
  3650. "level": 4,
  3651. "stable_id": 67,
  3652. "description": "具体的空间场所和环境",
  3653. "is_real": true,
  3654. "is_hit": false,
  3655. "is_suggested": false,
  3656. "children": [
  3657. {
  3658. "name": "生活场景",
  3659. "path": "/表象/视觉/空间/空间场所/生活场景",
  3660. "level": 5,
  3661. "stable_id": 262,
  3662. "description": "日常生活、工作、学习、社交等与人活动相关的功能性空间场景",
  3663. "is_real": true,
  3664. "is_hit": true,
  3665. "is_suggested": false,
  3666. "children": [
  3667. {
  3668. "name": "居家空间",
  3669. "path": "/表象/视觉/空间/空间场所/生活场景/居家空间",
  3670. "level": 6,
  3671. "stable_id": 589,
  3672. "description": "家庭内部的各类功能房间和生活区域,如客厅、卧室、厨房、书房等",
  3673. "is_real": true,
  3674. "is_hit": false,
  3675. "is_suggested": false,
  3676. "children": [
  3677. {
  3678. "name": "场景描述",
  3679. "path": "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述",
  3680. "level": 7,
  3681. "stable_id": 1281,
  3682. "description": "对居家空间的泛指性、抽象性描述,如日常生活场景、室内外空间属性等",
  3683. "is_real": true,
  3684. "is_hit": true,
  3685. "is_suggested": false,
  3686. "children": []
  3687. }
  3688. ]
  3689. },
  3690. {
  3691. "name": "环境氛围",
  3692. "path": "/表象/视觉/空间/空间场所/生活场景/环境氛围",
  3693. "level": 6,
  3694. "stable_id": null,
  3695. "description": "",
  3696. "is_real": false,
  3697. "is_hit": false,
  3698. "is_suggested": true,
  3699. "is_inferred": true,
  3700. "children": []
  3701. },
  3702. {
  3703. "name": "场景氛围",
  3704. "path": "/表象/视觉/空间/空间场所/生活场景/场景氛围",
  3705. "level": 6,
  3706. "stable_id": null,
  3707. "description": "",
  3708. "is_real": false,
  3709. "is_hit": false,
  3710. "is_suggested": true,
  3711. "is_inferred": true,
  3712. "children": []
  3713. }
  3714. ]
  3715. }
  3716. ]
  3717. }
  3718. ]
  3719. },
  3720. {
  3721. "name": "实体",
  3722. "path": "/表象/视觉/实体",
  3723. "level": 3,
  3724. "stable_id": 41,
  3725. "description": "具体的对象或事物,包括人物、物品、生物、机构等",
  3726. "is_real": true,
  3727. "is_hit": false,
  3728. "is_suggested": false,
  3729. "children": [
  3730. {
  3731. "name": "人物",
  3732. "path": "/表象/视觉/实体/人物",
  3733. "level": 4,
  3734. "stable_id": 48,
  3735. "description": "人类个体或群体",
  3736. "is_real": true,
  3737. "is_hit": false,
  3738. "is_suggested": false,
  3739. "children": [
  3740. {
  3741. "name": "群体",
  3742. "path": "/表象/视觉/实体/人物/群体",
  3743. "level": 5,
  3744. "stable_id": 53,
  3745. "description": "由多个个体组成的人群集合",
  3746. "is_real": true,
  3747. "is_hit": false,
  3748. "is_suggested": false,
  3749. "children": [
  3750. {
  3751. "name": "社会身份",
  3752. "path": "/表象/视觉/实体/人物/群体/社会身份",
  3753. "level": 6,
  3754. "stable_id": 966,
  3755. "description": "按职业角色、家庭结构、社会阶层等社会身份划分的群体",
  3756. "is_real": true,
  3757. "is_hit": false,
  3758. "is_suggested": false,
  3759. "children": [
  3760. {
  3761. "name": "家庭群体",
  3762. "path": "/表象/视觉/实体/人物/群体/社会身份/家庭群体",
  3763. "level": 7,
  3764. "stable_id": 311,
  3765. "description": "按家庭结构和成员关系定义的人群组合",
  3766. "is_real": true,
  3767. "is_hit": false,
  3768. "is_suggested": false,
  3769. "children": [
  3770. {
  3771. "name": "大家族",
  3772. "path": "/表象/视觉/实体/人物/群体/社会身份/家庭群体/大家族",
  3773. "level": 8,
  3774. "stable_id": 18514,
  3775. "description": "成员众多、规模庞大或多代同堂的家族群体",
  3776. "is_real": true,
  3777. "is_hit": true,
  3778. "is_suggested": false,
  3779. "children": []
  3780. }
  3781. ]
  3782. },
  3783. {
  3784. "name": "豪门人物",
  3785. "path": "/表象/视觉/实体/人物/群体/社会身份/豪门人物",
  3786. "level": 7,
  3787. "stable_id": null,
  3788. "description": "",
  3789. "is_real": false,
  3790. "is_hit": false,
  3791. "is_suggested": true,
  3792. "is_inferred": true,
  3793. "children": []
  3794. }
  3795. ]
  3796. }
  3797. ]
  3798. },
  3799. {
  3800. "name": "个体",
  3801. "path": "/表象/视觉/实体/人物/个体",
  3802. "level": 5,
  3803. "stable_id": 63,
  3804. "description": "单个人物个体",
  3805. "is_real": true,
  3806. "is_hit": false,
  3807. "is_suggested": false,
  3808. "children": [
  3809. {
  3810. "name": "身份角色",
  3811. "path": "/表象/视觉/实体/人物/个体/身份角色",
  3812. "level": 6,
  3813. "stable_id": 976,
  3814. "description": "按年龄、职业、社会关系等属性定义的人物类型",
  3815. "is_real": true,
  3816. "is_hit": true,
  3817. "is_suggested": false,
  3818. "children": []
  3819. },
  3820. {
  3821. "name": "形象呈现",
  3822. "path": "/表象/视觉/实体/人物/个体/形象呈现",
  3823. "level": 6,
  3824. "stable_id": 107,
  3825. "description": "人物的外貌、肖像、视觉形象特征",
  3826. "is_real": true,
  3827. "is_hit": false,
  3828. "is_suggested": false,
  3829. "children": [
  3830. {
  3831. "name": "肖像类型",
  3832. "path": "/表象/视觉/实体/人物/个体/形象呈现/肖像类型",
  3833. "level": 7,
  3834. "stable_id": 753,
  3835. "description": "不同形式的人物肖像(照片、画像等)",
  3836. "is_real": true,
  3837. "is_hit": false,
  3838. "is_suggested": false,
  3839. "children": [
  3840. {
  3841. "name": "女性肖像",
  3842. "path": "/表象/视觉/实体/人物/个体/形象呈现/肖像类型/女性肖像",
  3843. "level": 8,
  3844. "stable_id": 21291,
  3845. "description": "以女性为主体的人物肖像,涵盖各类女性角色、年龄、风格的肖像图像",
  3846. "is_real": true,
  3847. "is_hit": true,
  3848. "is_suggested": false,
  3849. "children": []
  3850. }
  3851. ]
  3852. },
  3853. {
  3854. "name": "身体特征",
  3855. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征",
  3856. "level": 7,
  3857. "stable_id": 754,
  3858. "description": "身体部位、姿态、状态等身体相关特征",
  3859. "is_real": true,
  3860. "is_hit": false,
  3861. "is_suggested": false,
  3862. "children": [
  3863. {
  3864. "name": "身体部位",
  3865. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/身体部位",
  3866. "level": 8,
  3867. "stable_id": 759,
  3868. "description": "人体的各个部位及其特征",
  3869. "is_real": true,
  3870. "is_hit": false,
  3871. "is_suggested": false,
  3872. "children": [
  3873. {
  3874. "name": "面部",
  3875. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/身体部位/面部",
  3876. "level": 9,
  3877. "stable_id": 7371,
  3878. "description": "人的面部区域,包括五官及面部表情状态",
  3879. "is_real": true,
  3880. "is_hit": true,
  3881. "is_suggested": false,
  3882. "children": []
  3883. }
  3884. ]
  3885. },
  3886. {
  3887. "name": "姿态状态",
  3888. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态",
  3889. "level": 8,
  3890. "stable_id": 760,
  3891. "description": "人物的姿态、动作及身体状态",
  3892. "is_real": true,
  3893. "is_hit": false,
  3894. "is_suggested": false,
  3895. "children": [
  3896. {
  3897. "name": "动作姿势",
  3898. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态/动作姿势",
  3899. "level": 9,
  3900. "stable_id": 9313,
  3901. "description": "人物在各种情境下的具体肢体动作、身体姿势及整体体态呈现",
  3902. "is_real": true,
  3903. "is_hit": true,
  3904. "is_suggested": false,
  3905. "children": [
  3906. {
  3907. "name": "连续动作",
  3908. "path": "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态/动作姿势/连续动作",
  3909. "level": 10,
  3910. "stable_id": null,
  3911. "description": "",
  3912. "is_real": false,
  3913. "is_hit": false,
  3914. "is_suggested": true,
  3915. "is_inferred": true,
  3916. "children": []
  3917. }
  3918. ]
  3919. }
  3920. ]
  3921. }
  3922. ]
  3923. },
  3924. {
  3925. "name": "身份特征",
  3926. "path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征",
  3927. "level": 7,
  3928. "stable_id": 755,
  3929. "description": "社会角色、职业身份等身份相关特征",
  3930. "is_real": true,
  3931. "is_hit": false,
  3932. "is_suggested": false,
  3933. "children": [
  3934. {
  3935. "name": "角色设定",
  3936. "path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定",
  3937. "level": 8,
  3938. "stable_id": 12871,
  3939. "description": "叙事内容中虚构或扮演性质的角色定义与人物关系描述",
  3940. "is_real": true,
  3941. "is_hit": true,
  3942. "is_suggested": true,
  3943. "children": [
  3944. {
  3945. "name": "港风少女",
  3946. "path": "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定/港风少女",
  3947. "level": 9,
  3948. "stable_id": null,
  3949. "description": "",
  3950. "is_real": false,
  3951. "is_hit": false,
  3952. "is_suggested": true,
  3953. "is_inferred": true,
  3954. "children": []
  3955. }
  3956. ]
  3957. }
  3958. ]
  3959. },
  3960. {
  3961. "name": "人群特征",
  3962. "path": "/表象/视觉/实体/人物/个体/形象呈现/人群特征",
  3963. "level": 7,
  3964. "stable_id": 756,
  3965. "description": "性别、年龄、群体等人群分类特征",
  3966. "is_real": true,
  3967. "is_hit": false,
  3968. "is_suggested": false,
  3969. "children": [
  3970. {
  3971. "name": "女性形象",
  3972. "path": "/表象/视觉/实体/人物/个体/形象呈现/人群特征/女性形象",
  3973. "level": 8,
  3974. "stable_id": 7131,
  3975. "description": "各类女性人物的视觉形象,包括通称女性、美女、特定装扮或体型的女性形象",
  3976. "is_real": true,
  3977. "is_hit": true,
  3978. "is_suggested": false,
  3979. "children": []
  3980. }
  3981. ]
  3982. },
  3983. {
  3984. "name": "虚拟形象",
  3985. "path": "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象",
  3986. "level": 7,
  3987. "stable_id": 757,
  3988. "description": "技术生成的虚拟人物形象",
  3989. "is_real": true,
  3990. "is_hit": true,
  3991. "is_suggested": false,
  3992. "children": [
  3993. {
  3994. "name": "女性肖像",
  3995. "path": "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象/女性肖像",
  3996. "level": 8,
  3997. "stable_id": null,
  3998. "description": "",
  3999. "is_real": false,
  4000. "is_hit": false,
  4001. "is_suggested": false,
  4002. "is_inferred": true,
  4003. "children": [
  4004. {
  4005. "name": "面部特写",
  4006. "path": "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象/女性肖像/面部特写",
  4007. "level": 9,
  4008. "stable_id": null,
  4009. "description": "",
  4010. "is_real": false,
  4011. "is_hit": false,
  4012. "is_suggested": true,
  4013. "is_inferred": true,
  4014. "children": []
  4015. }
  4016. ]
  4017. }
  4018. ]
  4019. },
  4020. {
  4021. "name": "整体形象",
  4022. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象",
  4023. "level": 7,
  4024. "stable_id": 758,
  4025. "description": "人物的整体面貌、主体呈现等综合形象",
  4026. "is_real": true,
  4027. "is_hit": false,
  4028. "is_suggested": false,
  4029. "children": [
  4030. {
  4031. "name": "造型装扮",
  4032. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮",
  4033. "level": 8,
  4034. "stable_id": 1612,
  4035. "description": "人物的外在形象设计、服饰妆造和特定场景装扮",
  4036. "is_real": true,
  4037. "is_hit": false,
  4038. "is_suggested": false,
  4039. "children": [
  4040. {
  4041. "name": "风格造型",
  4042. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型",
  4043. "level": 9,
  4044. "stable_id": 15471,
  4045. "description": "具有特定文化、时代或场景风格的造型装扮,如中式、都市、军旅、民族等风格",
  4046. "is_real": true,
  4047. "is_hit": true,
  4048. "is_suggested": false,
  4049. "children": []
  4050. }
  4051. ]
  4052. },
  4053. {
  4054. "name": "叙事角色",
  4055. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色",
  4056. "level": 8,
  4057. "stable_id": 1615,
  4058. "description": "在故事或场景中承担特定功能的角色设定",
  4059. "is_real": true,
  4060. "is_hit": true,
  4061. "is_suggested": false,
  4062. "children": []
  4063. },
  4064. {
  4065. "name": "短剧人物造型姿态",
  4066. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/短剧人物造型姿态",
  4067. "level": 8,
  4068. "stable_id": null,
  4069. "description": "",
  4070. "is_real": false,
  4071. "is_hit": false,
  4072. "is_suggested": true,
  4073. "is_inferred": true,
  4074. "children": []
  4075. },
  4076. {
  4077. "name": "角色造型",
  4078. "path": "/表象/视觉/实体/人物/个体/形象呈现/整体形象/角色造型",
  4079. "level": 8,
  4080. "stable_id": null,
  4081. "description": "",
  4082. "is_real": false,
  4083. "is_hit": false,
  4084. "is_suggested": true,
  4085. "is_inferred": true,
  4086. "children": []
  4087. }
  4088. ]
  4089. },
  4090. {
  4091. "name": "叙事情境",
  4092. "path": "/表象/视觉/实体/人物/个体/形象呈现/叙事情境",
  4093. "level": 7,
  4094. "stable_id": null,
  4095. "description": "",
  4096. "is_real": false,
  4097. "is_hit": false,
  4098. "is_suggested": false,
  4099. "is_inferred": true,
  4100. "children": [
  4101. {
  4102. "name": "短剧人物场景",
  4103. "path": "/表象/视觉/实体/人物/个体/形象呈现/叙事情境/短剧人物场景",
  4104. "level": 8,
  4105. "stable_id": null,
  4106. "description": "",
  4107. "is_real": false,
  4108. "is_hit": false,
  4109. "is_suggested": true,
  4110. "is_inferred": true,
  4111. "children": []
  4112. }
  4113. ]
  4114. }
  4115. ]
  4116. }
  4117. ]
  4118. }
  4119. ]
  4120. },
  4121. {
  4122. "name": "物品",
  4123. "path": "/表象/视觉/实体/物品",
  4124. "level": 4,
  4125. "stable_id": 90,
  4126. "description": "日常生活和创作中的各类有形物品与媒体内容载体,包括工具器材、日用器物、穿戴品及影像、出版物等媒体制品",
  4127. "is_real": true,
  4128. "is_hit": false,
  4129. "is_suggested": false,
  4130. "children": [
  4131. {
  4132. "name": "影像物品",
  4133. "path": "/表象/视觉/实体/物品/影像物品",
  4134. "level": 5,
  4135. "stable_id": 119,
  4136. "description": "动态和静态的视觉记录内容,包括照片、视频、纪录片等",
  4137. "is_real": true,
  4138. "is_hit": false,
  4139. "is_suggested": false,
  4140. "children": [
  4141. {
  4142. "name": "生活影像",
  4143. "path": "/表象/视觉/实体/物品/影像物品/生活影像",
  4144. "level": 6,
  4145. "stable_id": 131,
  4146. "description": "记录日常生活、非正式场合的照片、合影、视频片段等影像内容",
  4147. "is_real": true,
  4148. "is_hit": false,
  4149. "is_suggested": false,
  4150. "children": [
  4151. {
  4152. "name": "影像素材",
  4153. "path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材",
  4154. "level": 7,
  4155. "stable_id": 3153,
  4156. "description": "用于视频制作、内容呈现的画面片段、视觉素材等",
  4157. "is_real": true,
  4158. "is_hit": true,
  4159. "is_suggested": false,
  4160. "children": [
  4161. {
  4162. "name": "拍摄视角",
  4163. "path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材/拍摄视角",
  4164. "level": 8,
  4165. "stable_id": 20911,
  4166. "description": "特写、航拍、全身镜面、画中画等以特定拍摄方式或构图形式呈现的镜头素材",
  4167. "is_real": true,
  4168. "is_hit": true,
  4169. "is_suggested": false,
  4170. "children": []
  4171. },
  4172. {
  4173. "name": "分镜单帧",
  4174. "path": "/表象/视觉/实体/物品/影像物品/生活影像/影像素材/分镜单帧",
  4175. "level": 8,
  4176. "stable_id": null,
  4177. "description": "",
  4178. "is_real": false,
  4179. "is_hit": false,
  4180. "is_suggested": true,
  4181. "is_inferred": true,
  4182. "children": []
  4183. }
  4184. ]
  4185. }
  4186. ]
  4187. },
  4188. {
  4189. "name": "影视作品",
  4190. "path": "/表象/视觉/实体/物品/影像物品/影视作品",
  4191. "level": 6,
  4192. "stable_id": 463,
  4193. "description": "电影、电视剧、纪录片等影视类作品,包括经典影视和时代作品",
  4194. "is_real": true,
  4195. "is_hit": true,
  4196. "is_suggested": false,
  4197. "children": [
  4198. {
  4199. "name": "短剧片段",
  4200. "path": "/表象/视觉/实体/物品/影像物品/影视作品/短剧片段",
  4201. "level": 7,
  4202. "stable_id": null,
  4203. "description": "",
  4204. "is_real": false,
  4205. "is_hit": false,
  4206. "is_suggested": true,
  4207. "is_inferred": true,
  4208. "children": []
  4209. }
  4210. ]
  4211. }
  4212. ]
  4213. }
  4214. ]
  4215. },
  4216. {
  4217. "name": "动物",
  4218. "path": "/表象/视觉/实体/动物",
  4219. "level": 4,
  4220. "stable_id": 100,
  4221. "description": "各类动物生命体",
  4222. "is_real": true,
  4223. "is_hit": false,
  4224. "is_suggested": false,
  4225. "children": [
  4226. {
  4227. "name": "虚拟角色",
  4228. "path": "/表象/视觉/实体/动物/虚拟角色",
  4229. "level": 5,
  4230. "stable_id": 244,
  4231. "description": "3D渲染、卡通化等非真实动物的虚拟视觉形象",
  4232. "is_real": true,
  4233. "is_hit": false,
  4234. "is_suggested": false,
  4235. "children": [
  4236. {
  4237. "name": "拟人卡通",
  4238. "path": "/表象/视觉/实体/动物/虚拟角色/拟人卡通",
  4239. "level": 6,
  4240. "stable_id": 10971,
  4241. "description": "以卡通化、拟人化手法呈现的虚拟动物角色,包括3D毛绒风格、二次元动画及游戏IP角色等",
  4242. "is_real": true,
  4243. "is_hit": true,
  4244. "is_suggested": false,
  4245. "children": [
  4246. {
  4247. "name": "橘猫角色",
  4248. "path": "/表象/视觉/实体/动物/虚拟角色/拟人卡通/橘猫角色",
  4249. "level": 7,
  4250. "stable_id": null,
  4251. "description": "",
  4252. "is_real": false,
  4253. "is_hit": false,
  4254. "is_suggested": true,
  4255. "is_inferred": true,
  4256. "children": []
  4257. }
  4258. ]
  4259. }
  4260. ]
  4261. },
  4262. {
  4263. "name": "宠物",
  4264. "path": "/表象/视觉/实体/动物/宠物",
  4265. "level": 5,
  4266. "stable_id": 243,
  4267. "description": "家养宠物及内容中以宠物形态出现的动物角色",
  4268. "is_real": true,
  4269. "is_hit": false,
  4270. "is_suggested": false,
  4271. "children": [
  4272. {
  4273. "name": "宠物猫",
  4274. "path": "/表象/视觉/实体/动物/宠物/宠物猫",
  4275. "level": 6,
  4276. "stable_id": 21651,
  4277. "description": "以猫为主体的宠物内容,包括各种品种、状态的宠物猫形象",
  4278. "is_real": true,
  4279. "is_hit": true,
  4280. "is_suggested": false,
  4281. "children": []
  4282. }
  4283. ]
  4284. }
  4285. ]
  4286. }
  4287. ]
  4288. },
  4289. {
  4290. "name": "画面",
  4291. "path": "/表象/视觉/画面",
  4292. "level": 3,
  4293. "stable_id": 249,
  4294. "description": "画面中的视觉创作骨架要素,包括色彩、构图、光影、镜头及后期处理等视觉呈现维度",
  4295. "is_real": true,
  4296. "is_hit": false,
  4297. "is_suggested": false,
  4298. "children": [
  4299. {
  4300. "name": "后期",
  4301. "path": "/表象/视觉/画面/后期",
  4302. "level": 4,
  4303. "stable_id": 23236,
  4304. "description": "画面的后期处理与整体视觉风格,包括美学风格、情绪氛围、材质质感、文化属性等综合视觉处理",
  4305. "is_real": true,
  4306. "is_hit": false,
  4307. "is_suggested": false,
  4308. "children": [
  4309. {
  4310. "name": "情绪意境",
  4311. "path": "/表象/视觉/画面/后期/情绪意境",
  4312. "level": 5,
  4313. "stable_id": 736,
  4314. "description": "画面传达的情感氛围和精神感受",
  4315. "is_real": true,
  4316. "is_hit": false,
  4317. "is_suggested": false,
  4318. "children": [
  4319. {
  4320. "name": "场景氛围",
  4321. "path": "/表象/视觉/画面/后期/情绪意境/场景氛围",
  4322. "level": 6,
  4323. "stable_id": 20791,
  4324. "description": "特定环境或场所营造的整体氛围感受,包含环境氛围、视听氛围、文化氛围等",
  4325. "is_real": true,
  4326. "is_hit": true,
  4327. "is_suggested": false,
  4328. "children": []
  4329. }
  4330. ]
  4331. },
  4332. {
  4333. "name": "材质质感",
  4334. "path": "/表象/视觉/画面/后期/材质质感",
  4335. "level": 5,
  4336. "stable_id": 737,
  4337. "description": "物体表面的触觉和视觉质地特征",
  4338. "is_real": true,
  4339. "is_hit": false,
  4340. "is_suggested": false,
  4341. "children": [
  4342. {
  4343. "name": "影像质感",
  4344. "path": "/表象/视觉/画面/后期/材质质感/影像质感",
  4345. "level": 6,
  4346. "stable_id": 19932,
  4347. "description": "摄影或数字媒介产生的质感风格,包括胶片颗粒、柔焦、滤镜、AI质感等视觉效果",
  4348. "is_real": true,
  4349. "is_hit": true,
  4350. "is_suggested": false,
  4351. "children": []
  4352. }
  4353. ]
  4354. }
  4355. ]
  4356. }
  4357. ]
  4358. },
  4359. {
  4360. "name": "行为",
  4361. "path": "/表象/视觉/行为",
  4362. "level": 3,
  4363. "stable_id": 94,
  4364. "description": "人物的动作、表演、互动等活动要素",
  4365. "is_real": true,
  4366. "is_hit": false,
  4367. "is_suggested": false,
  4368. "children": [
  4369. {
  4370. "name": "人际互动",
  4371. "path": "/表象/视觉/行为/人际互动",
  4372. "level": 4,
  4373. "stable_id": 109,
  4374. "description": "对话、情感表达、情绪反应等人际间的日常交流行为",
  4375. "is_real": true,
  4376. "is_hit": false,
  4377. "is_suggested": false,
  4378. "children": [
  4379. {
  4380. "name": "关系行为",
  4381. "path": "/表象/视觉/行为/人际互动/关系行为",
  4382. "level": 5,
  4383. "stable_id": 1416,
  4384. "description": "基于特定关系类型的互动行为,包括正面的关系维护、正式的礼仪规范和负面的冲突对抗",
  4385. "is_real": true,
  4386. "is_hit": false,
  4387. "is_suggested": false,
  4388. "children": [
  4389. {
  4390. "name": "冲突对抗",
  4391. "path": "/表象/视觉/行为/人际互动/关系行为/冲突对抗",
  4392. "level": 6,
  4393. "stable_id": 1194,
  4394. "description": "具有对抗性、戏剧性的冲突场景和行为",
  4395. "is_real": true,
  4396. "is_hit": true,
  4397. "is_suggested": false,
  4398. "children": [
  4399. {
  4400. "name": "猫少女短剧植入",
  4401. "path": "/表象/视觉/行为/人际互动/关系行为/冲突对抗/猫少女短剧植入",
  4402. "level": 7,
  4403. "stable_id": null,
  4404. "description": "",
  4405. "is_real": false,
  4406. "is_hit": false,
  4407. "is_suggested": true,
  4408. "is_inferred": true,
  4409. "children": []
  4410. },
  4411. {
  4412. "name": "猫少女对峙",
  4413. "path": "/表象/视觉/行为/人际互动/关系行为/冲突对抗/猫少女对峙",
  4414. "level": 7,
  4415. "stable_id": null,
  4416. "description": "",
  4417. "is_real": false,
  4418. "is_hit": false,
  4419. "is_suggested": true,
  4420. "is_inferred": true,
  4421. "children": []
  4422. }
  4423. ]
  4424. }
  4425. ]
  4426. },
  4427. {
  4428. "name": "反应回应",
  4429. "path": "/表象/视觉/行为/人际互动/反应回应",
  4430. "level": 5,
  4431. "stable_id": 1193,
  4432. "description": "面对刺激或情境时的情绪反馈和回应行为",
  4433. "is_real": true,
  4434. "is_hit": true,
  4435. "is_suggested": false,
  4436. "children": []
  4437. }
  4438. ]
  4439. },
  4440. {
  4441. "name": "表演行为",
  4442. "path": "/表象/视觉/行为/表演行为",
  4443. "level": 4,
  4444. "stable_id": 95,
  4445. "description": "为观众呈现的动作展示和演出",
  4446. "is_real": true,
  4447. "is_hit": false,
  4448. "is_suggested": false,
  4449. "children": [
  4450. {
  4451. "name": "舞蹈",
  4452. "path": "/表象/视觉/行为/表演行为/舞蹈",
  4453. "level": 5,
  4454. "stable_id": 1241,
  4455. "description": "各类舞蹈形式、动作和表演",
  4456. "is_real": true,
  4457. "is_hit": true,
  4458. "is_suggested": false,
  4459. "children": [
  4460. {
  4461. "name": "女性热舞",
  4462. "path": "/表象/视觉/行为/表演行为/舞蹈/女性热舞",
  4463. "level": 6,
  4464. "stable_id": null,
  4465. "description": "",
  4466. "is_real": false,
  4467. "is_hit": false,
  4468. "is_suggested": false,
  4469. "is_inferred": true,
  4470. "children": [
  4471. {
  4472. "name": "短视频",
  4473. "path": "/表象/视觉/行为/表演行为/舞蹈/女性热舞/短视频",
  4474. "level": 7,
  4475. "stable_id": null,
  4476. "description": "",
  4477. "is_real": false,
  4478. "is_hit": false,
  4479. "is_suggested": true,
  4480. "is_inferred": true,
  4481. "children": []
  4482. }
  4483. ]
  4484. }
  4485. ]
  4486. },
  4487. {
  4488. "name": "综艺表演",
  4489. "path": "/表象/视觉/行为/表演行为/综艺表演",
  4490. "level": 5,
  4491. "stable_id": 118,
  4492. "description": "搞笑、才艺展示等综合性娱乐演出",
  4493. "is_real": true,
  4494. "is_hit": false,
  4495. "is_suggested": false,
  4496. "children": [
  4497. {
  4498. "name": "喜剧表演",
  4499. "path": "/表象/视觉/行为/表演行为/综艺表演/喜剧表演",
  4500. "level": 6,
  4501. "stable_id": 3011,
  4502. "description": "以幽默、滑稽为特征的综艺演出形式",
  4503. "is_real": true,
  4504. "is_hit": false,
  4505. "is_suggested": false,
  4506. "children": [
  4507. {
  4508. "name": "情景剧",
  4509. "path": "/表象/视觉/行为/表演行为/综艺表演/喜剧表演/情景剧",
  4510. "level": 7,
  4511. "stable_id": 3016,
  4512. "description": "以特定场景为基础的喜剧表演形式",
  4513. "is_real": true,
  4514. "is_hit": true,
  4515. "is_suggested": false,
  4516. "children": []
  4517. }
  4518. ]
  4519. }
  4520. ]
  4521. }
  4522. ]
  4523. }
  4524. ]
  4525. }
  4526. ]
  4527. }
  4528. ]
  4529. }
  4530. ],
  4531. "xingshi": [
  4532. {
  4533. "name": "架构",
  4534. "path": "/架构",
  4535. "level": 1,
  4536. "stable_id": 133,
  4537. "description": "内容中需要理解含义后才能识别的组织策略、逻辑结构和叙事手法",
  4538. "is_real": true,
  4539. "is_hit": false,
  4540. "is_suggested": true,
  4541. "children": [
  4542. {
  4543. "name": "叙事",
  4544. "path": "/架构/叙事",
  4545. "level": 2,
  4546. "stable_id": 139,
  4547. "description": "叙事视角、叙事结构、剧情编排等叙述层面的组织策略",
  4548. "is_real": true,
  4549. "is_hit": true,
  4550. "is_suggested": false,
  4551. "children": [
  4552. {
  4553. "name": "叙事技法",
  4554. "path": "/架构/叙事/叙事技法",
  4555. "level": 3,
  4556. "stable_id": 1030,
  4557. "description": "叙事领域的核心技法集合,涵盖对照叙事、戏剧张力、情感叙事、风格化表达及叙事操作手法",
  4558. "is_real": true,
  4559. "is_hit": false,
  4560. "is_suggested": false,
  4561. "children": [
  4562. {
  4563. "name": "戏剧张力",
  4564. "path": "/架构/叙事/叙事技法/戏剧张力",
  4565. "level": 4,
  4566. "stable_id": 185,
  4567. "description": "通过冲突、反转、悬念等戏剧手法构建情节张力的策略",
  4568. "is_real": true,
  4569. "is_hit": false,
  4570. "is_suggested": false,
  4571. "children": [
  4572. {
  4573. "name": "反转",
  4574. "path": "/架构/叙事/叙事技法/戏剧张力/反转",
  4575. "level": 5,
  4576. "stable_id": 24931,
  4577. "description": "通过打破已建立的预期或认知产生意外效果的叙事手法,包括逻辑、情感、结局等维度的反转",
  4578. "is_real": true,
  4579. "is_hit": false,
  4580. "is_suggested": false,
  4581. "children": [
  4582. {
  4583. "name": "结局反转",
  4584. "path": "/架构/叙事/叙事技法/戏剧张力/反转/结局反转",
  4585. "level": 6,
  4586. "stable_id": 4533,
  4587. "description": "在叙事结尾处产生意外转折的手法",
  4588. "is_real": true,
  4589. "is_hit": true,
  4590. "is_suggested": false,
  4591. "children": []
  4592. },
  4593. {
  4594. "name": "逻辑反转",
  4595. "path": "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转",
  4596. "level": 6,
  4597. "stable_id": 4531,
  4598. "description": "通过打破逻辑预期或认知常识产生反转效果的手法",
  4599. "is_real": true,
  4600. "is_hit": true,
  4601. "is_suggested": false,
  4602. "children": []
  4603. },
  4604. {
  4605. "name": "故事反转",
  4606. "path": "/架构/叙事/叙事技法/戏剧张力/反转/故事反转",
  4607. "level": 6,
  4608. "stable_id": null,
  4609. "description": "",
  4610. "is_real": false,
  4611. "is_hit": false,
  4612. "is_suggested": true,
  4613. "is_inferred": true,
  4614. "children": []
  4615. }
  4616. ]
  4617. },
  4618. {
  4619. "name": "冲突",
  4620. "path": "/架构/叙事/叙事技法/戏剧张力/冲突",
  4621. "level": 5,
  4622. "stable_id": 24914,
  4623. "description": "通过对立双方的直接对抗与摩擦制造叙事张力的手法,包括行为、言语、价值、情节等层面的冲突",
  4624. "is_real": true,
  4625. "is_hit": false,
  4626. "is_suggested": false,
  4627. "children": [
  4628. {
  4629. "name": "情节冲突",
  4630. "path": "/架构/叙事/叙事技法/戏剧张力/冲突/情节冲突",
  4631. "level": 6,
  4632. "stable_id": 4174,
  4633. "description": "在情节设计层面通过戏剧化、极端化等手法构建的冲突",
  4634. "is_real": true,
  4635. "is_hit": true,
  4636. "is_suggested": false,
  4637. "children": []
  4638. }
  4639. ]
  4640. }
  4641. ]
  4642. }
  4643. ]
  4644. },
  4645. {
  4646. "name": "叙事组织",
  4647. "path": "/架构/叙事/叙事组织",
  4648. "level": 3,
  4649. "stable_id": 165,
  4650. "description": "故事的结构安排、情节展开、视角选择等叙事组织",
  4651. "is_real": true,
  4652. "is_hit": false,
  4653. "is_suggested": false,
  4654. "children": [
  4655. {
  4656. "name": "脉络铺排",
  4657. "path": "/架构/叙事/叙事组织/脉络铺排",
  4658. "level": 4,
  4659. "stable_id": 1029,
  4660. "description": "故事的时间线索、结构框架与情节展开安排",
  4661. "is_real": true,
  4662. "is_hit": false,
  4663. "is_suggested": false,
  4664. "children": [
  4665. {
  4666. "name": "结构编排",
  4667. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排",
  4668. "level": 5,
  4669. "stable_id": 542,
  4670. "description": "内容各部分的组织安排与框架设计",
  4671. "is_real": true,
  4672. "is_hit": false,
  4673. "is_suggested": false,
  4674. "children": [
  4675. {
  4676. "name": "框架类型",
  4677. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型",
  4678. "level": 6,
  4679. "stable_id": 1438,
  4680. "description": "各种结构框架的类型与形式,包括通用框架概念和特定载体的结构形式",
  4681. "is_real": true,
  4682. "is_hit": false,
  4683. "is_suggested": false,
  4684. "children": [
  4685. {
  4686. "name": "分段叙事",
  4687. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事",
  4688. "level": 7,
  4689. "stable_id": 5852,
  4690. "description": "将内容切分为多个独立片段或板块的叙事组织形式,包括并列展开、顺序拼接、章节划分、递进分级等多种切分方式",
  4691. "is_real": true,
  4692. "is_hit": true,
  4693. "is_suggested": false,
  4694. "children": []
  4695. },
  4696. {
  4697. "name": "分镜叙事",
  4698. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分镜叙事",
  4699. "level": 7,
  4700. "stable_id": null,
  4701. "description": "",
  4702. "is_real": false,
  4703. "is_hit": false,
  4704. "is_suggested": false,
  4705. "is_inferred": true,
  4706. "children": [
  4707. {
  4708. "name": "连续剧情",
  4709. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分镜叙事/连续剧情",
  4710. "level": 8,
  4711. "stable_id": null,
  4712. "description": "",
  4713. "is_real": false,
  4714. "is_hit": false,
  4715. "is_suggested": true,
  4716. "is_inferred": true,
  4717. "children": []
  4718. }
  4719. ]
  4720. },
  4721. {
  4722. "name": "分集短剧",
  4723. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分集短剧",
  4724. "level": 7,
  4725. "stable_id": null,
  4726. "description": "",
  4727. "is_real": false,
  4728. "is_hit": false,
  4729. "is_suggested": true,
  4730. "is_inferred": true,
  4731. "children": []
  4732. }
  4733. ]
  4734. },
  4735. {
  4736. "name": "剧情节奏",
  4737. "path": "/架构/叙事/叙事组织/脉络铺排/结构编排/剧情节奏",
  4738. "level": 6,
  4739. "stable_id": null,
  4740. "description": "",
  4741. "is_real": false,
  4742. "is_hit": false,
  4743. "is_suggested": true,
  4744. "is_inferred": true,
  4745. "children": []
  4746. }
  4747. ]
  4748. }
  4749. ]
  4750. },
  4751. {
  4752. "name": "角色书写",
  4753. "path": "/架构/叙事/叙事组织/角色书写",
  4754. "level": 4,
  4755. "stable_id": 1028,
  4756. "description": "围绕叙事主体的人物刻画与角色线索组织",
  4757. "is_real": true,
  4758. "is_hit": true,
  4759. "is_suggested": false,
  4760. "children": [
  4761. {
  4762. "name": "角色塑造",
  4763. "path": "/架构/叙事/叙事组织/角色书写/角色塑造",
  4764. "level": 5,
  4765. "stable_id": 337,
  4766. "description": "为叙事主体设定的人格特征、身份标签与形象定位",
  4767. "is_real": true,
  4768. "is_hit": true,
  4769. "is_suggested": false,
  4770. "children": []
  4771. }
  4772. ]
  4773. },
  4774. {
  4775. "name": "短剧改编",
  4776. "path": "/架构/叙事/叙事组织/短剧改编",
  4777. "level": 4,
  4778. "stable_id": null,
  4779. "description": "",
  4780. "is_real": false,
  4781. "is_hit": false,
  4782. "is_suggested": true,
  4783. "is_inferred": true,
  4784. "children": []
  4785. },
  4786. {
  4787. "name": "完整故事",
  4788. "path": "/架构/叙事/叙事组织/完整故事",
  4789. "level": 4,
  4790. "stable_id": null,
  4791. "description": "",
  4792. "is_real": false,
  4793. "is_hit": false,
  4794. "is_suggested": false,
  4795. "is_inferred": true,
  4796. "children": [
  4797. {
  4798. "name": "节奏转场",
  4799. "path": "/架构/叙事/叙事组织/完整故事/节奏转场",
  4800. "level": 5,
  4801. "stable_id": null,
  4802. "description": "",
  4803. "is_real": false,
  4804. "is_hit": false,
  4805. "is_suggested": true,
  4806. "is_inferred": true,
  4807. "children": []
  4808. }
  4809. ]
  4810. }
  4811. ]
  4812. },
  4813. {
  4814. "name": "叙事演绎",
  4815. "path": "/架构/叙事/叙事演绎",
  4816. "level": 3,
  4817. "stable_id": null,
  4818. "description": "",
  4819. "is_real": false,
  4820. "is_hit": false,
  4821. "is_suggested": false,
  4822. "is_inferred": true,
  4823. "children": [
  4824. {
  4825. "name": "角色场景剧情",
  4826. "path": "/架构/叙事/叙事演绎/角色场景剧情",
  4827. "level": 4,
  4828. "stable_id": null,
  4829. "description": "",
  4830. "is_real": false,
  4831. "is_hit": false,
  4832. "is_suggested": true,
  4833. "is_inferred": true,
  4834. "children": []
  4835. }
  4836. ]
  4837. }
  4838. ]
  4839. },
  4840. {
  4841. "name": "逻辑",
  4842. "path": "/架构/逻辑",
  4843. "level": 2,
  4844. "stable_id": 140,
  4845. "description": "论证结构、信息编排、因果链条等逻辑层面的组织策略",
  4846. "is_real": true,
  4847. "is_hit": false,
  4848. "is_suggested": false,
  4849. "children": [
  4850. {
  4851. "name": "信息编排逻辑",
  4852. "path": "/架构/逻辑/信息编排逻辑",
  4853. "level": 3,
  4854. "stable_id": 158,
  4855. "description": "信息的组织、排列与论证结构",
  4856. "is_real": true,
  4857. "is_hit": false,
  4858. "is_suggested": false,
  4859. "children": [
  4860. {
  4861. "name": "条目列举",
  4862. "path": "/架构/逻辑/信息编排逻辑/条目列举",
  4863. "level": 4,
  4864. "stable_id": 167,
  4865. "description": "清单、排名、分段等将内容条目化排列的编排方式",
  4866. "is_real": true,
  4867. "is_hit": false,
  4868. "is_suggested": false,
  4869. "children": [
  4870. {
  4871. "name": "分段结构",
  4872. "path": "/架构/逻辑/信息编排逻辑/条目列举/分段结构",
  4873. "level": 5,
  4874. "stable_id": 350,
  4875. "description": "将内容按逻辑框架分段、分步、分模块组织的编排",
  4876. "is_real": true,
  4877. "is_hit": true,
  4878. "is_suggested": false,
  4879. "children": []
  4880. }
  4881. ]
  4882. }
  4883. ]
  4884. }
  4885. ]
  4886. },
  4887. {
  4888. "name": "修辞",
  4889. "path": "/架构/修辞",
  4890. "level": 2,
  4891. "stable_id": 141,
  4892. "description": "修辞手法、语言风格、表达技巧等语言层面的策略",
  4893. "is_real": true,
  4894. "is_hit": false,
  4895. "is_suggested": false,
  4896. "children": [
  4897. {
  4898. "name": "修辞意象",
  4899. "path": "/架构/修辞/修辞意象",
  4900. "level": 3,
  4901. "stable_id": 169,
  4902. "description": "排比、具象化、意象、仪式化等辞格与意象运用",
  4903. "is_real": true,
  4904. "is_hit": false,
  4905. "is_suggested": false,
  4906. "children": [
  4907. {
  4908. "name": "句式辞格",
  4909. "path": "/架构/修辞/修辞意象/句式辞格",
  4910. "level": 4,
  4911. "stable_id": 213,
  4912. "description": "排比、反问、设问等通过特定句式结构产生修辞效果的格式运用",
  4913. "is_real": true,
  4914. "is_hit": false,
  4915. "is_suggested": false,
  4916. "children": [
  4917. {
  4918. "name": "韵律句式",
  4919. "path": "/架构/修辞/修辞意象/句式辞格/韵律句式",
  4920. "level": 5,
  4921. "stable_id": 538,
  4922. "description": "通过押韵、节奏等音韵特征增强记忆和传播效果的句式",
  4923. "is_real": true,
  4924. "is_hit": false,
  4925. "is_suggested": false,
  4926. "children": [
  4927. {
  4928. "name": "节奏韵律",
  4929. "path": "/架构/修辞/修辞意象/句式辞格/韵律句式/节奏韵律",
  4930. "level": 6,
  4931. "stable_id": 2932,
  4932. "description": "通过节奏、韵律等音韵规律增强语言表达的和谐感",
  4933. "is_real": true,
  4934. "is_hit": true,
  4935. "is_suggested": false,
  4936. "children": []
  4937. }
  4938. ]
  4939. }
  4940. ]
  4941. }
  4942. ]
  4943. }
  4944. ]
  4945. },
  4946. {
  4947. "name": "创意",
  4948. "path": "/架构/创意",
  4949. "level": 2,
  4950. "stable_id": 142,
  4951. "description": "创意手法、反转、对比、错位等创造性表现策略",
  4952. "is_real": true,
  4953. "is_hit": false,
  4954. "is_suggested": false,
  4955. "children": [
  4956. {
  4957. "name": "创意表现",
  4958. "path": "/架构/创意/创意表现",
  4959. "level": 3,
  4960. "stable_id": 1435,
  4961. "description": "强调创意性和艺术化处理的审美风格",
  4962. "is_real": true,
  4963. "is_hit": true,
  4964. "is_suggested": false,
  4965. "children": []
  4966. }
  4967. ]
  4968. },
  4969. {
  4970. "name": "策略",
  4971. "path": "/架构/策略",
  4972. "level": 2,
  4973. "stable_id": 143,
  4974. "description": "互动引导、情感调动、认知影响等功能性传播策略",
  4975. "is_real": true,
  4976. "is_hit": false,
  4977. "is_suggested": false,
  4978. "children": [
  4979. {
  4980. "name": "情感调动",
  4981. "path": "/架构/策略/情感调动",
  4982. "level": 3,
  4983. "stable_id": 163,
  4984. "description": "通过情感激发影响受众的策略",
  4985. "is_real": true,
  4986. "is_hit": false,
  4987. "is_suggested": false,
  4988. "children": [
  4989. {
  4990. "name": "情感激发",
  4991. "path": "/架构/策略/情感调动/情感激发",
  4992. "level": 4,
  4993. "stable_id": 175,
  4994. "description": "情感化表达、情感共鸣、怀旧等激发受众情感的策略",
  4995. "is_real": true,
  4996. "is_hit": false,
  4997. "is_suggested": false,
  4998. "children": [
  4999. {
  5000. "name": "情感渲染",
  5001. "path": "/架构/策略/情感调动/情感激发/情感渲染",
  5002. "level": 5,
  5003. "stable_id": 209,
  5004. "description": "通过情感化语言与氛围营造激发特定情绪的手法",
  5005. "is_real": true,
  5006. "is_hit": false,
  5007. "is_suggested": false,
  5008. "children": [
  5009. {
  5010. "name": "氛围营造",
  5011. "path": "/架构/策略/情感调动/情感激发/情感渲染/氛围营造",
  5012. "level": 6,
  5013. "stable_id": 1457,
  5014. "description": "通过环境描写或特定载体渲染情感氛围的手法",
  5015. "is_real": true,
  5016. "is_hit": true,
  5017. "is_suggested": false,
  5018. "children": []
  5019. }
  5020. ]
  5021. }
  5022. ]
  5023. }
  5024. ]
  5025. }
  5026. ]
  5027. }
  5028. ]
  5029. },
  5030. {
  5031. "name": "呈现",
  5032. "path": "/呈现",
  5033. "level": 1,
  5034. "stable_id": 132,
  5035. "description": "内容中受众可直接感知的形式要素,如视觉、听觉、文字外观等",
  5036. "is_real": true,
  5037. "is_hit": false,
  5038. "is_suggested": false,
  5039. "children": [
  5040. {
  5041. "name": "视觉",
  5042. "path": "/呈现/视觉",
  5043. "level": 2,
  5044. "stable_id": 137,
  5045. "description": "画面构图、色彩、光影、视觉风格等视觉层面的形式要素",
  5046. "is_real": true,
  5047. "is_hit": false,
  5048. "is_suggested": false,
  5049. "children": [
  5050. {
  5051. "name": "视觉画面",
  5052. "path": "/呈现/视觉/视觉画面",
  5053. "level": 3,
  5054. "stable_id": 24312,
  5055. "description": "画面中呈现的主体形象、符号元素等内容要素",
  5056. "is_real": true,
  5057. "is_hit": false,
  5058. "is_suggested": false,
  5059. "children": [
  5060. {
  5061. "name": "形象塑造",
  5062. "path": "/呈现/视觉/视觉画面/形象塑造",
  5063. "level": 4,
  5064. "stable_id": 1054,
  5065. "description": "人物、物体的外观呈现与形象表现",
  5066. "is_real": true,
  5067. "is_hit": false,
  5068. "is_suggested": false,
  5069. "children": [
  5070. {
  5071. "name": "造型装扮",
  5072. "path": "/呈现/视觉/视觉画面/形象塑造/造型装扮",
  5073. "level": 5,
  5074. "stable_id": 1067,
  5075. "description": "服饰穿搭、妆造处理与外观造型设计",
  5076. "is_real": true,
  5077. "is_hit": true,
  5078. "is_suggested": false,
  5079. "children": [
  5080. {
  5081. "name": "穿搭呈现",
  5082. "path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现",
  5083. "level": 6,
  5084. "stable_id": 1075,
  5085. "description": "服饰单品的搭配组合与整体穿着效果",
  5086. "is_real": true,
  5087. "is_hit": false,
  5088. "is_suggested": false,
  5089. "children": [
  5090. {
  5091. "name": "整体形象",
  5092. "path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象",
  5093. "level": 7,
  5094. "stable_id": 403,
  5095. "description": "通过服饰穿着呈现的整体外观形象与造型效果",
  5096. "is_real": true,
  5097. "is_hit": true,
  5098. "is_suggested": false,
  5099. "children": []
  5100. }
  5101. ]
  5102. },
  5103. {
  5104. "name": "创意造型",
  5105. "path": "/呈现/视觉/视觉画面/形象塑造/造型装扮/创意造型",
  5106. "level": 6,
  5107. "stable_id": 1076,
  5108. "description": "通过夸张、拟物等创意手法进行的非常规造型处理",
  5109. "is_real": true,
  5110. "is_hit": true,
  5111. "is_suggested": false,
  5112. "children": []
  5113. }
  5114. ]
  5115. },
  5116. {
  5117. "name": "人物表现",
  5118. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现",
  5119. "level": 5,
  5120. "stable_id": 1066,
  5121. "description": "人物的面部表情、肢体动作与行为表演",
  5122. "is_real": true,
  5123. "is_hit": false,
  5124. "is_suggested": false,
  5125. "children": [
  5126. {
  5127. "name": "动作姿态",
  5128. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态",
  5129. "level": 6,
  5130. "stable_id": 386,
  5131. "description": "肢体动作、身体姿态、行为表演等身体层面的形象表现",
  5132. "is_real": true,
  5133. "is_hit": true,
  5134. "is_suggested": false,
  5135. "children": [
  5136. {
  5137. "name": "表演性动作",
  5138. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作",
  5139. "level": 7,
  5140. "stable_id": 1469,
  5141. "description": "为内容呈现而进行的表演性动作,包括夸张表演、舞蹈、角色演绎等",
  5142. "is_real": true,
  5143. "is_hit": false,
  5144. "is_suggested": false,
  5145. "children": [
  5146. {
  5147. "name": "姿态体位",
  5148. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/姿态体位",
  5149. "level": 8,
  5150. "stable_id": 7672,
  5151. "description": "特定的身体姿势和体位呈现,如跪姿、蹲姿、站位等固定姿态",
  5152. "is_real": true,
  5153. "is_hit": true,
  5154. "is_suggested": false,
  5155. "children": []
  5156. },
  5157. {
  5158. "name": "夸张表演",
  5159. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/夸张表演",
  5160. "level": 8,
  5161. "stable_id": 1475,
  5162. "description": "夸张的表演动作,如夸张肢体动作、苦情化表演、搞笑行为等",
  5163. "is_real": true,
  5164. "is_hit": false,
  5165. "is_suggested": false,
  5166. "children": [
  5167. {
  5168. "name": "滑稽喜剧",
  5169. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/夸张表演/滑稽喜剧",
  5170. "level": 9,
  5171. "stable_id": 5211,
  5172. "description": "以幽默搞笑为目的的夸张表演,如搞笑行为、滑稽演绎、小丑风格等",
  5173. "is_real": true,
  5174. "is_hit": true,
  5175. "is_suggested": false,
  5176. "children": []
  5177. }
  5178. ]
  5179. },
  5180. {
  5181. "name": "舞蹈表演",
  5182. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/舞蹈表演",
  5183. "level": 8,
  5184. "stable_id": 1476,
  5185. "description": "舞蹈相关的表演动作,如舞蹈视频等",
  5186. "is_real": true,
  5187. "is_hit": true,
  5188. "is_suggested": false,
  5189. "children": []
  5190. }
  5191. ]
  5192. },
  5193. {
  5194. "name": "创意动作",
  5195. "path": "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/创意动作",
  5196. "level": 7,
  5197. "stable_id": 1473,
  5198. "description": "创意性的动作呈现,如嘴唇花等创意表现手法",
  5199. "is_real": true,
  5200. "is_hit": true,
  5201. "is_suggested": false,
  5202. "children": []
  5203. }
  5204. ]
  5205. }
  5206. ]
  5207. }
  5208. ]
  5209. }
  5210. ]
  5211. },
  5212. {
  5213. "name": "视觉制作",
  5214. "path": "/呈现/视觉/视觉制作",
  5215. "level": 3,
  5216. "stable_id": 1152,
  5217. "description": "影像的拍摄、素材获取、剪辑组接与后期加工",
  5218. "is_real": true,
  5219. "is_hit": false,
  5220. "is_suggested": false,
  5221. "children": [
  5222. {
  5223. "name": "素材来源",
  5224. "path": "/呈现/视觉/视觉制作/素材来源",
  5225. "level": 4,
  5226. "stable_id": 1055,
  5227. "description": "对既有影像、图片等素材的选取与引用",
  5228. "is_real": true,
  5229. "is_hit": false,
  5230. "is_suggested": false,
  5231. "children": [
  5232. {
  5233. "name": "影视素材",
  5234. "path": "/呈现/视觉/视觉制作/素材来源/影视素材",
  5235. "level": 5,
  5236. "stable_id": 195,
  5237. "description": "影视剧片段、演出片段等影视作品素材的截取与引用",
  5238. "is_real": true,
  5239. "is_hit": true,
  5240. "is_suggested": false,
  5241. "children": []
  5242. }
  5243. ]
  5244. },
  5245. {
  5246. "name": "后期处理",
  5247. "path": "/呈现/视觉/视觉制作/后期处理",
  5248. "level": 4,
  5249. "stable_id": 1052,
  5250. "description": "对画面进行技术加工与视觉优化的后期手段",
  5251. "is_real": true,
  5252. "is_hit": false,
  5253. "is_suggested": false,
  5254. "children": [
  5255. {
  5256. "name": "画质优化处理",
  5257. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理",
  5258. "level": 5,
  5259. "stable_id": 1062,
  5260. "description": "提升画面清晰度、质感与视觉效果的技术处理",
  5261. "is_real": true,
  5262. "is_hit": false,
  5263. "is_suggested": false,
  5264. "children": [
  5265. {
  5266. "name": "画质增强",
  5267. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强",
  5268. "level": 6,
  5269. "stable_id": 365,
  5270. "description": "画面清晰度提升与质感优化的技术处理",
  5271. "is_real": true,
  5272. "is_hit": true,
  5273. "is_suggested": false,
  5274. "children": []
  5275. },
  5276. {
  5277. "name": "光影质感",
  5278. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感",
  5279. "level": 6,
  5280. "stable_id": 333,
  5281. "description": "光影明暗、画面纹理与质感等视觉处理效果",
  5282. "is_real": true,
  5283. "is_hit": false,
  5284. "is_suggested": false,
  5285. "children": [
  5286. {
  5287. "name": "光影表现",
  5288. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/光影表现",
  5289. "level": 7,
  5290. "stable_id": 1448,
  5291. "description": "光线与阴影的视觉呈现效果,包括明暗对比、光源特征和整体氛围",
  5292. "is_real": true,
  5293. "is_hit": false,
  5294. "is_suggested": false,
  5295. "children": [
  5296. {
  5297. "name": "光源特征",
  5298. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/光影表现/光源特征",
  5299. "level": 8,
  5300. "stable_id": 1452,
  5301. "description": "光线的来源、方向、传播和散射等特征表现",
  5302. "is_real": true,
  5303. "is_hit": false,
  5304. "is_suggested": false,
  5305. "children": [
  5306. {
  5307. "name": "舞台光",
  5308. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/光影表现/光源特征/舞台光",
  5309. "level": 9,
  5310. "stable_id": 19336,
  5311. "description": "模拟舞台效果的聚光灯、顶光与暗背景处理",
  5312. "is_real": true,
  5313. "is_hit": true,
  5314. "is_suggested": false,
  5315. "children": []
  5316. }
  5317. ]
  5318. }
  5319. ]
  5320. },
  5321. {
  5322. "name": "材质纹理",
  5323. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理",
  5324. "level": 7,
  5325. "stable_id": 1449,
  5326. "description": "物体表面的质感、纹理和触觉特征的视觉呈现",
  5327. "is_real": true,
  5328. "is_hit": false,
  5329. "is_suggested": false,
  5330. "children": [
  5331. {
  5332. "name": "写实还原质感",
  5333. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感",
  5334. "level": 8,
  5335. "stable_id": 7076,
  5336. "description": "追求极致写实精度的材质还原效果,强调对真实物体材质的高度模拟与精准呈现",
  5337. "is_real": true,
  5338. "is_hit": true,
  5339. "is_suggested": false,
  5340. "children": []
  5341. }
  5342. ]
  5343. }
  5344. ]
  5345. },
  5346. {
  5347. "name": "超分增强",
  5348. "path": "/呈现/视觉/视觉制作/后期处理/画质优化处理/超分增强",
  5349. "level": 6,
  5350. "stable_id": null,
  5351. "description": "",
  5352. "is_real": false,
  5353. "is_hit": false,
  5354. "is_suggested": true,
  5355. "is_inferred": true,
  5356. "children": []
  5357. }
  5358. ]
  5359. }
  5360. ]
  5361. },
  5362. {
  5363. "name": "剪辑组接",
  5364. "path": "/呈现/视觉/视觉制作/剪辑组接",
  5365. "level": 4,
  5366. "stable_id": 1056,
  5367. "description": "对影像素材进行剪辑、组合与重构的加工方式",
  5368. "is_real": true,
  5369. "is_hit": false,
  5370. "is_suggested": false,
  5371. "children": [
  5372. {
  5373. "name": "剪辑手法",
  5374. "path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法",
  5375. "level": 5,
  5376. "stable_id": 1069,
  5377. "description": "镜头切换、节奏控制等基本剪辑技术",
  5378. "is_real": true,
  5379. "is_hit": false,
  5380. "is_suggested": false,
  5381. "children": [
  5382. {
  5383. "name": "节奏控制",
  5384. "path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  5385. "level": 6,
  5386. "stable_id": 878,
  5387. "description": "通过剪辑频率、切换速度控制影像呈现节奏的手法",
  5388. "is_real": true,
  5389. "is_hit": true,
  5390. "is_suggested": false,
  5391. "children": [
  5392. {
  5393. "name": "快节奏处理",
  5394. "path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/快节奏处理",
  5395. "level": 7,
  5396. "stable_id": 2231,
  5397. "description": "通过高频切换、快速剪辑加快影像节奏的手法",
  5398. "is_real": true,
  5399. "is_hit": true,
  5400. "is_suggested": false,
  5401. "children": []
  5402. },
  5403. {
  5404. "name": "节奏概念",
  5405. "path": "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念",
  5406. "level": 7,
  5407. "stable_id": 2251,
  5408. "description": "节奏相关的概念性描述和抽象表达",
  5409. "is_real": true,
  5410. "is_hit": true,
  5411. "is_suggested": false,
  5412. "children": []
  5413. }
  5414. ]
  5415. }
  5416. ]
  5417. },
  5418. {
  5419. "name": "字幕编排",
  5420. "path": "/呈现/视觉/视觉制作/剪辑组接/字幕编排",
  5421. "level": 5,
  5422. "stable_id": null,
  5423. "description": "",
  5424. "is_real": false,
  5425. "is_hit": false,
  5426. "is_suggested": false,
  5427. "is_inferred": true,
  5428. "children": [
  5429. {
  5430. "name": "后置字幕",
  5431. "path": "/呈现/视觉/视觉制作/剪辑组接/字幕编排/后置字幕",
  5432. "level": 6,
  5433. "stable_id": null,
  5434. "description": "",
  5435. "is_real": false,
  5436. "is_hit": false,
  5437. "is_suggested": true,
  5438. "is_inferred": true,
  5439. "children": []
  5440. }
  5441. ]
  5442. }
  5443. ]
  5444. },
  5445. {
  5446. "name": "实景拍摄",
  5447. "path": "/呈现/视觉/视觉制作/实景拍摄",
  5448. "level": 4,
  5449. "stable_id": 1058,
  5450. "description": "以真实场景、人物、物品为对象的实拍取材",
  5451. "is_real": true,
  5452. "is_hit": true,
  5453. "is_suggested": false,
  5454. "children": [
  5455. {
  5456. "name": "拍摄取景",
  5457. "path": "/呈现/视觉/视觉制作/实景拍摄/拍摄取景",
  5458. "level": 5,
  5459. "stable_id": 25451,
  5460. "description": "",
  5461. "is_real": true,
  5462. "is_hit": false,
  5463. "is_suggested": false,
  5464. "children": [
  5465. {
  5466. "name": "场景取景",
  5467. "path": "/呈现/视觉/视觉制作/实景拍摄/拍摄取景/场景取景",
  5468. "level": 6,
  5469. "stable_id": 431,
  5470. "description": "以真实地理环境或生活场景为对象的实景取材与场景记录",
  5471. "is_real": true,
  5472. "is_hit": true,
  5473. "is_suggested": false,
  5474. "children": []
  5475. }
  5476. ]
  5477. },
  5478. {
  5479. "name": "拍摄方式",
  5480. "path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式",
  5481. "level": 5,
  5482. "stable_id": 1074,
  5483. "description": "即时抓拍、预设拍摄等不同的拍摄执行方式",
  5484. "is_real": true,
  5485. "is_hit": true,
  5486. "is_suggested": false,
  5487. "children": [
  5488. {
  5489. "name": "即时捕捉",
  5490. "path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉",
  5491. "level": 6,
  5492. "stable_id": 433,
  5493. "description": "抓拍、随拍、动态捕捉等非预设的即时性拍摄手法",
  5494. "is_real": true,
  5495. "is_hit": false,
  5496. "is_suggested": false,
  5497. "children": [
  5498. {
  5499. "name": "动态捕捉",
  5500. "path": "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉",
  5501. "level": 7,
  5502. "stable_id": 19311,
  5503. "description": "在运动过程中捕捉动态瞬间的拍摄手法,包括动作捕捉、动态抓拍、连续动态等",
  5504. "is_real": true,
  5505. "is_hit": true,
  5506. "is_suggested": false,
  5507. "children": []
  5508. }
  5509. ]
  5510. }
  5511. ]
  5512. }
  5513. ]
  5514. },
  5515. {
  5516. "name": "构图编排",
  5517. "path": "/呈现/视觉/视觉制作/构图编排",
  5518. "level": 4,
  5519. "stable_id": 1150,
  5520. "description": "画面的空间组织与版面布局设计",
  5521. "is_real": true,
  5522. "is_hit": true,
  5523. "is_suggested": false,
  5524. "children": [
  5525. {
  5526. "name": "版面设计",
  5527. "path": "/呈现/视觉/视觉制作/构图编排/版面设计",
  5528. "level": 5,
  5529. "stable_id": 1053,
  5530. "description": "文字、图形在版面上的排版布局与视觉组织",
  5531. "is_real": true,
  5532. "is_hit": false,
  5533. "is_suggested": false,
  5534. "children": [
  5535. {
  5536. "name": "图文关系",
  5537. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/图文关系",
  5538. "level": 6,
  5539. "stable_id": 1064,
  5540. "description": "图片与文字的空间编排与语义配合",
  5541. "is_real": true,
  5542. "is_hit": false,
  5543. "is_suggested": false,
  5544. "children": [
  5545. {
  5546. "name": "图文编排",
  5547. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/图文关系/图文编排",
  5548. "level": 7,
  5549. "stable_id": 399,
  5550. "description": "图片与文字在版面上的空间组织与布局方式",
  5551. "is_real": true,
  5552. "is_hit": false,
  5553. "is_suggested": false,
  5554. "children": [
  5555. {
  5556. "name": "配图选择",
  5557. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/图文关系/图文编排/配图选择",
  5558. "level": 8,
  5559. "stable_id": 20033,
  5560. "description": "为文字内容选配图片的方式与策略",
  5561. "is_real": true,
  5562. "is_hit": true,
  5563. "is_suggested": false,
  5564. "children": []
  5565. }
  5566. ]
  5567. }
  5568. ]
  5569. },
  5570. {
  5571. "name": "版面结构",
  5572. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/版面结构",
  5573. "level": 6,
  5574. "stable_id": 334,
  5575. "description": "页面整体的版式骨架与空间分割方式",
  5576. "is_real": true,
  5577. "is_hit": false,
  5578. "is_suggested": false,
  5579. "children": [
  5580. {
  5581. "name": "载体类型",
  5582. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/版面结构/载体类型",
  5583. "level": 7,
  5584. "stable_id": 1431,
  5585. "description": "信息呈现的载体形式",
  5586. "is_real": true,
  5587. "is_hit": false,
  5588. "is_suggested": false,
  5589. "children": [
  5590. {
  5591. "name": "视频载体",
  5592. "path": "/呈现/视觉/视觉制作/构图编排/版面设计/版面结构/载体类型/视频载体",
  5593. "level": 8,
  5594. "stable_id": 2851,
  5595. "description": "以动态影像为核心的信息呈现载体",
  5596. "is_real": true,
  5597. "is_hit": true,
  5598. "is_suggested": false,
  5599. "children": []
  5600. }
  5601. ]
  5602. }
  5603. ]
  5604. }
  5605. ]
  5606. },
  5607. {
  5608. "name": "空间布局",
  5609. "path": "/呈现/视觉/视觉制作/构图编排/空间布局",
  5610. "level": 5,
  5611. "stable_id": 1050,
  5612. "description": "画面中元素的空间组织、构图方式与视觉编排",
  5613. "is_real": true,
  5614. "is_hit": false,
  5615. "is_suggested": false,
  5616. "children": [
  5617. {
  5618. "name": "构图方式",
  5619. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式",
  5620. "level": 6,
  5621. "stable_id": 1059,
  5622. "description": "画面框架的几何结构与空间分割方式",
  5623. "is_real": true,
  5624. "is_hit": false,
  5625. "is_suggested": false,
  5626. "children": [
  5627. {
  5628. "name": "人物布局",
  5629. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局",
  5630. "level": 7,
  5631. "stable_id": 1814,
  5632. "description": "以人物为主体的画面组织方式",
  5633. "is_real": true,
  5634. "is_hit": true,
  5635. "is_suggested": false,
  5636. "children": [
  5637. {
  5638. "name": "人物姿态",
  5639. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局/人物姿态",
  5640. "level": 8,
  5641. "stable_id": 19152,
  5642. "description": "以人物整体肢体姿态为主要构图特征,包括坐姿、站立、动态及多姿态组合构图",
  5643. "is_real": true,
  5644. "is_hit": true,
  5645. "is_suggested": false,
  5646. "children": []
  5647. }
  5648. ]
  5649. },
  5650. {
  5651. "name": "动态叙事",
  5652. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  5653. "level": 7,
  5654. "stable_id": 1816,
  5655. "description": "具有运动感或故事引导性的构图方式",
  5656. "is_real": true,
  5657. "is_hit": true,
  5658. "is_suggested": false,
  5659. "children": []
  5660. }
  5661. ]
  5662. },
  5663. {
  5664. "name": "元素编排",
  5665. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排",
  5666. "level": 6,
  5667. "stable_id": 1060,
  5668. "description": "画面中多个元素的排列组织与空间关系处理",
  5669. "is_real": true,
  5670. "is_hit": false,
  5671. "is_suggested": false,
  5672. "children": [
  5673. {
  5674. "name": "组合关系",
  5675. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/组合关系",
  5676. "level": 7,
  5677. "stable_id": 426,
  5678. "description": "多个元素之间的并置、联动与关联方式",
  5679. "is_real": true,
  5680. "is_hit": false,
  5681. "is_suggested": false,
  5682. "children": [
  5683. {
  5684. "name": "并列叠加",
  5685. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/组合关系/并列叠加",
  5686. "level": 8,
  5687. "stable_id": 20332,
  5688. "description": "将多个视觉元素并列摆放或叠加组合的通用呈现方式",
  5689. "is_real": true,
  5690. "is_hit": true,
  5691. "is_suggested": false,
  5692. "children": []
  5693. }
  5694. ]
  5695. },
  5696. {
  5697. "name": "排列节奏",
  5698. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏",
  5699. "level": 7,
  5700. "stable_id": 424,
  5701. "description": "元素在画面中按特定模式或规律进行有序排列的编排方式",
  5702. "is_real": true,
  5703. "is_hit": false,
  5704. "is_suggested": false,
  5705. "children": [
  5706. {
  5707. "name": "阵列排列",
  5708. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列",
  5709. "level": 8,
  5710. "stable_id": 2291,
  5711. "description": "元素按行列、网格或几何规律整齐排列的组织方式",
  5712. "is_real": true,
  5713. "is_hit": false,
  5714. "is_suggested": false,
  5715. "children": [
  5716. {
  5717. "name": "网格矩阵",
  5718. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵",
  5719. "level": 9,
  5720. "stable_id": 6531,
  5721. "description": "元素按网格、矩阵、点阵等规则几何形式排列的组织方式",
  5722. "is_real": true,
  5723. "is_hit": true,
  5724. "is_suggested": false,
  5725. "children": []
  5726. }
  5727. ]
  5728. }
  5729. ]
  5730. }
  5731. ]
  5732. },
  5733. {
  5734. "name": "景别角度",
  5735. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度",
  5736. "level": 6,
  5737. "stable_id": 1061,
  5738. "description": "拍摄距离、角度与视距的选择",
  5739. "is_real": true,
  5740. "is_hit": false,
  5741. "is_suggested": false,
  5742. "children": [
  5743. {
  5744. "name": "特写近景",
  5745. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景",
  5746. "level": 7,
  5747. "stable_id": 352,
  5748. "description": "近距离放大呈现局部细节与人物的景别选择",
  5749. "is_real": true,
  5750. "is_hit": false,
  5751. "is_suggested": false,
  5752. "children": [
  5753. {
  5754. "name": "通用技法",
  5755. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法",
  5756. "level": 8,
  5757. "stable_id": 2033,
  5758. "description": "不限定拍摄对象的通用特写拍摄技法和术语",
  5759. "is_real": true,
  5760. "is_hit": false,
  5761. "is_suggested": false,
  5762. "children": [
  5763. {
  5764. "name": "极致特写",
  5765. "path": "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  5766. "level": 9,
  5767. "stable_id": 7713,
  5768. "description": "通过极端距离、高频次或视觉压迫等方式强化特写效果的拍摄风格",
  5769. "is_real": true,
  5770. "is_hit": true,
  5771. "is_suggested": false,
  5772. "children": []
  5773. }
  5774. ]
  5775. }
  5776. ]
  5777. }
  5778. ]
  5779. }
  5780. ]
  5781. }
  5782. ]
  5783. },
  5784. {
  5785. "name": "分镜设计",
  5786. "path": "/呈现/视觉/视觉制作/分镜设计",
  5787. "level": 4,
  5788. "stable_id": null,
  5789. "description": "",
  5790. "is_real": false,
  5791. "is_hit": false,
  5792. "is_suggested": false,
  5793. "is_inferred": true,
  5794. "children": [
  5795. {
  5796. "name": "人物调度",
  5797. "path": "/呈现/视觉/视觉制作/分镜设计/人物调度",
  5798. "level": 5,
  5799. "stable_id": null,
  5800. "description": "",
  5801. "is_real": false,
  5802. "is_hit": false,
  5803. "is_suggested": false,
  5804. "is_inferred": true,
  5805. "children": [
  5806. {
  5807. "name": "场景分镜",
  5808. "path": "/呈现/视觉/视觉制作/分镜设计/人物调度/场景分镜",
  5809. "level": 6,
  5810. "stable_id": null,
  5811. "description": "",
  5812. "is_real": false,
  5813. "is_hit": false,
  5814. "is_suggested": true,
  5815. "is_inferred": true,
  5816. "children": []
  5817. }
  5818. ]
  5819. }
  5820. ]
  5821. }
  5822. ]
  5823. },
  5824. {
  5825. "name": "视觉风格",
  5826. "path": "/呈现/视觉/视觉风格",
  5827. "level": 3,
  5828. "stable_id": 1057,
  5829. "description": "画面的整体美学风格与视觉气质",
  5830. "is_real": true,
  5831. "is_hit": false,
  5832. "is_suggested": false,
  5833. "children": [
  5834. {
  5835. "name": "视觉艺术风格",
  5836. "path": "/呈现/视觉/视觉风格/视觉艺术风格",
  5837. "level": 4,
  5838. "stable_id": 1071,
  5839. "description": "源自特定艺术流派或审美取向的风格化处理",
  5840. "is_real": true,
  5841. "is_hit": false,
  5842. "is_suggested": false,
  5843. "children": [
  5844. {
  5845. "name": "影视风格",
  5846. "path": "/呈现/视觉/视觉风格/视觉艺术风格/影视风格",
  5847. "level": 5,
  5848. "stable_id": 1991,
  5849. "description": "模拟电影、综艺、舞台剧等影视节目的视觉呈现风格",
  5850. "is_real": true,
  5851. "is_hit": false,
  5852. "is_suggested": false,
  5853. "children": [
  5854. {
  5855. "name": "电影风格",
  5856. "path": "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格",
  5857. "level": 6,
  5858. "stable_id": 1999,
  5859. "description": "模拟电影的艺术表现手法和质感",
  5860. "is_real": true,
  5861. "is_hit": true,
  5862. "is_suggested": false,
  5863. "children": []
  5864. }
  5865. ]
  5866. },
  5867. {
  5868. "name": "现代气质",
  5869. "path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质",
  5870. "level": 5,
  5871. "stable_id": 24754,
  5872. "description": "以抽象概念或气质特征定义的现代审美风格,包括时尚现代、精致高端、文艺意境、经典气质、力量硬朗、科技未来等",
  5873. "is_real": true,
  5874. "is_hit": false,
  5875. "is_suggested": false,
  5876. "children": [
  5877. {
  5878. "name": "时尚现代",
  5879. "path": "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  5880. "level": 6,
  5881. "stable_id": 20113,
  5882. "description": "符合当代流行趋势、都市感、现代感的审美取向",
  5883. "is_real": true,
  5884. "is_hit": true,
  5885. "is_suggested": false,
  5886. "children": []
  5887. }
  5888. ]
  5889. }
  5890. ]
  5891. },
  5892. {
  5893. "name": "视觉氛围风格",
  5894. "path": "/呈现/视觉/视觉风格/视觉氛围风格",
  5895. "level": 4,
  5896. "stable_id": 1072,
  5897. "description": "画面传达的情绪氛围与感受基调",
  5898. "is_real": true,
  5899. "is_hit": false,
  5900. "is_suggested": false,
  5901. "children": [
  5902. {
  5903. "name": "怀旧复古",
  5904. "path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古",
  5905. "level": 5,
  5906. "stable_id": 204,
  5907. "description": "具有年代感、复古气息、黑白影像质感的视觉氛围",
  5908. "is_real": true,
  5909. "is_hit": true,
  5910. "is_suggested": false,
  5911. "children": [
  5912. {
  5913. "name": "技术呈现",
  5914. "path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现",
  5915. "level": 6,
  5916. "stable_id": 3452,
  5917. "description": "通过色调、滤镜、胶片质感等技术手段实现的怀旧视觉效果",
  5918. "is_real": true,
  5919. "is_hit": false,
  5920. "is_suggested": false,
  5921. "children": [
  5922. {
  5923. "name": "复古色调",
  5924. "path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/复古色调",
  5925. "level": 7,
  5926. "stable_id": 20051,
  5927. "description": "通用的复古色调与滤镜处理,包括整体偏暗、偏黄或偏红的年代感色彩风格,不特指胶片介质",
  5928. "is_real": true,
  5929. "is_hit": true,
  5930. "is_suggested": false,
  5931. "children": []
  5932. },
  5933. {
  5934. "name": "老照片风格",
  5935. "path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/老照片风格",
  5936. "level": 7,
  5937. "stable_id": 20056,
  5938. "description": "模拟旧时代照片或早期影像的整体视觉风格,包括褪色、斑驳、老旧感的影像效果",
  5939. "is_real": true,
  5940. "is_hit": true,
  5941. "is_suggested": false,
  5942. "children": []
  5943. },
  5944. {
  5945. "name": "胶片色调",
  5946. "path": "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/胶片色调",
  5947. "level": 7,
  5948. "stable_id": 20052,
  5949. "description": "模拟胶片摄影的色调与滤镜效果,包括低饱和度、泛黄、怀旧感的胶片色彩呈现",
  5950. "is_real": true,
  5951. "is_hit": true,
  5952. "is_suggested": false,
  5953. "children": []
  5954. }
  5955. ]
  5956. }
  5957. ]
  5958. }
  5959. ]
  5960. }
  5961. ]
  5962. }
  5963. ]
  5964. },
  5965. {
  5966. "name": "听觉",
  5967. "path": "/呈现/听觉",
  5968. "level": 2,
  5969. "stable_id": 138,
  5970. "description": "音乐、音效、语音、旁白等听觉层面的形式要素",
  5971. "is_real": true,
  5972. "is_hit": false,
  5973. "is_suggested": false,
  5974. "children": [
  5975. {
  5976. "name": "配乐",
  5977. "path": "/呈现/听觉/配乐",
  5978. "level": 3,
  5979. "stable_id": 179,
  5980. "description": "视频中烘托氛围、传递情感的背景音乐",
  5981. "is_real": true,
  5982. "is_hit": false,
  5983. "is_suggested": false,
  5984. "children": [
  5985. {
  5986. "name": "节奏特征",
  5987. "path": "/呈现/听觉/配乐/节奏特征",
  5988. "level": 4,
  5989. "stable_id": 1953,
  5990. "description": "按节奏律动特征描述的配乐风格,如欢快、强节奏、动感等",
  5991. "is_real": true,
  5992. "is_hit": true,
  5993. "is_suggested": false,
  5994. "children": []
  5995. }
  5996. ]
  5997. },
  5998. {
  5999. "name": "语音",
  6000. "path": "/呈现/听觉/语音",
  6001. "level": 3,
  6002. "stable_id": 25251,
  6003. "description": "",
  6004. "is_real": true,
  6005. "is_hit": false,
  6006. "is_suggested": false,
  6007. "children": [
  6008. {
  6009. "name": "表达形式",
  6010. "path": "/呈现/听觉/语音/表达形式",
  6011. "level": 4,
  6012. "stable_id": 149,
  6013. "description": "口头解说、旁白、配音等语音层面的呈现",
  6014. "is_real": true,
  6015. "is_hit": false,
  6016. "is_suggested": false,
  6017. "children": [
  6018. {
  6019. "name": "风格化解说",
  6020. "path": "/呈现/听觉/语音/表达形式/风格化解说",
  6021. "level": 5,
  6022. "stable_id": 219,
  6023. "description": "纪实性、演讲式、互动式等具有特定风格或功能特征的解说方式",
  6024. "is_real": true,
  6025. "is_hit": false,
  6026. "is_suggested": false,
  6027. "children": [
  6028. {
  6029. "name": "叙事手法",
  6030. "path": "/呈现/听觉/语音/表达形式/风格化解说/叙事手法",
  6031. "level": 6,
  6032. "stable_id": 2012,
  6033. "description": "通过特定叙事方式进行解说,如纪实性、故事性等",
  6034. "is_real": true,
  6035. "is_hit": true,
  6036. "is_suggested": false,
  6037. "children": []
  6038. }
  6039. ]
  6040. }
  6041. ]
  6042. },
  6043. {
  6044. "name": "角色塑造",
  6045. "path": "/呈现/听觉/语音/角色塑造",
  6046. "level": 4,
  6047. "stable_id": null,
  6048. "description": "",
  6049. "is_real": false,
  6050. "is_hit": false,
  6051. "is_suggested": false,
  6052. "is_inferred": true,
  6053. "children": [
  6054. {
  6055. "name": "角色音色",
  6056. "path": "/呈现/听觉/语音/角色塑造/角色音色",
  6057. "level": 5,
  6058. "stable_id": null,
  6059. "description": "",
  6060. "is_real": false,
  6061. "is_hit": false,
  6062. "is_suggested": true,
  6063. "is_inferred": true,
  6064. "children": []
  6065. }
  6066. ]
  6067. }
  6068. ]
  6069. }
  6070. ]
  6071. }
  6072. ]
  6073. }
  6074. ]
  6075. },
  6076. "actions": [
  6077. {
  6078. "verb": "提取",
  6079. "count": 2,
  6080. "definition": "从已有素材中抽取关键信息(提示词反推、关键帧提取等)"
  6081. },
  6082. {
  6083. "verb": "生成",
  6084. "count": 25,
  6085. "definition": "根据指令或参考产出新内容"
  6086. },
  6087. {
  6088. "verb": "筛选",
  6089. "count": 1,
  6090. "definition": "从候选中挑选或按条件过滤"
  6091. },
  6092. {
  6093. "verb": "剪辑",
  6094. "count": 2,
  6095. "definition": "视频片段切分、组合、节奏调整"
  6096. },
  6097. {
  6098. "verb": "扩展",
  6099. "count": 1,
  6100. "definition": "基于已有内容扩写、衍生"
  6101. },
  6102. {
  6103. "verb": "改写",
  6104. "count": 2,
  6105. "definition": "在保留主旨的前提下重写或修订文本"
  6106. },
  6107. {
  6108. "verb": "增强",
  6109. "count": 1,
  6110. "definition": "对图像或视频做清晰化、超分等质量提升"
  6111. }
  6112. ],
  6113. "modalities": [
  6114. {
  6115. "sig": "文本 → 图片",
  6116. "count": 11
  6117. },
  6118. {
  6119. "sig": "文本 → 文本",
  6120. "count": 9
  6121. },
  6122. {
  6123. "sig": "图片+文本 → 视频",
  6124. "count": 4
  6125. },
  6126. {
  6127. "sig": "图片 → 图片",
  6128. "count": 3
  6129. },
  6130. {
  6131. "sig": "视频 → 视频",
  6132. "count": 2
  6133. },
  6134. {
  6135. "sig": "视频+文本 → 文本",
  6136. "count": 1
  6137. },
  6138. {
  6139. "sig": "图片+文本 → 图片",
  6140. "count": 1
  6141. },
  6142. {
  6143. "sig": "音频 → 音频",
  6144. "count": 1
  6145. },
  6146. {
  6147. "sig": "文本+图片 → 视频",
  6148. "count": 1
  6149. },
  6150. {
  6151. "sig": "文本+图片 → 图片",
  6152. "count": 1
  6153. }
  6154. ],
  6155. "stats": {
  6156. "cases": 6,
  6157. "fragments": 34,
  6158. "fragments_skipped": 3,
  6159. "actions": 7,
  6160. "shizhi_nodes": 1
  6161. },
  6162. "itemsets": [
  6163. {
  6164. "items": [
  6165. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6166. ],
  6167. "size": 1,
  6168. "support": 14,
  6169. "fragments": [
  6170. "1:f_s1_0",
  6171. "1:f_s2_0",
  6172. "1:f_s3_0",
  6173. "2:f_s2_1",
  6174. "2:f_s3_1",
  6175. "2:f_s3_2",
  6176. "2:f_s3_3",
  6177. "2:f_s4_0",
  6178. "3:f_s2_2",
  6179. "3:f_s3_0",
  6180. "3:f_s3_1",
  6181. "3:f_s4_0",
  6182. "6:f_s1_0",
  6183. "6:f_s2_0"
  6184. ],
  6185. "facets": {
  6186. "实质": [
  6187. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6188. ],
  6189. "形式": [],
  6190. "both": []
  6191. }
  6192. },
  6193. {
  6194. "items": [
  6195. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制"
  6196. ],
  6197. "size": 1,
  6198. "support": 7,
  6199. "fragments": [
  6200. "2:f_s5_0",
  6201. "3:f_s1_1",
  6202. "3:f_s1_2",
  6203. "3:f_s4_0",
  6204. "4:f_s2_0",
  6205. "4:f_s2_1",
  6206. "4:f_s3_0"
  6207. ],
  6208. "facets": {
  6209. "实质": [],
  6210. "形式": [
  6211. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制"
  6212. ],
  6213. "both": []
  6214. }
  6215. },
  6216. {
  6217. "items": [
  6218. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活"
  6219. ],
  6220. "size": 1,
  6221. "support": 6,
  6222. "fragments": [
  6223. "2:f_s1_0",
  6224. "2:f_s2_0",
  6225. "2:f_s3_0",
  6226. "2:f_s3_1",
  6227. "2:f_s3_2",
  6228. "2:f_s3_3"
  6229. ],
  6230. "facets": {
  6231. "实质": [
  6232. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活"
  6233. ],
  6234. "形式": [],
  6235. "both": []
  6236. }
  6237. },
  6238. {
  6239. "items": [
  6240. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写"
  6241. ],
  6242. "size": 1,
  6243. "support": 5,
  6244. "fragments": [
  6245. "2:f_s2_1",
  6246. "2:f_s3_0",
  6247. "2:f_s3_1",
  6248. "2:f_s3_2",
  6249. "2:f_s3_3"
  6250. ],
  6251. "facets": {
  6252. "实质": [],
  6253. "形式": [
  6254. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写"
  6255. ],
  6256. "both": []
  6257. }
  6258. },
  6259. {
  6260. "items": [
  6261. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事"
  6262. ],
  6263. "size": 1,
  6264. "support": 5,
  6265. "fragments": [
  6266. "2:f_s2_1",
  6267. "2:f_s4_0",
  6268. "3:f_s2_0",
  6269. "3:f_s2_1",
  6270. "3:f_s3_0"
  6271. ],
  6272. "facets": {
  6273. "实质": [],
  6274. "形式": [
  6275. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事"
  6276. ],
  6277. "both": []
  6278. }
  6279. },
  6280. {
  6281. "items": [
  6282. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  6283. "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  6284. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活"
  6285. ],
  6286. "size": 3,
  6287. "support": 4,
  6288. "fragments": [
  6289. "2:f_s3_0",
  6290. "2:f_s3_1",
  6291. "2:f_s3_2",
  6292. "2:f_s3_3"
  6293. ],
  6294. "facets": {
  6295. "实质": [
  6296. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活"
  6297. ],
  6298. "形式": [
  6299. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  6300. "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代"
  6301. ],
  6302. "both": []
  6303. }
  6304. },
  6305. {
  6306. "items": [
  6307. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  6308. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6309. ],
  6310. "size": 2,
  6311. "support": 4,
  6312. "fragments": [
  6313. "2:f_s2_1",
  6314. "2:f_s3_1",
  6315. "2:f_s3_2",
  6316. "2:f_s3_3"
  6317. ],
  6318. "facets": {
  6319. "实质": [
  6320. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6321. ],
  6322. "形式": [
  6323. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写"
  6324. ],
  6325. "both": []
  6326. }
  6327. },
  6328. {
  6329. "items": [
  6330. "/架构/叙事"
  6331. ],
  6332. "size": 1,
  6333. "support": 4,
  6334. "fragments": [
  6335. "3:f_s1_0",
  6336. "3:f_s1_1",
  6337. "3:f_s3_0",
  6338. "3:f_s4_0"
  6339. ],
  6340. "facets": {
  6341. "实质": [],
  6342. "形式": [
  6343. "/架构/叙事"
  6344. ],
  6345. "both": []
  6346. }
  6347. },
  6348. {
  6349. "items": [
  6350. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6351. ],
  6352. "size": 1,
  6353. "support": 4,
  6354. "fragments": [
  6355. "4:f_s1_0",
  6356. "4:f_s1_1",
  6357. "4:f_s1_2",
  6358. "6:f_s1_0"
  6359. ],
  6360. "facets": {
  6361. "实质": [
  6362. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6363. ],
  6364. "形式": [],
  6365. "both": []
  6366. }
  6367. },
  6368. {
  6369. "items": [
  6370. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6371. ],
  6372. "size": 1,
  6373. "support": 4,
  6374. "fragments": [
  6375. "5:f_s2_0",
  6376. "6:f_s2_0",
  6377. "6:f_s3_0",
  6378. "6:f_s4_0"
  6379. ],
  6380. "facets": {
  6381. "实质": [
  6382. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6383. ],
  6384. "形式": [],
  6385. "both": []
  6386. }
  6387. },
  6388. {
  6389. "items": [
  6390. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  6391. "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代",
  6392. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  6393. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6394. ],
  6395. "size": 4,
  6396. "support": 3,
  6397. "fragments": [
  6398. "2:f_s3_1",
  6399. "2:f_s3_2",
  6400. "2:f_s3_3"
  6401. ],
  6402. "facets": {
  6403. "实质": [
  6404. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  6405. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6406. ],
  6407. "形式": [
  6408. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写",
  6409. "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代"
  6410. ],
  6411. "both": []
  6412. }
  6413. },
  6414. {
  6415. "items": [
  6416. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  6417. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6418. ],
  6419. "size": 2,
  6420. "support": 3,
  6421. "fragments": [
  6422. "2:f_s2_1",
  6423. "2:f_s4_0",
  6424. "3:f_s3_0"
  6425. ],
  6426. "facets": {
  6427. "实质": [
  6428. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6429. ],
  6430. "形式": [
  6431. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事"
  6432. ],
  6433. "both": []
  6434. }
  6435. },
  6436. {
  6437. "items": [
  6438. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  6439. "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述"
  6440. ],
  6441. "size": 2,
  6442. "support": 3,
  6443. "fragments": [
  6444. "3:f_s2_0",
  6445. "3:f_s2_1",
  6446. "3:f_s3_0"
  6447. ],
  6448. "facets": {
  6449. "实质": [
  6450. "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述"
  6451. ],
  6452. "形式": [
  6453. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事"
  6454. ],
  6455. "both": []
  6456. }
  6457. },
  6458. {
  6459. "items": [
  6460. "/架构/叙事",
  6461. "/理念/事件/社会事件/人物故事/趣闻轶事"
  6462. ],
  6463. "size": 2,
  6464. "support": 3,
  6465. "fragments": [
  6466. "3:f_s1_0",
  6467. "3:f_s1_1",
  6468. "3:f_s3_0"
  6469. ],
  6470. "facets": {
  6471. "实质": [
  6472. "/理念/事件/社会事件/人物故事/趣闻轶事"
  6473. ],
  6474. "形式": [
  6475. "/架构/叙事"
  6476. ],
  6477. "both": []
  6478. }
  6479. },
  6480. {
  6481. "items": [
  6482. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态"
  6483. ],
  6484. "size": 1,
  6485. "support": 3,
  6486. "fragments": [
  6487. "1:f_s1_0",
  6488. "1:f_s3_0",
  6489. "4:f_s1_1"
  6490. ],
  6491. "facets": {
  6492. "实质": [],
  6493. "形式": [
  6494. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态"
  6495. ],
  6496. "both": []
  6497. }
  6498. },
  6499. {
  6500. "items": [
  6501. "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事"
  6502. ],
  6503. "size": 1,
  6504. "support": 3,
  6505. "fragments": [
  6506. "2:f_s2_0",
  6507. "2:f_s5_0",
  6508. "6:f_s2_0"
  6509. ],
  6510. "facets": {
  6511. "实质": [],
  6512. "形式": [
  6513. "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事"
  6514. ],
  6515. "both": []
  6516. }
  6517. },
  6518. {
  6519. "items": [
  6520. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭"
  6521. ],
  6522. "size": 1,
  6523. "support": 3,
  6524. "fragments": [
  6525. "2:f_s1_0",
  6526. "2:f_s2_0",
  6527. "2:f_s4_0"
  6528. ],
  6529. "facets": {
  6530. "实质": [
  6531. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭"
  6532. ],
  6533. "形式": [],
  6534. "both": []
  6535. }
  6536. },
  6537. {
  6538. "items": [
  6539. "/表象/视觉/画面/后期/情绪意境/场景氛围"
  6540. ],
  6541. "size": 1,
  6542. "support": 3,
  6543. "fragments": [
  6544. "3:f_s2_0",
  6545. "3:f_s2_1",
  6546. "6:f_s1_0"
  6547. ],
  6548. "facets": {
  6549. "实质": [
  6550. "/表象/视觉/画面/后期/情绪意境/场景氛围"
  6551. ],
  6552. "形式": [],
  6553. "both": []
  6554. }
  6555. },
  6556. {
  6557. "items": [
  6558. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6559. "/表象/视觉/实体/人物/个体/身份角色",
  6560. "/表象/视觉/实体/动物/宠物/宠物猫",
  6561. "/表象/视觉/行为/人际互动/关系行为/冲突对抗"
  6562. ],
  6563. "size": 4,
  6564. "support": 2,
  6565. "fragments": [
  6566. "4:f_s2_0",
  6567. "4:f_s3_0"
  6568. ],
  6569. "facets": {
  6570. "实质": [
  6571. "/表象/视觉/实体/人物/个体/身份角色",
  6572. "/表象/视觉/实体/动物/宠物/宠物猫",
  6573. "/表象/视觉/行为/人际互动/关系行为/冲突对抗"
  6574. ],
  6575. "形式": [
  6576. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制"
  6577. ],
  6578. "both": []
  6579. }
  6580. },
  6581. {
  6582. "items": [
  6583. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  6584. "/架构/创意/创意表现",
  6585. "/表象/视觉/画面/后期/情绪意境/场景氛围",
  6586. "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述"
  6587. ],
  6588. "size": 4,
  6589. "support": 2,
  6590. "fragments": [
  6591. "3:f_s2_0",
  6592. "3:f_s2_1"
  6593. ],
  6594. "facets": {
  6595. "实质": [
  6596. "/表象/视觉/画面/后期/情绪意境/场景氛围",
  6597. "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述"
  6598. ],
  6599. "形式": [
  6600. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事",
  6601. "/架构/创意/创意表现"
  6602. ],
  6603. "both": []
  6604. }
  6605. },
  6606. {
  6607. "items": [
  6608. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  6609. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  6610. "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感"
  6611. ],
  6612. "size": 3,
  6613. "support": 2,
  6614. "fragments": [
  6615. "2:f_s1_0",
  6616. "2:f_s2_0"
  6617. ],
  6618. "facets": {
  6619. "实质": [
  6620. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活",
  6621. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭",
  6622. "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感"
  6623. ],
  6624. "形式": [],
  6625. "both": []
  6626. }
  6627. },
  6628. {
  6629. "items": [
  6630. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6631. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念"
  6632. ],
  6633. "size": 2,
  6634. "support": 2,
  6635. "fragments": [
  6636. "4:f_s2_0",
  6637. "4:f_s2_1"
  6638. ],
  6639. "facets": {
  6640. "实质": [],
  6641. "形式": [
  6642. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6643. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念"
  6644. ],
  6645. "both": []
  6646. }
  6647. },
  6648. {
  6649. "items": [
  6650. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6651. "/架构/叙事"
  6652. ],
  6653. "size": 2,
  6654. "support": 2,
  6655. "fragments": [
  6656. "3:f_s1_1",
  6657. "3:f_s4_0"
  6658. ],
  6659. "facets": {
  6660. "实质": [],
  6661. "形式": [
  6662. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6663. "/架构/叙事"
  6664. ],
  6665. "both": []
  6666. }
  6667. },
  6668. {
  6669. "items": [
  6670. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制",
  6671. "/理念/知识/思想/概念范畴/时间过程"
  6672. ],
  6673. "size": 2,
  6674. "support": 2,
  6675. "fragments": [
  6676. "3:f_s1_1",
  6677. "3:f_s1_2"
  6678. ],
  6679. "facets": {
  6680. "实质": [
  6681. "/理念/知识/思想/概念范畴/时间过程"
  6682. ],
  6683. "形式": [
  6684. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制"
  6685. ],
  6686. "both": []
  6687. }
  6688. },
  6689. {
  6690. "items": [
  6691. "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强",
  6692. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6693. ],
  6694. "size": 2,
  6695. "support": 2,
  6696. "fragments": [
  6697. "6:f_s2_0",
  6698. "6:f_s4_0"
  6699. ],
  6700. "facets": {
  6701. "实质": [
  6702. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6703. ],
  6704. "形式": [
  6705. "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强"
  6706. ],
  6707. "both": []
  6708. }
  6709. },
  6710. {
  6711. "items": [
  6712. "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵",
  6713. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6714. ],
  6715. "size": 2,
  6716. "support": 2,
  6717. "fragments": [
  6718. "6:f_s2_0",
  6719. "6:f_s3_0"
  6720. ],
  6721. "facets": {
  6722. "实质": [
  6723. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材"
  6724. ],
  6725. "形式": [
  6726. "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵"
  6727. ],
  6728. "both": []
  6729. }
  6730. },
  6731. {
  6732. "items": [
  6733. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局",
  6734. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6735. ],
  6736. "size": 2,
  6737. "support": 2,
  6738. "fragments": [
  6739. "4:f_s1_1",
  6740. "4:f_s1_2"
  6741. ],
  6742. "facets": {
  6743. "实质": [
  6744. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6745. ],
  6746. "形式": [
  6747. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局"
  6748. ],
  6749. "both": []
  6750. }
  6751. },
  6752. {
  6753. "items": [
  6754. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态",
  6755. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6756. ],
  6757. "size": 2,
  6758. "support": 2,
  6759. "fragments": [
  6760. "1:f_s1_0",
  6761. "1:f_s3_0"
  6762. ],
  6763. "facets": {
  6764. "实质": [
  6765. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6766. ],
  6767. "形式": [
  6768. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态"
  6769. ],
  6770. "both": []
  6771. }
  6772. },
  6773. {
  6774. "items": [
  6775. "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象",
  6776. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6777. ],
  6778. "size": 2,
  6779. "support": 2,
  6780. "fragments": [
  6781. "1:f_s1_0",
  6782. "1:f_s2_0"
  6783. ],
  6784. "facets": {
  6785. "实质": [
  6786. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6787. ],
  6788. "形式": [
  6789. "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象"
  6790. ],
  6791. "both": []
  6792. }
  6793. },
  6794. {
  6795. "items": [
  6796. "/架构/叙事",
  6797. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6798. ],
  6799. "size": 2,
  6800. "support": 2,
  6801. "fragments": [
  6802. "3:f_s3_0",
  6803. "3:f_s4_0"
  6804. ],
  6805. "facets": {
  6806. "实质": [
  6807. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色"
  6808. ],
  6809. "形式": [
  6810. "/架构/叙事"
  6811. ],
  6812. "both": []
  6813. }
  6814. },
  6815. {
  6816. "items": [
  6817. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型",
  6818. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6819. ],
  6820. "size": 2,
  6821. "support": 2,
  6822. "fragments": [
  6823. "4:f_s1_0",
  6824. "4:f_s1_1"
  6825. ],
  6826. "facets": {
  6827. "实质": [
  6828. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型",
  6829. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定"
  6830. ],
  6831. "形式": [],
  6832. "both": []
  6833. }
  6834. },
  6835. {
  6836. "items": [
  6837. "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感"
  6838. ],
  6839. "size": 1,
  6840. "support": 2,
  6841. "fragments": [
  6842. "5:f_s1_0",
  6843. "5:f_s2_0"
  6844. ],
  6845. "facets": {
  6846. "实质": [],
  6847. "形式": [
  6848. "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感"
  6849. ],
  6850. "both": []
  6851. }
  6852. },
  6853. {
  6854. "items": [
  6855. "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉"
  6856. ],
  6857. "size": 1,
  6858. "support": 2,
  6859. "fragments": [
  6860. "1:f_s3_0",
  6861. "1:f_s4_0"
  6862. ],
  6863. "facets": {
  6864. "实质": [],
  6865. "形式": [
  6866. "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉"
  6867. ],
  6868. "both": []
  6869. }
  6870. },
  6871. {
  6872. "items": [
  6873. "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格"
  6874. ],
  6875. "size": 1,
  6876. "support": 2,
  6877. "fragments": [
  6878. "4:f_s1_2",
  6879. "4:f_s3_0"
  6880. ],
  6881. "facets": {
  6882. "实质": [],
  6883. "形式": [
  6884. "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格"
  6885. ],
  6886. "both": []
  6887. }
  6888. },
  6889. {
  6890. "items": [
  6891. "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转"
  6892. ],
  6893. "size": 1,
  6894. "support": 2,
  6895. "fragments": [
  6896. "3:f_s1_0",
  6897. "3:f_s1_2"
  6898. ],
  6899. "facets": {
  6900. "实质": [],
  6901. "形式": [
  6902. "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转"
  6903. ],
  6904. "both": []
  6905. }
  6906. }
  6907. ],
  6908. "itemsetsParams": {
  6909. "min_support": 2,
  6910. "max_k": 6,
  6911. "include_ancestors": false,
  6912. "transactions": 34,
  6913. "unique_items": 77,
  6914. "frequent_count": 80,
  6915. "closed_count": 35
  6916. },
  6917. "pathToFacet": {
  6918. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/叙事角色": "实质",
  6919. "/表象/视觉/空间/空间场所/生活场景": "实质",
  6920. "/呈现/视觉/视觉制作/实景拍摄/拍摄方式": "形式",
  6921. "/呈现/视觉/视觉画面/形象塑造/造型装扮/穿搭呈现/整体形象": "形式",
  6922. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态": "形式",
  6923. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/姿态体位": "形式",
  6924. "/表象/视觉/实体/人物/个体/形象呈现/身体特征/姿态状态/动作姿势": "实质",
  6925. "/呈现/视觉/视觉制作/实景拍摄/拍摄方式/即时捕捉/动态捕捉": "形式",
  6926. "/表象/视觉/实体/物品/影像物品/影视作品": "实质",
  6927. "/呈现/视觉/视觉制作/实景拍摄/拍摄取景/场景取景": "形式",
  6928. "/呈现/视觉/视觉制作/素材来源/影视素材": "形式",
  6929. "/理念/观念/个人观念/情感认同/人际情谊/婚恋情感": "实质",
  6930. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/富贵生活": "实质",
  6931. "/理念/现象/生活状态/个人境遇/生活状态/生活品质/逆袭": "实质",
  6932. "/架构/叙事/叙事组织/脉络铺排/结构编排/框架类型/分段叙事": "形式",
  6933. "/架构/叙事/叙事技法/戏剧张力/反转/结局反转": "形式",
  6934. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/快节奏处理": "形式",
  6935. "/表象/视觉/行为/人际互动/反应回应": "实质",
  6936. "/理念/现象": "实质",
  6937. "/呈现/视觉/视觉制作/构图编排/空间布局/景别角度/特写近景/通用技法/极致特写": "形式",
  6938. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/动态叙事": "形式",
  6939. "/架构/修辞/修辞意象/句式辞格/韵律句式/节奏韵律": "形式",
  6940. "/表象/视觉/实体/人物/群体/社会身份/家庭群体/大家族": "实质",
  6941. "/呈现/视觉/视觉风格/视觉艺术风格/现代气质/时尚现代": "形式",
  6942. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/夸张表演/滑稽喜剧": "形式",
  6943. "/理念/知识/思想/概念范畴/性质属性/风格属性": "实质",
  6944. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制": "形式",
  6945. "/架构/逻辑/信息编排逻辑/条目列举/分段结构": "形式",
  6946. "/理念/事件/社会事件/人物故事/趣闻轶事": "实质",
  6947. "/理念/知识/思想/概念范畴/认知思辨/概念构想": "实质",
  6948. "/架构/叙事/叙事技法/戏剧张力/反转/逻辑反转": "形式",
  6949. "/架构/叙事": "形式",
  6950. "/理念/知识/思想/概念范畴/时间过程": "实质",
  6951. "/表象/视觉/空间/空间场所/生活场景/居家空间/场景描述": "实质",
  6952. "/表象/视觉/画面/后期/情绪意境/场景氛围": "实质",
  6953. "/架构/创意/创意表现": "形式",
  6954. "/呈现/视觉/视觉画面/形象塑造/造型装扮/创意造型": "形式",
  6955. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/创意动作": "形式",
  6956. "/呈现/听觉/语音/表达形式/风格化解说/叙事手法": "形式",
  6957. "/呈现/听觉/配乐/节奏特征": "形式",
  6958. "/表象/视觉/实体/人物/个体/形象呈现/身份特征/角色设定": "实质",
  6959. "/表象/视觉/实体/人物/个体/形象呈现/整体形象/造型装扮/风格造型": "实质",
  6960. "/呈现/视觉/视觉制作/实景拍摄": "形式",
  6961. "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/胶片色调": "形式",
  6962. "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/老照片风格": "形式",
  6963. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局/人物姿态": "形式",
  6964. "/呈现/视觉/视觉制作/构图编排/空间布局/构图方式/人物布局": "形式",
  6965. "/表象/视觉/实体/动物/虚拟角色/拟人卡通": "实质",
  6966. "/呈现/视觉/视觉风格/视觉艺术风格/影视风格/电影风格": "形式",
  6967. "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古": "形式",
  6968. "/表象/视觉/行为/人际互动/关系行为/冲突对抗": "实质",
  6969. "/表象/视觉/实体/动物/宠物/宠物猫": "实质",
  6970. "/表象/视觉/实体/人物/个体/身份角色": "实质",
  6971. "/呈现/视觉/视觉制作/剪辑组接/剪辑手法/节奏控制/节奏概念": "形式",
  6972. "/架构/叙事/叙事技法/戏剧张力/冲突/情节冲突": "形式",
  6973. "/表象/视觉/行为/表演行为/综艺表演/喜剧表演/情景剧": "实质",
  6974. "/架构/叙事/叙事组织/角色书写": "形式",
  6975. "/呈现/视觉/视觉风格/视觉氛围风格/怀旧复古/技术呈现/复古色调": "形式",
  6976. "/表象/视觉/实体/人物/个体/形象呈现/虚拟形象": "实质",
  6977. "/表象/视觉/实体/人物/个体/形象呈现/肖像类型/女性肖像": "实质",
  6978. "/表象/视觉/实体/人物/个体/形象呈现/身体特征/身体部位/面部": "实质",
  6979. "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/组合关系/并列叠加": "形式",
  6980. "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/光影表现/光源特征/舞台光": "形式",
  6981. "/呈现/视觉/视觉制作/后期处理/画质优化处理/光影质感/材质纹理/写实还原质感": "形式",
  6982. "/表象/视觉/行为/表演行为/舞蹈": "实质",
  6983. "/表象/视觉/实体/人物/个体/形象呈现/人群特征/女性形象": "实质",
  6984. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材": "实质",
  6985. "/呈现/视觉/视觉制作/构图编排/版面设计/版面结构/载体类型/视频载体": "形式",
  6986. "/呈现/视觉/视觉画面/形象塑造/人物表现/动作姿态/表演性动作/舞蹈表演": "形式",
  6987. "/架构/叙事/叙事组织/角色书写/角色塑造": "形式",
  6988. "/呈现/视觉/视觉画面/形象塑造/造型装扮": "形式",
  6989. "/架构/策略/情感调动/情感激发/情感渲染/氛围营造": "形式",
  6990. "/表象/视觉/实体/物品/影像物品/生活影像/影像素材/拍摄视角": "实质",
  6991. "/呈现/视觉/视觉制作/构图编排/空间布局/元素编排/排列节奏/阵列排列/网格矩阵": "形式",
  6992. "/呈现/视觉/视觉制作/后期处理/画质优化处理/画质增强": "形式",
  6993. "/呈现/视觉/视觉制作/构图编排": "形式",
  6994. "/表象/视觉/画面/后期/材质质感/影像质感": "实质"
  6995. }
  6996. }