Notes on Adding Audio and Video to Web Pages

Total Page:16

File Type:pdf, Size:1020Kb

Notes on Adding Audio and Video to Web Pages Notes on Adding Audio and Video to Web Pages L. G. Piper BHCC 6 April 2011 Back in the Dark Ages— about five years ago CMT111—Audio/Video—6April11 — 2 Most people didn’t have broadband connections – computers too slow to download audio and video in real time – so people shared audio and video files differently • download while you’re doing something else • view/listen in application on your computer Audio and Video files came in a complex array of formats – people needed to convert from one to another – proprietary formats tried to resist such conversion • Windoz people couldn’t read Mac files and vice versa Some formats eventually won out and using most others is a waste of time Audio 101 CMT111—Audio/Video—6April11 — 3 Only two or three audio formats worth one’s time .mp3 – The standard form for music files – this is what’s on your iPod and what you get from iTunes .midi – created by music synthesizers – limited, but easy to create from sheet music – …or from which to create sheet music .wav – basically an unprocessed (or little processed) sound file – maintains (most) of fidelity when copied from vinyl records – My son and I convert old tapes and records to .wav, and from there to .mp3 Common Sound File Formats on the Web CMT111—Audio/Video—6April11 — 4 Only three Format Description AIFF/ AIFC Audio Interchange File Format. AIFF was developed by Apple for use on the worthwhile Macintosh operating system. AIFF sound files can be either 8 bit or 16 bit, can be mono – .mp3 or stereo, and can be recorded at several different sampling rates. AU Also called mlaw ( mu- law) format. One of the oldest sound formats, it is primarily used – .midi on UNIX workstations. AU sound files have 8- bit sample resolutions, use a sampling rate of 8 kHz, and are recorded in mono. – .wav MIDI Musical Instrument Digital Interface. MIDI files cannot be used for general sound recording, like other sound formats, but are limited to synthesizers and music files. The A new format MIDI format represents sound by recording each note’s pitch, length, and volume. MIDI may come files tend to be much smaller in size than other sound formats. MP3 The most popular format for downloading and storing music, MP3 compresses sound into play in files to roughly one-tenth the size of uncompressed files while maintaining good audio the future quality. RealAudio A [formerly] popular sound format on the Web, RealAudio files are designed for real-time – .ogg playing over low- to high-bandwidth connections. RealAudio files tend to be much smaller than AU or WAV files, but the sound quality is usually not as good. SND The SND format is used primarily on the Macintosh operating system for creating system sounds. This format is not widely supported on the Web. WAV WAV is the standard audio format for Windows PCs and is commonly used for storing uncompressed CD-quality sound files. In its uncompressed format, a WAV file will require about 10 megabytes per minute of sound; however, compression algorithms are available to reduce the file size. WMA Windows Media Audio is a proprietary audio format developed by Microsoft to compete with MP3s, offering near or better levels of compression than MP3s. Browser Plug-ins CMT111—Audio/Video—6April11 — 5 Most browsers play audio and video by way of “plug-ins” – bits of code added to browser Need different plug-ins to play the different formats – Most plug-ins will play .mp3 and .midi My browsers all seem to have Quicktime and Flash plug-ins installed through no effort on my part – Then things work automagically…most of the time Avoid RealPlayer, it’s intrusive crap Audio Format Mime types CMT111—Audio/Video—6April11 — 6 Audio Format Mime types Need to know mime type Format File MIME Type to tell browser which Extension plug-in to use AIFC aifc audio/x-aiff AIFF aif audio/x-aiff AIFF aiff audio/x-aiff Put the mime type inside AU au audio/basic the tags as an attribute, MIDI mid audio/mid for example, for mp3 use MIDI rmi audio/mid type=“audio/mpeg” MP3 mp3 audio/mpeg MP3 mp3 audio/x-mpeg RealAudio ra audio/x-pn-realaudio RealAudio ram audio/x-pn-realaudio SND snd audio/basic WAV wav audio/wav WAV wav audio/x-wav Four (or Five) Ways to Put Audio on a Web Page CMT111—Audio/Video—6April11 — 7 1. Provide a link to the media file 1. in most browsers, clicking on the link will cause the file to play 2. some browsers just offer you an option to download the file 2. embed media file in <object> tag set 1. this the official method 3. embed media file inside <embed> tag set 1. everyone uses this even though it’s not official (deprecated actually) 4. embed media file inside <audio> tag set 1. The future, but today it only works in a few browsers and only for a few formats 1. Chrome, Safari and Opera—some, but not all formats 2. Firefox—onnly .wav and .ogg formats worked for me 3. allegedly will work in IE9, but not current/earlier versions 1. NOTE: IE9 will not work on WinXP 5. Can also embed a flash audio player you or someone else made Linking to the File CMT111—Audio/Video—6April11 — 8 Just put up a standard link – might want to add a mime type, but generally not necessary Works for most important file types – .mp3 – .midi – .wav On my computer spawns Quicktime player plug-in Example: <a href="./music/SumertimeBlues.mp3"><cite>Summertime Blues</cite></a> Easy-peasy, huh? Using the <object> Tag Set CMT111—Audio/Video—6April11 — 9 This is the official method – Works great in Opera, Chrome, Safari – mostly works in FireFox – Does not work in IE6 – sometimes ok in IE8 You can extend to formats other than .mp3, .midi, and .wav by using Windoz active-x (but I don’t see the point—I don’t trust active-x) Example <object data="./music/SumertimeBlues.mp3" type="audio/mpeg" height="20" width="150" title="Summertime Blues, albeit not by Eddie Cochran"><cite>Summertime Blues</cite> <param name="autoplay" value="false" /> <param name="src" value="./music/SumertimeBlues.mp3" /> <param name="controller" value="true" /> <param name="showcontrols" value="true" /> </object> Using the <embed> Tag Set CMT111—Audio/Video—6April11 — 10 This seems to be what people actually do – makes .mp3, .midi, and .wav work in IE6 too – still some issues with FireFox Technically, one shouldn’t use this: it’s been deprecated – BUT…it will become un-depracated with HTML 5 – Why fight city hall? Example: <embed src="./music/SumertimeBlues.mp3" type="audio/mpeg" width="150" height="20" autostart="false" title="Summertime Blues, albeit not by Eddie Cochran"><br /> <cite>Summertime Blues</cite> </embed> Some people nest <embed> inside <object> so as to be official, and work in old IE versions Using the <audio> Tag Set CMT111—Audio/Video—6April11 — 11 This is the wave of the future: added to the HTML 5 specification Currently works, for .mp3, .wav and .ogg in Chrome, Safari, and FireFox – only .wav and .ogg files in Opera and FireFox – only .mp3 and .ogg files in Safari Allegedly will work in IE9 – BUT…IE9 won’t work on WinXP (>50% of Win comps in Feb 2011) Example: <audio src="./music/SumertimeBlues.mp3" type="audio/mpeg" width="150" height="20" controls="controls" title="Summertime Blues, albeit not by Eddie Cochran"> <br /> <cite>Summertime Blues</cite> </audio> You Can Also Embed a Flash Player CMT111—Audio/Video—6April11 — 12 Available from several places on Web Example is the “Google Reader” player – http://sites.google.com/site/mori79/html-gadgets/media-players/google-reader- player Paste in the code <embed src="http://www.google.com/reader/ui/3523697345-audio-player.swf" flashvars="audioUrl=http://www.example.com/song.mp3" width="400" height="27" quality="best" wmode="transparent" type="application/x- shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed> change audio url to the one of your choice – I only got this to work from web-based url – should work with local host, but quick try failed. I need to investigate further Audio Formats and Methods Supported By Various Browsers CMT111—Audio/Video—6April11 — 13 Format Method Browsers <object> Opera, Chrome, FireFox, Safari .mp3 <embed> Opera, Chrome, FireFox, Safari and IE <audio> Chrome, Safari <object> Opera, Chrome, FireFox, Safari .wav <embed> only IE <audio> Opera, Chrome, FireFox, Safari <object> Opera, Chrome, FireFox, Safari .midi <embed> only IE <audio> No one <object> Opera, Chrome, FireFox, Safari and IE .wma <embed> Opera, Chrome, FireFox, Safari and IE <audio> No one <object> No one (some autoplay though) .ogg <embed> No one (some autoplay though) <audio> Opera, Chrome, FireFox <object> generally works for Opera, Chrome, FireFox and Safari <embed> generally works for IE So, combine them! A Combined Approach for Audio CMT111—Audio/Video—6April11 — 14 Many folks will wrap <object> tags around <embed> so as to ensure their file works in all browsers, not-IE and IE – either than or use a flash player For example <object data="./music/SumertimeBlues.mp3" type="audio/mpeg" height="20" width="150" title="Summertime Blues, albeit not by Eddie Cochran"><cite>Summertime Blues</cite> <param name="autoplay" value="false" /> <param name="src" value="./music/SumertimeBlues.mp3" /> <param name="controller" value="true" /> <param name="showcontrols" value="true" /> <embed src="./music/SumertimeBlues.mp3" type="audio/mpeg" width="150" height="20" autostart="false" title="Summertime Blues, albeit not by Eddie Cochran"> <br /><cite>Summertime Blues</cite></embed> </object> I’m not sure about tag wrapping CMT111—Audio/Video—6April11 — 15 You may need to do some special conditional comments when you do tag wrapping comment out conditional comment.
Recommended publications
  • Episode Engine 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]
  • FLV File Format
    Video File Format Specification Version 10 Copyright © 2008 Adobe Systems Incorporated. All rights reserved. This manual may not be copied, photocopied, reproduced, translated, or converted to any electronic or machine-readable form in whole or in part without written approval from Adobe Systems Incorporated. Notwithstanding the foregoing, a person obtaining an electronic version of this manual from Adobe may print out one copy of this manual provided that no part of this manual may be printed out, reproduced, distributed, resold, or transmitted for any other purposes, including, without limitation, commercial purposes, such as selling copies of this documentation or providing paid-for support services. Trademarks Adobe, ActionScript, Flash, Flash Media Server, XMP, and Flash Player are either registered trademarks or trademarks of Adobe Systems Incorporated and may be registered in the United States or in other jurisdictions including internationally. Other product names, logos, designs, titles, words, or phrases mentioned within this publication may be trademarks, service marks, or trade names of Adobe Systems Incorporated or other entities and may be registered in certain jurisdictions including internationally. No right or license is granted to any Adobe trademark. Third-Party Information This guide contains links to third-party websites that are not under the control of Adobe Systems Incorporated, and Adobe Systems Incorporated is not responsible for the content on any linked site. If you access a third-party website mentioned in this guide, then you do so at your own risk. Adobe Systems Incorporated provides these links only as a convenience, and the inclusion of the link does not imply that Adobe Systems Incorporated endorses or accepts any responsibility for the content on those third- party sites.
    [Show full text]
  • Before You Begin Producing
    Producing with Camtasia Before You Begin Producing Before you begin to produce your video you need to decide how it will be shared; web based, CD, DVD. Once you have decided how you are going to share your video you need to decide which file format would be the best for that particular mode of delivery. The file formats you can save with in Camtasia include: AVI, Macromedia Flash (SWF), Windows Media (WMV), QickTime, Macromedia Flash (FLV), RealMedia (RM), Camtasia for RealPlayer (CAMV), and GIF animation. Click on Show more file formats to view all these options. AVI video file: AVI is recommended for CD delivery requiring the highest video quality. Once you produce your completed AVI files, use Pack and Show to bundle the Camtasia Player and Codec for easy delivery on CD‐ROM. It can also be edited by using Camtasia or other video editing programs. This is the type of format the original video will save as after recording with Camtasia. Macromedia Flash (SWF) movie file: An SWF file format can be used for videos that are 3‐5 minutes. This file format is good for using if you want to put your video on the internet and it is supported by most browsers. You will need the Flash plug‐in to view this video. Windows Media (WMV) streaming media file: A WMV file format creates smaller file sizes and works well for longer videos. It does not have to be downloaded and plays in Microsoft Windows Media Player. It is a streaming video file format. This type of file must be stored on a Windows Media streaming server.
    [Show full text]
  • Using ADOBE® MEDIA ENCODER™ CS4 ©Copyright 2008 Adobe Systems Incorporated
    Using ADOBE® MEDIA ENCODER™ CS4 ©Copyright 2008 Adobe Systems Incorporated. All rights reserved. Using Adobe® Media Encoder CS4 If this guide is distributed with software that includes an end user agreement, this guide, as well as the software described in it, is furnished under license and may be used or copied only in accordance with the terms of such license. Except as permitted by any such license, no part of this guide may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, recording, or otherwise, without the prior written permission of Adobe Systems Incorporated. Please note that the content in this guide is protected under copyright law even if it is not distributed with software that includes an end user license agreement. The content of this guide is furnished for informational use only, is subject to change without notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorporated assumes no responsibility or liability for any errors or inaccuracies that may appear in the informational content contained in this guide. Please remember that existing artwork or images that you may want to include in your project may be protected under copyright law. The unauthorized incorporation of such material into your new work could be a violation of the rights of the copyright owner. Please be sure to obtain any permission required from the copyright owner. Any references to company names in sample templates are for demonstration purposes only and are not intended to refer to any actual organization.
    [Show full text]
  • How to Convert MOV to MP4 Video File Format Using VLC Player in Windows - Askvg
    4/9/2020 [Tip] How to Convert MOV to MP4 Video File Format Using VLC Player in Windows - AskVG Search Help & Support Windows 10 Windows 8 Windows 7 Vista XP Freeware Themes Office Firefox Chrome Edge Opera IE Mobiles [Tip] How to Convert MOV to MP4 Video File RSS | Newsletter | Twitter | Facebook | YouTube Format Using VLC Player in Windows Advertisements SUMMARY: With the help of this article, you'll be able to convert any video file into other popular video formats using a free software "VLC Media Player" in all operating systems such as Windows, Linux or MacOS and mobile phones such as Google Android, iPhone/iPad or Windows Phone. Yesterday an AskVG reader "Piyush" contacted me and asked how to convert MOV video file to MP4 format? He was using Windows 10 operating system and he didn't want to use free online converters which claim to convert any video file into any other desired video format for free. He was worried about privacy as he captured those private videos with his family. He was worried that his videos will be Latest Articles stored and shared in the cloud forever if he uses online converter websites to convert video files. Windows 10 Insider Preview Build 19603 Available for Download He was using VLC Media Player as it's portable and widely known to support and play all kind of audio and video file formats. He asked me [Firefox Tip] Disable or Remove Search Tips and Suggestions Buttons in New Address whether he can use VLC player to convert video files? He read Bar somewhere that VLC player can be used to convert video file formats.
    [Show full text]
  • Platforms for Handling and Development of Audiovisual Data
    Faculdade de Engenharia da Universidade do Porto Platforms for Handling and Development of Audiovisual Data José Pedro Sousa Horta Project/Dissertation concerning Mestrado Integrado em Engenharia Informática Advisor: Professor Eurico Carrapatoso July 2008 © José Pedro Sousa Horta, 2008 Platforms for Handling and Development of Audiovisual Data José Pedro Sousa Horta Project/Dissertation concerning Mestrado Integrado em Engenharia Informática Approved in public display by the jury: President: Prof. Doutor António Fernando Coelho _________________________________________________ Examiner: Prof. Doutor Nuno Magalhães Ribeiro Vowel: Prof. Doutor Eurico Manuel Carrapatoso July 17th 2008 Abstract Everywhere around us, digital is replacing analogue. Such is especially true in the audiovisual: be it in consumer or professional market, the advantages of computer-based media have quickly persuaded investors. To choose in which technologies, software should be based, proper understanding of the major aspects behind digital media is essential. An overview of the state of the art regarding the compression of digital video, the existing container formats and the multimedia frameworks (that enable easier playback and editing of audiovisual content) will be given, preceded by an introduction of the main topics. The professional video market is particularly focused on this document, due to the context of its elaboration, predominantly MPEG-2, MXF and DirectShow. In order to obtain more accurate results, fruit of the practical contact with the technology, a hands-on programming project was accomplished using DirectShow to playback both local and remote WMV files. Compression algorithms are continuously being improved and new ones invented, the designers of container formats are paying increased attention to metadata and some serious alternatives to DirectShow are emerging.
    [Show full text]
  • Media Formats
    Podcasting Formats and Software The options, advantages and disadvantages of each Below are observations of file formats and software you may run into when working with Podcasting and its related functions. Media Formats • .mp3 – the most popular audio file format. Can be played on just about any software media player and portable media player. Small file size with good quality. • .wav – The Microsoft audio format. Can be played on just about any software media player. Large file sizes with good quality. • .mp4 – MPEG 4 – video compression technology o .mp4 – video file format. Good video quality. o .m4a – enhanced podcast format. Combines audio and still pictures. o .m4b – enhanced podcast format. Combines audio and still pictures. Enhanced podcasts – these are files that incorporate audio and pictures to create an interactive media file. Somewhat comparable to a slideshow. You have more flexibility in creating the file, but depending on what you want to do, this may not be the best format for your project. o .m4v – video file format. Good video quality. The supported video format for the iPod and iTunes. • .mov – quicktime video format. Supported in iTunes. • .wmv – windows media video. Only supported with Windows media player. Will not play in quicktime or on a mac. Quicktime Pro formats • Movie to hinted movie- .mov. Should be used when streaming video files. • Movie to ipod -.m4v. the supported video format for the iPod • Movie to MPEG-4 - .mp4. Video file format. • QTL – Quick time media link - .qtl. A text file that links to quicktime streaming media. • H.264 – video compression. Video compression technology that shrinks file size and produces great quality.
    [Show full text]
  • Data Compression II (Codecs and Container Formats)
    Data Compression II (Codecs and Container Formats) 7. Data Compression II - Copyright © Denis Hamelin - Ryerson University Codecs A codec is a device or program capable of performing encoding and decoding on a digital data stream or signal. The word codec may be a combination of any of the following: 'compressor-decompressor', 'coder-decoder', or 'compression/decompression algorithm'. 7. Data Compression II - Copyright © Denis Hamelin - Ryerson University Codecs (Usage) Codecs encode a stream or signal for transmission, storage or encryption and decode it for viewing or editing. Codecs are often used in videoconferencing and streaming media applications. An audio compressor converts analogue audio signals into digital signals for transmission or storage. A receiving device then converts the digital signals back to analogue using an audio decompressor, for playback. 7. Data Compression II - Copyright © Denis Hamelin - Ryerson University Codecs Most codecs are lossy, allowing the compressed data to be made smaller in size. There are also lossless codecs, but for most purposes the slight increase in quality might not be worth the increase in data size, which is often considerable. Codecs are often designed to emphasise certain aspects of the media to be encoded (motion vs. color for example). 7. Data Compression II - Copyright © Denis Hamelin - Ryerson University Codec Compatibility There are hundreds or even thousands of codecs ranging from those downloadable for free to ones costing hundreds of dollars or more. This can create compatibility and obsolescence issues. By contrast, lossless PCM audio (44.1 kHz, 16 bit stereo, as represented on an audio CD or in a .wav or .aiff file) offers more of a persistent standard across multiple platforms and over time.
    [Show full text]
  • Most Common Video File Formats Compared
    Most common Video file formats compared Video File Format Characteristics ASF,WMV • Can be streamed across the Internet and viewed before entire file has been downloaded when (Advanced Streaming Format) using a Windows Media server. (Windows Media Video) • Requires Windows Media Player be installed. • Typically placed on an internet streaming server. AVI • Can be viewed with standard Windows Players such as Windows Media Player. (Audio Video Interleave) • Uncompressed yields a high quality video but uses a lot of storage space. • If downloading from the Internet, the entire file must be downloaded before being played. • Typically stored on local hard disk or CDROM or made available as download from web server. MOV • Requires Apples Quicktime Movie Player (Apple Quicktime Movie) • Depending on Compression chosen can provide a very high quality video clip, but better quality uses more storage space. • Can be streamed across the Internet and viewed before entire file has been downloaded if using a Quicktime streaming server. • Can be placed both on an internet streaming server, or local storage such as hard disk or CDROM. MPEG • Can provide VHS quality movies or better (Motion Pictures Experts • Mpeg1 is equal to VHS. Group) • Mpeg2 is better than VHS and used for DVD • Mpeg4 is best quality • Requires an MPEG player to view • If downloading from the Internet, the entire file must be downloaded before being played because files sizes are very large. • Typically MPEG2 is used to make DVD movies • Can be placed on any storage media large enough to hold the file, but at current time the internet speed will not support streaming MPEG files.
    [Show full text]
  • Adobe Flash Video File Format Specification 10.1.2.01
    ADOBE FLASH VIDEO FILE FORMAT SPECIFICATION VERSION 10.1 68 The FLV File Format Annex E. The FLV File Format E.1 Overview Each tag type in an FLV file constitutes a single stream. There shall be no more than one audio and one video stream, synchronized together, in an FLV file. An FLV file shall not define multiple independent streams of a single type. The simple data types used in FLV are defined in the SWF format specification. FLV files use an additional type that is not defined for SWF files: UI24 representing an unsigned 24-bit integer. Unlike SWF files, FLV files shall store multi-byte numbers in big-endian byte order. For example, as a UI16 in SWF file format, the byte sequence that represents the number 300 (0x12C) is 0x2C 0x01; as a UI16 in FLV file format, the byte sequence that represents the number 300 is 0x01 0x2C. See also the SWF File Format Specification at http://www.adobe.com/go/swf_file_format E.2 The FLV header An FLV file shall begin with the FLV header: FLV header Field Type Comment Signature UI8 Signature byte always 'F' (0x46) Signature UI8 Signature byte always 'L' (0x4C) Signature UI8 Signature byte always 'V' (0x56) Version UI8 File version (for example, 0x01 for FLV version 1) TypeFlagsReserved UB [5] Shall be 0 TypeFlagsAudio UB [1] 1 = Audio tags are present TypeFlagsReserved UB [1] Shall be 0 TypeFlagsVideo UB [1] 1 = Video tags are present DataOffset UI32 The length of this header in bytes The DataOffset field usually has a value of 9 for FLV version 1.
    [Show full text]
  • Multimedia Production
    Multimedia Production Lecture 4 Digital Video Dr. Somsak Phattarasukol Faculty of Management Science UDON THANI RAJABHAT UNIVERSITY Digital Video ● Digital video is a representation of moving visual images in the form of encoded digital data. – the images being displayed are called frames – the rate at which frames are displayed in is called frame rate – the number of bits used to indicate a pixel's color is called color depth Sources: Wikipedia.org, dpbestflow.org, Mediacollege.com and Videomaker.com Digital Video ● An example video has – a duration of 1 hour (3600 sec), – a frame size of 640 x 480 pixels, – a color depth of 24 bits and – a frame rate of 25 frames per second would have a file size of 3600 x 640 x 480 x 24 x 25 = 82.8 Gbytes Sources: Wikipedia.org, dpbestflow.org, Mediacollege.com and Videomaker.com Digital Video Files ● Digital video file is a file for storing digital video and other data on a computer system. – It normally consists of a container containing encoded video data alongside encoded audio data as well as other data such as synchronization information and subtitles. – A program (or hardware) that encodes and decodes video or audio is called a codec Sources: Wikipedia.org, dpbestflow.org, Mediacollege.com and Videomaker.com Container ● A container is a metafile describing how different elements of data and metadata coexist in a computer file. – an example of image containers: TIFF – an example of audio containers: WAV – examples of multimedia containers: AVI, MP4, Ogg Sources: Wikipedia.org, dpbestflow.org, Mediacollege.com and Videomaker.com Codec ● A codec is a device or computer program capable of encoding or decoding a digital data stream or signal.
    [Show full text]
  • A Quick Guide to Digital Video Files Digital Preservation Office at The
    A Quick Guide to Digital Video Files Digital Preservation Office at the University of Michigan August 2010 What we think of as a video file is frequently a “wrapper” surrounding two different parts: the audio stream and the video stream. This can add an added degree of complexity to both the creation and the preservation of a video file. It is therefore, important to pay attention to things such as resolution and bit rate when creating a video in order to balance the desired quality with the file size. Paying close attention to the details can help you make videos that are easier for viewers to watch and to preserve in the long term. Source An important thing to consider when creating a video file is the source you’re using. This can have an effect on the quality of the audio and video of the file. Take the example of converting an older VHS tape into a digital video. Despite choosing a HD (High Definition) resolution, such as 1920x1080, you will not create a video that looks the same as an HD broadcast, simply because the resolution of the original video was much lower. Try to balance the original source quality with the other elements you can control when creating your video file, such as file size, rather than just arbitrarily deciding on a certain level of quality. Resolution and Aspect Ratio As stated earlier, it’s best to consider the resolution of your source when converting to digital for things such as DVDs, VHS tapes, etc. If you are encoding far above the resolution of your original source, chances are you’re just likely to get a very large file with picture quality not much different than the original.
    [Show full text]