Mathcad 11.2A Work Sheet Running on PC

Total Page:16

File Type:pdf, Size:1020Kb

Mathcad 11.2A Work Sheet Running on PC Why this document ? ... Because : Things and life today are very highly technical and scientific. Explanations may be rare or out of reach or too empirical. Words are insufficient to "print thechnical facts in mind" Acquiring knowledge is a maturation (brewing) process. Science is not inductive, rather it is coalescent. "Dans le domaine de la science, le hasard ne favorise que les esprits qui ont été préparés" PASTEUR JPEG/MPEG Forensic knowledge base in the Court Room This document is a JPEG/MPEG "knowledge base primer" demo. It is a Mathcad 11.2a work sheet running on PC. No maths are needed as the demonstration is by images. It is presented in the general context of the admissibility of JPEG/MPEG as circumstantial proof, rather to the inadmissibilty a priori. The Fourier part (DFT, IDFT) is not arguable. The relative reliability of the JPEG/MPEG extracted from mass storage is to be submitted to experts in respect to all the technical parts of the chain. An exhaustive analysis may not be possible because each system is protected by Patent Rights (proprietary information). Therefore, this report is a guideline based on the principles and exposed as such for Judge and Counsel. Two extreme JPEG demos have been chosen for purpose. They both represent geometric forms. Example (1) is reconstructible from educated guesses, Example (2) is also geometric but totally destroyed ... So, nuance means nuance an eternal word that didn't change meaning over time. Please, read attentively... this report is personal for public use and understanding, addressing the Court Room especially. At the end of this document you must read more and navigate http://en.wikipedia.org/wiki/JPEG http://en.wikipedia.org/wiki/Wavelet The word wavelet is due to Morlet and Grossmann in the early 1980s. They used the French word ondelette , meaning "small wave". Soon it was transferred to English by translating "onde" into "wave", giving " wavelet ". The Morlet wavelet is arguably the `original' wavelet. Although the discrete Haar wavelets predate Morlet's, it was only as a consequence of Morlet's work that the mathematical foundations of wavelets as a better formulation of time-frequency methods were laid. Conceptually related to windowed-Fourier analysis, the Morlet wavelet is a locally periodic wavetrain. It is obtained by taking a complex sine wave, and by localizing it with a Gaussian (bell-shaped) envelope ..... _________________________________ Fourier: Born: 21 March 1768 in Auxerre, Bourgogne, France Died: 16 May 1830 in Paris As the natural ideas of equality developed it was possible to conceive the sublime hope of establishing among us a free government exempt from kings and priests, and to free from this double yoke the long-usurped soil of Europe. Joseph Fourier Extrapolate "Fourier natural idea": "concieve/conclude the sublime hope for justice from reasoning supported by science" ? _________________________________ What is Fourier transform ? ( jmG ) It is an approximation method (one among many more). It decomposes a function into its two trigonometric real or complex components (sinus, cosinus). There are two forms: 1. the analytical form which transforms the continuous time domain into the frquency domain 2. the discrete form for vector of values. It transforms discrete values into the spectral compositon (harmonic analysis) ... composition meaning sine/cosine components. The discrete form is universally named DFT (Discrete Fourier Transform). The "Fourier transform is maths" as such it belongs to all fields of Science, Physics, Engineering. The DFT is to advanced science and technologies what alphabet is to a language. Once in hand the DFT of some "original", very many educated manipulations can be applied for purpose, then "reverse engineered" by the IDFT (Inverse Discrete Fourier Transform), thus reconstructing a "modified original". Signal processing and Image processing would not exist without DFT/IDFT The discrete cosine transform is the core algorithm for the JPEG image. Below, L is the bitmap (pixels) image matrix of Lena (the lady). We demonstrate the decomposition into the discrete cosine values, where the components of the highest values populate and we reconstruct the image to a degree of accuracy about equivalent to 12 decimals (so to speak for popular understanding). This is an introduction demo to the JPEG compression Part I: Image structure, compression is an unrecoverable destruction L := L:= submatrix() L, 0 , 255 , 0 , 254 0 1 2 Ldct:= dct2d() L max() Ldct 25202 0 137 136 133 = 1 137 136 133 Lrec:= idct2d() Ldct min() Ldct −3292 The scaled recovered Lena is scale() Lrec , 0 , 255 not shown as it is the exact replicate to ± 12 d L scale() Ldct −, 3300 , 25000 The discrete cosine transform (DCT) is an important and widely used analysis tool in signal and image processing. The DCT is particularly valuable for coding and data compression applications, and it forms the core of the JPEG and MPEG algorithms for image compression. Like the discrete Fourier transform (DFT), the DCT defines an orthogonal transformation which maps a signal from the time domain to the frequency domain. However, the DCT is a real-valued transform, and does not involve complex numbers. The DFT is a complex-valued transform. For a comprehensive discussion of the DCT and applications involving the DCT, refer to the book by K. R. Rao and P. Yip. We can verify the energy-compaction property of the DCT by looking at histograms of the transformed and original images, as follows: The transformed image concentrates most of the energy in the first H:= imhist() Ldct , 256 few bins of the histogram, while the distribution of the original image is spread out. This makes the transformed image a better candidate Horig:= imhist() L, 256 for encoding or transmission, since most of the image information can be relayed with very few frequency components. For this reason k := 0 .. rows() H − 1 the DCT is used for image compression. Comparing spectral histogram 4000 Horig k H k 2000 0 0 50 100 150 200 250 300 k original spectral spread DCT spectral concentration Notes • The sine transform, ST, and cosine transform, CT, of a sequence x of length N are defined as follows j j ST j = sin π⋅i⋅ ⋅xi CT j = cos π⋅i⋅ ⋅xi ∑ N ∑ N i i • The sine transform always has first coordinate 0, so the inverse sine transform cannot recover the first element of the input x. The cosine transform contains enough information to reconstruct the original vector x completely. Much of the information in an image can be stored in a smaller space by cosine transforming, then retaining only the coefficients which store most of the image informaiton. To do this, take a two-dimensional cosine transform by first transforming columns and transposing the result, then repeating the procedure. Example 1 ()n i j p c := ()23 0 .. n 0 .. n 5 12 n, i, j define a 24 x 24 array not yet filled with values (n = odd) ... c, is a center pixel bordered Define the aperture each side square by 'p' pixels, these 'p' "border pixels" are made white by the logical definition Ai, j := (i− c < p )⋅() j− c < p of the A matrix ... Typical Mathcad compaction ! Matix A has levels 1/0 for 3D patch and bar plot 〈〉i 〈〉i T The C1, C2, C3, C4 are the two-dimensional C1 := costr() A C2:= C1 cosine transform by first transforming columns 〈〉i 〈〉i T and transposing the result, then repeating the C3 := costr() C2 C4:= C3 procedure. A -------is a 3D patch plot, C4 a bar plot As ------is the 0,255 picture pixels C4s -----is the 0,255 picture pixels For better view of C4s, it as been magnified. It is not a picture, just a captured image of specifications: ()23 0 .. n 0 .. n 4 12 Note: to reproduce the black/white 1/0 of the Patch plot Bar plot 3D patch plot we scale the picture pixel 0..255 A C4 As:= scale() A , 0 , 255 "A" at left is Quite a different image than Lena ! C4s:= scale() C4 , 0 , 255 Still it is easy to see the concentration of information. At this point, we could reduce in two ways the volume of "bytes" to store/export an image: 1. ignore the lower diagonal As C4s 2. scaling has reduced the magnitude of the numbers thus reduced the "bytes size". How image compression works ? By running a 10 tons truck over Lena ... NO ! We filter the uncentered transform with a mask that is nonzero on the 'p' border of the original transform area. With 'p' = 4 we've thus compressed the image content by a factor of about 3. (Of course this isn't true compression, since we're saving the remaining values to high precision; in a real compression scheme we'd quantize these values somehow.) We'll reconstruct the image from the masked transform by using the inverse cosine transform. p := 4 p = 4 First we define a Boolean OR function: OR( a, b ):= if() a+ b , 1 , 0 Mask i, j := OR() i< p , j< p The mask saves only transform values near the upper and left edges of the uncentered transform. Now we'll apply the mask element by element to the transform using the vectorize operator, and then reconstruct the image from the masked transform and compare it with the original image A. → T 〈〉i 〈〉i C4:= Mask⋅ C4 C5:= C4 C6 := icostr() C5 T 〈〉i 〈〉i C7:= C6 C8 := icostr() C7 The cosine transform is the core algorithm for the JPEG image compression standard. Here images and their subsets are compressed by discarding the higher order coefficients of the cosine transform, and decompressed using the inverse cosine transform, as in the example above.
Recommended publications
  • Preservation Metadata Dictionary Version 1.2 October 2015
    Preservation Metadata Dictionary Version 1.2 October 2015 A publication by: Digital Preservation Office, Netherlands Institute for Sound and Vision Beth Delaney Hanneke Smulders Yvette Hollander Annemieke de Jong Daniël Steinmeier Introduction In the Preservation Metadata Dictionary V 1.2 (PMD) the Netherlands Institute for Sound and Vision has summarized the definitions of preservation metadata, a combination of a variety of existing standards, to best serve the needs of the institute as an audiovisual archive. Preservation metadata include the categories of technical metadata and provenance metadata. Parts of the descriptive metadata are also included in the category preservation metadata, namely the attributes needed to identify a digital object. The fourth category of preservation metadata are the rights metadata. This dictionary contains the possible selection and definition of all metadata used in recording the digital preservation process at Sound and Vision. In the PMD, the attributes are defined that can be allocated to each digital object (audio, video, film, text, photograph) ingested in the Digital Archive. This includes both technical metadata attributes of a file and attributes describing actions (‘events’), results of those actions (‘outcomes’) and their associated ‘agents’ (responsible organization, software or person. After all, these are the data that are required to provide the Digital Archive, its depositors and its users evidence of the digital provenance of a digital object, and hence its authenticity. The Dictionary also contains rights attributes that must be structurally related to a digital object. These rights relate not only to (re)use rights, but also preservation rights. The collection attributes in the Preservation Metadata Dictionary V1.2 are based among others on the standards PBCore, the Library of Congress VideoMD and AudioMD, PREMIS, NARA reVTMD and the ANSI/NISO Z39.87 Data Dictionary Technical Metadata for Digital Still Images.
    [Show full text]
  • Format Support
    Episode 6 Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS Adaptive bitrate streaming Microsoft Smooth Streaming H.264 (AAC audio) O Windows OS only. Available with Episode Engine License. Apple HLS H.264 (AAC audio) O Available with Episode Engine License. Windows Media WMV, ASF VC-1 O O O WM9 I/O I/O I/O WMV7 and 8 through F4M component on Mac WMA I/O I/O I/O WMA Pro I/O I/O I/O Flash FLV Flash 8 (VP6s/VP6e) I/O I/O I/O SWF Flash 8 (VP6s/VP6e) I/O I/O I/O MOV/MP4/F4V Flash 9 (H.264) I/O I/O I/O F4V as extension to MP4 WebM WebM VP8 O O O Vorbis O O O 3GPP 3GPP AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O 3GPP2 3GPP2 AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O MPEG Elementary Streams MPEG-1 Elementary Stream MPEG-1 (video) I/O I/O I/O MPEG-2 Elementary Stream MPEG-2 I/O I/O I/O MPEG Program Streams PS AAC O O O MainConcept and x264 H.264 I/O I/O I/O MPEG-1/2 (audio) I/O I/O I/O MPEG-2 I/O I/O I/O MPEG-4 I/O I/O I/O MPEG Transport Streams TS AAC I O O AES I I/O I/O H.264 I I/O I/O MainConcept and x264 AVCHD I I I HDV I I/O I/O MPEG - 1/2 (audio) I I/O I/O MPEG - 2 I I/O I/O MPEG - 4 I I/O I/O PCM I I I Matrox MAX H.264 I/O I/O I/O QT codec (*output possible via QT), Requires Matrox MAX hardware - Mac OS X only MPEG System Streams M1A MPEG-1 (audio) I/O I/O I/O M1V MPEG-1 (audio) I/O I/O I/O Episode 6 Format Support Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS MPEG-4 MP4 AAC I/O I/O I/O
    [Show full text]
  • A Teleca Company Compression Master 3.2 Is The
    www.popwire.com Compression Master 3.2 is the application for Lightning Fast Codecs the professional media producer who requires Developed from scratch in native Mac OS X code, simplicity and reliability without sacrifi cing leveraging years of expertise in video and audio any choices. Compression Master enables processing, Popwire Technology’s codecs are blazingly you to produce content for DVD, Internet, fast while delivering unsurpassed quality. Additionally, these codecs give you access to over 45 media formats broadcasting, mobile phones, portable video such as MPEG-2, MPEG-4, DV, QuickTime, H.264, players, music services or any other type of 3GPP and native Mac OS X encoding of Windows and media. Real Media. Video Encoding for the Mac Best-of-Breed Quality Filters and Results With Compression Master from Popwire Technology Native YCbCr processing together with innovative pre- the reliability and speed of server based video processing such as Popwire Technology’s deinterlacing encoding is brought to the desktop. With its extensive with edge detection interpolation, three-level noise format support Compression Master converts to and reduction, frame rate fi lter that enables true inverse from all common formats such as MPEG-2, MPEG- telecine, as well as conversion between NTSC, PAL, 4, QuickTime, DV, H.264, 3GPP, Flash, Windows fi lm, HD to SD, guarantees that you get the highest and Real Media for anything from satellite- and web possible quality. From broadcast media to the Internet broadcasting, DVD authoring to the video enabled iPod or the 3G mobile phone, the results are perfect and you and 3G Mobile Phones.
    [Show full text]
  • Moose Kidstalks Presentation A/V Information
    Moose KidsTalks Presentation A/V Information The time you have to present your Moose KidsTalks information and what you did is your time and you are allowed to use that time anyway you please to get your information across to your peers. The following information is for anyone that would like to use technology to present their information. If you are going to use a presentation that requires a computer, the following are the requirements to make your presentation work with the set-up that is available. Presentation/Keynote/PowerPoint 1. Presentation must be in one of the following: 1. Email your presentation to Gordie Dailey or Camille Ruffino (windows based) so we have a back up copy. 2. Apple Keynote 3. Prezi 4. Any ONLINE presentation tool 2. Presentation should be brought on a flash drive or readily available on an online storage system (ex. - Google Drive, Dropbox). Local storage like a flash drive is more reliable and recommended. However, based on experience, please have a backup of all materials. We recommend using Google Drive. They offer 15 GB of free storage, which is plenty of room for any and all files you would be using. 3. If audio is required, please have the audio file embedded into the presentation, video, or have the audio file available on a storage device to play through a computer. Phones, iPods, MP3 players are also allowed to be used, but must use a standard 3.5mm headphone jack. Video If your video is online, be able to quickly access the link or search result.
    [Show full text]
  • Episode Format Sheet
    Episode 6.5 Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS Adaptive bitrate streaming Microsoft Smooth Streaming H.264 (AAC audio) O O Apple HLS H.264 (AAC audio) O O MPEG-DASH H.264 (AAC audio) O O Windows Media WMV, ASF VC-1 O O O WM9 I/O I/O I/O WMV7 and 8 through F4M component on Mac WMA I/O I/O I/O WMA Pro I/O I/O I/O Flash FLV Flash 8 (VP6s/VP6e) I/O I/O I/O SWF Flash 8 (VP6s/VP6e) I/O I/O I/O MOV/MP4/F4V Flash 9 (H.264) I/O I/O I/O F4V as extension to MP4 WebM WebM VP9, VP8 O O O 3GPP 3GPP AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O 3GPP2 3GPP2 AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O MPEG Elementary Streams MPEG-1 Elementary Stream MPEG-1 (video) I/O I/O I/O MPEG-2 Elementary Stream MPEG-2 I/O I/O I/O MPEG Program Streams PS AAC O O O MainConcept and x264 H.264 I/O I/O I/O MPEG-1/2 (audio) I/O I/O I/O MPEG-2 I/O I/O I/O MPEG-4 I/O I/O I/O MPEG Transport Streams TS AAC I O O AES I I/O I/O H.264 I I/O I/O MainConcept and x264 AVCHD I I I HDV I I/O I/O MPEG - 1/2 (audio) I I/O I/O MPEG - 2 I I/O I/O MPEG - 4 I I/O I/O PCM I I I Matrox MAX H.264 I/O I/O I/O QT codec (*output possible via QT), Requires Matrox MAX hardware - Mac OS X only MPEG System Streams M1A MPEG-1 (audio) I/O I/O I/O M1V MPEG-1 (audio) I/O I/O I/O Episode 6.5 Format Support Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS MPEG-4 MP4 AAC I/O I/O I/O H.264 I/O I/O I/O Main Concept and x264 MPEG-4 I/O I/O I/O HEVC I/O I/O I/O iTunes video (iPod, iPhone, Apple TV) M4V AAC I/O I/O I/O H.264 I/O I/O I/O Main Concept and x264 MPEG-4 I/O I/O I/O iTunes audio (iPod, iPhone, Apple TV) M4A AAC I/O I/O I/O MPEG-4 PSP MP4 AAC I/O I/O I/O H.264 I/O I/O I/O Main Concept and x264 MPEG-4 I/O I/O I/O HEVC I/O I/O I/O QuickTime* MOV AAC I/O I/O I/O Animation I/O I/O I/O QT codec (output possible via QT) Apple Component I/O I/O I/O QT codec (output possible via QT) Apple GSM 10:1 I/O I/O I/O QT codec (output possible via QT) Apple Intermed.
    [Show full text]
  • A Survey of Compression Techniques
    International Journal of Recent Technology and Engineering (IJRTE) ISSN: 2277-3878, Volume-2 Issue-1 March 2013 A Survey of Compression Techniques Sashikala, Melwin .Y., Arunodhayan Sam Solomon, M.N.Nachappa Abstract - Digital data is owned, used and enjoyed by many reducing the file size without affecting the quality of the people all over the world. Compressing data is mostly done when original Data. Data Compression is an important part of we face with problems of constraints in memory. In this paper we Computer Science mainly because of the reduced data have attempted to discuss in general about compression and decompression, the different techniques of compression using communication and the Storage cost. [1] digital data is ‘Lossless method compression and decompression’ on text data usually created by a word processor as text data, a digital using a simple coding technique called Huffmann coding. camera to capture pictures of audio and video data, a scanner Index Words: Lossless text data compression, Huffman to scan documents of text as image data or other devices, once coding. the data is captured it is edited on a computer, then stored on a optical medium or disk permanently based on the users need, sharing information Compressed data can be I. INTRODUCTION transmitted through e-mail, and downloaded. In 1838 morse code used data compression for telegraphy which was based on using shorter code words for letters such II. COMPRESSION as "e" and "t" that are more common in English . Modern Compression is a technology by which one or more files or work on data compression began in the late 1940s with the directories size can be reduced so that it is easy to handle.
    [Show full text]
  • Application Note
    Application Note How To Determine Bandwidth Requirements 08 July 2008 Bandwidth Table of Contents 1 BANDWIDTH REQUIREMENTS ............................................................................................. 1 1.1 VOICE REQUIREMENTS ............................................................................................................... 1 1.1.1 Calculating VoIP Bandwidth ............................................................................................ 2 2 VOIP PERFORMANCE .............................................................................................................. 6 3 QUALITY OF SERVICE (QOS) ................................................................................................. 8 3.1.1 LAN QoS Options ............................................................................................................. 8 3.1.2 WAN QoS Options ............................................................................................................ 9 Tested versions: Ingate Firewall/SIParator/MEDIAtor version 4.6.2 Revision History: Revision Date Author Comments 2008-07-08 Scott Beer 1st draft Bandwidth 1 BANDWIDTH REQUIREMENTS In a Teleworker, Home Office or Remote Office solution attention to bandwidth requirements is crucial to a successful deployment. Bandwidth requirements for the Voice and Video as well as the Data must me understood. 1.1 Voice Requirements A Brief History Lesson: Humans speak in Analog. This analog signal is transformed to digital through a process called PCM (Pulse
    [Show full text]
  • Baselight Codec Support
    Baselight Codec Support Whether images are shot on film or using one of the Reading and writing formats many digital cameras now available, image media is being acquired and stored digitally in a bewildering range of file Some formats can be read and written by Baselight; others and movie formats. can be read only or written only. There are many reasons for this. A competent post-production system needs to be able to handle and transcode all of these to ensure optimal Decoders and codecs workflows. Baselight supports an extensive range of image A decoder just allows a movie file format to be read, while a and movie formats that employ many different codecs and codec allows the format to be both read and written. wrapper formats. Camera raw source formats Some digital cameras produce raw images with the original File formats sensor data saved in a Bayer format. To visualise an image, The table on the following pages shows the formats that it must be de-Bayered and converted to RGB. There is no are supported by Baselight, either natively or within one of benefit to Baselight writing an image in a Bayer format—raw the options described below, and their common extensions; images are used as source only, and so these formats will it also shows whether each format can be read or written, be decoded (read) but never written. and other relevant details such as bit depth and colour channels. Camera acquisition formats Some digital camera acquisition codecs use interframe (temporal) compression over multiple images. These Format options formats are not necessarily easy to edit or use for grading or VFX work, which require whole frames to operate on.
    [Show full text]
  • Download Prores Codec for Mac
    Download prores codec for mac Download icon Pro Video Formats includes support for the following professional video codecs: • Apple Intermediate Codec • Apple ProRes. QuickTime for Tiger · QuickTime Broadcaster · QuickTime for Leopard · QuickTime for Tiger · QuickTime for Windows · Color I was able to install the Apple ProRES codec for quicktime without installing I still think ProRES is the best working video codec around, especially for Mac, First start by downloading the ProApp codec update direct from the apple website. Install the Apple ProRES codec without Final Cut or ProApps Install Instructions: First start by downloading the. How to Install ProRes Codecs FREE for Mac and Adobe Media . at the last step when i need to import the. How to get Apple ProRes and other Codecs. codecs and other goodies, download the new QT codec pack: BUT – to have the Apple ProRES codecs installed on your Mac, you need to install Final Cut Pro (very expensive), which to say the least I have. How do I get all Apple Prores codecs for Mac to use in Premiere? I've only been able to find the lower codecs, not HQ and encoder does not have preset for ProRes 4. This update adds the following video codecs for use by QuickTime-based applications: Apple Intermediate Codec Apple ProRes AVC-Intra DVCPRO HD HDV. Download the latest versions of the best Mac apps at MacUpdate. Apple Intermediate Codec; Apple ProRes; AVC-Intra; DVCPRO HD; HDV; XDCAM HD / EX /. Codec problems on Mac OS X can cause problems for video users. Macs come with some codecs preinstalled (like Apple ProRes) but others they're gone, you can reinstall from the Apple Pro Video Formats download.
    [Show full text]
  • Episode Podcast 5.1.2 Administrator’S Guide
    Note on License The accompanying Software is licensed and may not be distributed without writ- ten permission. Disclaimer The contents of this document are subject to revision without notice due to contin- ued progress in methodology, design, and manufacturing. Telestream shall have no liability for any error or damages of any kind resulting from the use of this document and/or software. The Software may contain errors and is not designed or intended for use in on-line facilities, aircraft navigation or communications systems, air traffic control, direct life support machines, or weapons systems (“High Risk Activities”) in which the failure of the Software would lead directly to death, personal injury or severe physical or environmental damage. You represent and warrant to Telestream that you will not use, distribute, or license the Software for High Risk Activities. Export Regulations. Software, including technical data, is subject to Swedish export control laws, and its associated regulations, and may be subject to export or import regulations in other countries. You agree to comply strictly with all such regulations and acknowledge that you have the responsibility to obtain licenses to export, re-export, or import Software. Copyright Statement ©Telestream, Inc, 2009 All rights reserved. No part of this document may be copied or distributed. This document is part of the software product and, as such, is part of the license agreement governing the software. So are any other parts of the software product, such as packaging and distribution media. The information in this document may be changed without prior notice and does not represent a commitment on the part of Telestream.
    [Show full text]
  • Redcine-X Pro Operation Guide
    REDCINE-X PRO OPERATION GUIDE REDCINE-X PRO | BUILD 51 RED WATCHDOG | RED PLAYER | REDLINE RED.COM REDCINE-X PRO OPERATION GUIDE TABLE OF CONTENTS Table of Contents 2 GPU Decode 40 Disclaimer 4 CHAPTER 5: Load and Organize Clips 41 Copyright Notice 4 Offload Clips from Media to Computer 41 Trademark Disclaimer 4 Offload Clips from Camera to Computer 41 CHAPTER 1: REDCINE-X PRO Introduction 5 Transfer Files from Camera to Computer 42 REDCINE-X PRO 5 Transfer Files from Computer to Camera 43 RED ROCKET 6 R3D File Structure 44 RED ROCKET-X 6 Browse Clips 44 Additional Resources 6 Load Clips 45 CHAPTER 2: Download and Install Play Clips 46 REDCINE-X PRO 7 View R3D Metadata 47 Download REDCINE-X PRO 7 Rename Clip Name 48 Install REDCINE-X PRO (Mac) 7 Create a Project 49 Install REDCINE-X PRO (Windows) 7 Trim R3D Files 54 Uninstall REDCINE-X PRO (Mac) 8 Load Media Files 56 Uninstall REDCINE-X PRO (Windows) 8 Import XML and EDL Files 56 CHAPTER 3: Preferences Menu 9 CHAPTER 6: Adjust Clips 58 General 10 Look Adjustments 58 Image Pipeline 11 Image Adjustments 64 Monitoring Out 12 Frame Adjustments 86 System 16 Frame Rate Override 88 Snapshot 17 Pixel Masking 90 A.D.D. 18 Edit and Sync Audio 93 Timeline 19 Edit 3D Clips 96 Import 20 Marker Thumbnails 98 Export 21 Marker Table 98 Transcode 22 CHAPTER 7: Export Clips 99 Cache 23 Export Settings 99 Keyboard 24 Export Media 99 UI Devices 25 Export with Presets 101 REDRAY 25 Export File Formats 103 Updates 26 QuickTime Settings 104 CHAPTER 4: REDCINE-X PRO User Export Shallow Files 104 Interface 27
    [Show full text]
  • Episode Encoder for Windows 5.3.2 User’S Guide
    Note on License The accompanying Software is licensed and may not be distributed without writ- ten permission. Disclaimer The contents of this document are subject to revision without notice due to con- tinued progress in methodology, design, and manufacturing. Telestream shall have no liability for any error or damages of any kind resulting from the use of this doc- ument and/or software. The Software may contain errors and is not designed or intended for use in on-line facilities, aircraft navigation or communications systems, air traffic control, direct life support machines, or weapons systems (“High Risk Activities”) in which the failure of the Software would lead directly to death, personal injury or severe physical or environmental damage. You represent and warrant to Telestream that you will not use, distribute, or license the Software for High Risk Activities. Export Regulations. Software, including technical data, is subject to Swedish export control laws, and its associated regulations, and may be subject to export or import regulations in other countries. You agree to comply strictly with all such regulations and acknowledge that you have the responsibility to obtain licenses to export, re-export, or import Software. Copyright Statement ©Telestream, Inc, 2010 All rights reserved. No part of this document may be copied or distributed. This document is part of the software product and, as such, is part of the license agreement governing the software. So are any other parts of the software product, such as packaging and distribution media. The information in this document may be changed without prior notice and does not represent a commitment on the part of Telestream.
    [Show full text]