Phranakorn Rajabhat University Library

Final Cut Pro X beyond the basics: Advanced techniques for editors /

Wolsky, Tom

Final Cut Pro X beyond the basics: Advanced techniques for editors / Final Cut Pro X beyond the basics Tom Wolsky, author - Burlington : Focal Press, 2015 - xix, 385 p : ill ; 24 cm.

Includes index

Back to the basics page 1-22 - - Preferences and importing page 23-56 - - Organization page 57-88 - - Editing page 89-110 - - Working with audio page 111-156 - - Multicam editing page 157-178 - - Adding titles and skill images page 179-208 - - Adding effects page 209-246 - - Color correction page 247-286 - - Animating images page 287-320 - - Compositing page 321-346 - - Outputting from final cut pro page 347-380

9781138787117 2750


FINAL CUT (ELECTRONIC RESOURCE)
DIGITAL VIDEO--EDITING

TK 6680.5 / W64F 2015

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });