HTML5 Metadata and Semantics for Web 3.0 Videos

Total Page:16

File Type:pdf, Size:1020Kb

HTML5 Metadata and Semantics for Web 3.0 Videos DESIDOC Journal of Library & Information Technology, Vol. 31, No. 4, July 2011, pp. 247-252 © 2011, DESIDOC Advanced (X) HTML5 Metadata and Semantics for Web 3.0 Videos Leslie F. Sikos IT Professional, Adelaide, Australia E-mail: [email protected] ABSTRACT Searching for videos online is inefficient if the search relies exclusively on relevant keywords in the text surrounding the object. HTML5 introduced advanced semantic annotation in the form of a new metadata format called microdata. Along with the video element which provides semantics to embedded video contents, media metadata can also be used to add additional features to be searched, archived, or automatically processed. Certain metadata formats provide a high level of flexibility adequate to combine them with other vocabularies, making it possible to write truly sophisticated, machine-readable metadata for video components of the Social Semantic Web. Keywords: Machine-readable metadata, video embedding, microformats, microdata, Dublin Core, RDFa, HTML5, social Semantic Web 1. INTRODUCTION distinct fields. Gayo, et al. introduced video metadata for both the producers and the users5. The first type of For years, publishing videos online was feasible metadata associates multimedia content with domain- through general object embedding only. Currently, there is specific ontologies while the second provides video still no standardised solution for publishing videos on the tagging. Their search engine combines both kinds of Web, partly due to the variety of video and audio codecs, metadata to locate the desired content and provides and the varying browser support. Video metadata can be browsing capabilities as well. Kucuk, et al. proposed an embedded either in the markup or in the file itself. Without annotation and retrieval system to automate semantic descriptive, structured metadata video searches are video indexing6. Along with the introduction of HTML5, insufficient, unreliable, or even unfeasible. new opportunities appeared to provide rich semantics as well as accessibility in the markup for videos. This paper The first video metadata applications date-back enumerates the challenges as well as limitations of the before the Web 2.0 era when Dublin Core metadata was field together with methods for standard-compliant, applied on MPEG-7 videos to support hierarchical video semantic video embedding, and metadata mixing. descriptions1, and later for providing conceptual navigation2. Although the need for video sharing has increased enormously with the introduction of Semantic 2. SEMANTIC VIDEO EMBEDDING Web and especially the Social Semantic Web, the If an online video is not meant to be part of an potential of Semantic Web technologies in video sharing interactive multimedia presentation, that is best provided has been far from exploited yet although some efforts by SMIL along with its native metadata7, the resource is have already been made in this field. described by (X)HTML markup. In contrast to the Gómez-Romero, et al. used ontologies to build a complexity of video embedding with the embed element in framework to construct a symbolic model of video scenes HTML versions up to 4.01, or the object element in by integrating tracking data and contextual information3. XHTML, (X)HTML5 introduced the video element that Brostow, et al. presented the first collection of videos with provides semantic meaning to video contents and full 8 object class semantic labels, complete with metadata4. control over the embedded file . Features such as height Their database associates each pixel with one of 32 or width can be added optionally. An image representing a semantic classes which they demonstrated on three frame from the video can also be defined in case the video DESIDOC J. Lib. Inf. Technol., 2011, 31(4) 247 cannot be rendered. Alternate content can also be given in download the whole video file even if playback has not the form been started yet. One of the exceptions is Firefox 3.6+ which only downloads a fragment necessary to determine <video src=”sample.ogv” width=”320" height=”240" poster=”sample.jpg”> duration and render a frame from the video. This behaviour <p>Download the <a href=”video.ogv”>sample video</ can be overridden by the preload attribute. The attribute a> (OGV, 5.34 MB)</p> value none forces the browser to avoid downloading. The </video> metadata attribute value hints that enough data should be Video controls can be shown or hidden in the browser downloaded only to show a frame and determine duration. by the controls attribute on the video element: The value auto downloads the whole video if possible. The effect of preload=”none” can be simulated in browsers that <video src=”xyz.mov” controls=”controls”> do not support it by omitting the src attribute and source </video> elements that are provided only if the user clicks a button: Since the video codec support is different in each browser, the same video can be provided in various <video controls=”controls”> formats, avoiding the need to download videos that cannot Video not supported be played on the system, e.g., </video> <input type=”button” value=”Load video” <video> onclick=”document.getElementsByTagName(‘video’)[0].src <source src=”video.mp4" type=”video/mp4"> = ‘video.mp4’;”> <source src=”video.ogv” type=”video/ogg”> <p>Download the <a href=”video.ogv”>sample video</ Additionally, customised controls can be added to a> (OGV)</p> the video embedding since the DOM API for video in </video> (X)HTML5 supports several events that can be The type attribute declares the Internet Media Type implemented through JavaScript. For example: (MIME type) of the video file. These specifications are described in IETF/ISOC Request for Comments (RFC) <script> documents and are standardised by IANA registration9. var video = document.getElementsByTagName The most common video Media Types are summarised in (‘video’)[0]; Table 1. </script> <input type=”button” value=”Play” Table 1. Common MIME types for video onclick=”video.play()”> Media type Specification Description <input type=”button” value=”Pause” video/mpeg RFC204510, RFC 204611 MPEG-1 video onclick=”video.pause()”> 12 video/mp4 RFC 4337 MP4 video Currently, the src attribute value of the video tag 13 video/ogg RFC 5334 Ogg theora or should be a physical file which makes it impossible to other video embed videos from YouTube. video/quicktime IANA registered14 QuickTime video video/x-ms-wmv MS KB 28810215 Windows media (X)HTML5 videos can be dynamically drawn on a video canvas with JavaScript using the drawImage method: <video src=”video.mp4" controls=”controls”> The problem is that MIME types do not reflect the Video not supported codecs of videos stored in container formats (e.g., H.264 </video> in MPEG-4). They can be provided by the codecs <canvas id=”canvas”> parameter: Canvas not supported <video controls=”controls”> </canvas> <source src=”video.mp4" type=’video/mp4; <script> codecs=”avc1.42E01E, mp4a.40.2" ’> var ctx = document.getElementById(‘canvas’). <source src=”video.ogv” type=’video/ogg; getContext(‘2d’); codecs=”theora, vorbis” ’> var video = <p>Download the <a href=”video.ogv”>sample video</ document.getElementsByTagName(‘video’)[0]; a></p> video.onloadeddata = function(e) { </video> ctx.canvas.width = video.videoWidth; The video element of (X)HTML5 provides playback ctx.canvas.height = video.videoHeight; support detection, including the canPlayType() method on ctx.drawImage(video, 0, 0); the media element16 or the onerror event listener. Certain } browsers cannot stream the video or automatically </script> 248 DESIDOC J. Lib. Inf. Technol., 2011, 31(4) 3. MACHINE-READABLE METADATA supported by the highest traffic video sharing website YouTube. Certain metadata formats such as microformats and RDFa apply and reuse features of existing technologies The Dublin Core vocabulary has several metadata (e.g., the rel attribute)17 while others such as Creative that can be used for video contents such as MIME type, Commons and Dublin Core introduce new annotations, date and time, associated URI, country, and language22. typically through the namespace mechanism. Video licenses can be efficiently denoted by Creative 3.1 Metadata Formats Reusing Attributes Commons, which is also ideal for describing copyright in RDF with the properties cc:permits, cc:requires, cc: The Web document attributes used by RDFa are prohibits, cc:jurisdiction, cc:legalcode, cc:deprecatedOn; ideal for metadata on generic objects as well as videos18. and the classes Work, License, Jurisdiction, Permission, A common feature of video sharing portals is the review Requirement, and Prohibition23. option which can be implemented with metadata support by using the hReview microformat (class=”hreview”). The digital management of rights can be performed by using the Open Digital Rights Language (ODRL)24. Some or all rights of video authors are often reserved. Many licenses associated with videos are sophisticated Education videos can be described by the IEEE and users cannot be expected to know them. The Learning Object Metadata (LOM)25. rel=”license” microformat can be added to hyperlinks that point to the description of the license. In the case of the Several metadata associated with videos are Creative Commons Attribution-ShareAlike license, for supported by multiple formats such as personal data on example, rel=”license” should be the staff (DC, FOAF, DOAC, Bio, etc.) or geographic positions (DC, Geo26, etc.). <video src=”lesson1.ogv” rel=”license” href=”http:// creativecommons.org/licenses/by-sa/3.0/” /> Due to the overlapping vocabularies of metadata The value of the href attribute provides the associated technologies, certain formats have never been widely 27 URI of the resource where the license is described. distributed (e.g., SOMA ). 4. COMBINING METADATA 3.2 Video Licensing with HTML5 Microdata If no additional constraints apply, metadata can be The concept of microdata has been introduced in arbitrarily mixed through multiple independently HTML5 for labelling content in order to describe a specific developed vocabularies. For example, microformats can type of information, such as licensing information to be combined with (X)HTML5 microdata.
Recommended publications
  • Hidden Meaning
    FEATURES Microdata and Microformats Kit Sen Chin, 123RF.com Chin, Sen Kit Working with microformats and microdata Hidden Meaning Programs aren’t as smart as humans when it comes to interpreting the meaning of web information. If you want to maximize your search rank, you might want to dress up your HTML documents with microformats and microdata. By Andreas Möller TML lets you mark up sections formats and microdata into your own source code for the website shown in of text as headings, body text, programs. Figure 1 – an HTML5 document with a hyperlinks, and other web page business card. The Heading text block is H elements. However, these defi- Microformats marked up with the element h1. The text nitions have nothing to do with the HTML was originally designed for hu- for the business card is surrounded by meaning of the data: Does the text refer mans to read, but with the explosive the div container element, and <br/> in- to a person, an organization, a product, growth of the web, programs such as troduces a line break. or an event? Microformats [1] and their search engines also process HTML data. It is easy for a human reader to see successor, microdata [2] make the mean- What do programs that read HTML data that the data shown in Figure 1 repre- ing a bit more clear by pointing to busi- typically find? Listing 1 shows the HTML sents a business card – even if the text is ness cards, product descriptions, offers, and event data in a machine-readable LISTING 1: HTML5 Document with Business Card way.
    [Show full text]
  • Le Microformat Hproduct C'est Quoi ? Pourquoi Utiliser Le Microformat
    Apprendre à utiliser les microformats : hProduct 2017-02-21 23:02:01 Nicolaseo Le microformat hProduct c’est quoi ? hProduct est un microformat approprié pour publier et embarquer les données de vos produits. C’est une sorte de méta tags qui permet de structurer vos données pour permettre aux robots des moteurs de recherche de mieux référencer votre contenu. Pourquoi utiliser le microformat hProduct Le microformat hProduct est basé sur un ensemble de champs très important pour communiquer avec les robots des moteurs de recherche comme Google. Utiliser les {meta- tags|richsnippets|microformats} (et tout ce qui peut permettre aux moteurs de recherche de mieux classer votre contenu) vous apportera plus de visibilité sur internet grâce à un meilleur référencement de votre site et de son contenu. Comment utiliser le microformat hProduct Le schéma hProduct se compose de ce qui suit : hproduct brand. optionnel. texte. peut aussi utiliser hCard pour les fabricants. category. optionnel. texte. peut aussi utiliser rel-tag. ré-utilisé à partir de hCard. price. optionnel. floating point number. peut utiliser un format de devise. description. optionnel. texte. peut aussi inclure un marquage HTML valide. réutilisé à partir de hReview. fn. requis. texte. nom du produit ou titre. réutilisé de hCard. photo. optionnel. élément image ou lien. réutilisé de hCard. url. optionnel. href. peut contenir rel-tag rel=’product’. ré-utilisé de hCard. review. optionnel. hReview, ou hReview-aggregate. listing. optionnel. hListing, ou hListing-aggregate. identifier. optionnel. type. requis. – exemples : model mpn upc isbn issn ean jan sn vin sku value. requis. – l’étiquette peut être implicite. Détails des champs du microformat hProduct Les noms de classe category, fn, photo, url sont réutilisés à partir de hCard.
    [Show full text]
  • Where Is the Semantic Web? – an Overview of the Use of Embeddable Semantics in Austria
    Where Is The Semantic Web? – An Overview of the Use of Embeddable Semantics in Austria Wilhelm Loibl Institute for Service Marketing and Tourism Vienna University of Economics and Business, Austria [email protected] Abstract Improving the results of search engines and enabling new online applications are two of the main aims of the Semantic Web. For a machine to be able to read and interpret semantic information, this content has to be offered online first. With several technologies available the question arises which one to use. Those who want to build the software necessary to interpret the offered data have to know what information is available and in which format. In order to answer these questions, the author analysed the business websites of different Austrian industry sectors as to what semantic information is embedded. Preliminary results show that, although overall usage numbers are still small, certain differences between individual sectors exist. Keywords: semantic web, RDFa, microformats, Austria, industry sectors 1 Introduction As tourism is a very information-intense industry (Werthner & Klein, 1999), especially novel users resort to well-known generic search engines like Google to find travel related information (Mitsche, 2005). Often, these machines do not provide satisfactory search results as their algorithms match a user’s query against the (weighted) terms found in online documents (Berry and Browne, 1999). One solution to this problem lies in “Semantic Searches” (Maedche & Staab, 2002). In order for them to work, web resources must first be annotated with additional metadata describing the content (Davies, Studer & Warren., 2006). Therefore, anyone who wants to provide data online must decide on which technology to use.
    [Show full text]
  • Microformats the Next (Small) Thing on the Semantic Web?
    Standards Editor: Jim Whitehead • [email protected] Microformats The Next (Small) Thing on the Semantic Web? Rohit Khare • CommerceNet “Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards.” — Microformats.org hen we speak of the “evolution of the is precisely encoding the great variety of person- Web,” it might actually be more appropri- al, professional, and genealogical relationships W ate to speak of “intelligent design” — we between people and organizations. By contrast, can actually point to a living, breathing, and an accidental challenge is that any blogger with actively involved Creator of the Web. We can even some knowledge of HTML can add microformat consult Tim Berners-Lee’s stated goals for the markup to a text-input form, but uploading an “promised land,” dubbed the Semantic Web. Few external file dedicated to machine-readable use presume we could reach those objectives by ran- remains forbiddingly complex with most blog- domly hacking existing Web standards and hop- ging tools. ing that “natural selection” by authors, software So, although any intelligent designer ought to developers, and readers would ensure powerful be able to rely on the long-established facility of enough abstractions for it. file transfer to publish the “right” model of a social Indeed, the elegant and painstakingly inter- network, the path of least resistance might favor locked edifice of technologies, including RDF, adding one of a handful of fixed tags to an exist- XML, and query languages is now growing pow- ing indirect form — the “blogroll” of hyperlinks to erful enough to attack massive information chal- other people’s sites.
    [Show full text]
  • Microformats Cheat Sheet
    Elemental Microformats Design Patterns tom eview Datetime Pattern esume XFN VoteLinks microformats.org hR hR hCard hCalendar rel="contact" rel="parent" rev="vote-for" <abbr hA rel="acquaintance" rel="spouse" class="foo" • adr rev="vote-against" + country-name title="YYYY-MM-DDTHH:MM:SS+ZZ:ZZ" rel="friend" rel="kin" rev="vote-abstain" • extended-address rel="met" rel="muse" >Human Date Time</abbr> + post-office-box rel="co-worker" rel="crush" Rel-Nofollow + postal-code rel="colleague" rel="date" rel="nofollow" Include Pattern • street-address + locality rel="co-resident" rel="sweetheart" <object Rel-Tag class="include" + region rel="neighbor" rel="me" rel="tag" • type rel="child" type="text/html" • affiliation Rel-Directory (Draft) data="#idref" ¤ author rel="directory" /> + best × + bookmark (rel) Rel-License + bday <a class="include" • • category rel="license" href="#idref">...</a> + + class × contact Compound Microformats + description + dtend + dtreviewed hCard hCalendar hResume (Draft) × dtstart class="vcard" class="vevent" class="hresume" × dtstamp class="adr" class="category" rel="tag" class="affiliation" (hcard) duration class="type" class="class" class="education" (hcalendar) • education [work|home|pref|postal|dom|intl] class="description" • email class="experience" (hcalendar) • type class="post-office-box" class="dtend" (ISO Date) class="publication" (citation) • value class="street-address" class="dtstamp" (ISO Date) class="skill" rel="tag" × entry-content class="extended-address" class="dtstart" (ISO Date) class="summary" • entry-summary
    [Show full text]
  • Microformats: Empowering Your Markup for Web 2.0
    Microformats: Empowering Your Markup for Web 2.0 John Allsopp Microformats: Empowering Your Markup for Web 2.0 Copyright © 2007 by John Allsopp All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 (pbk): 978-1-59059814-6 ISBN-10 (pbk): 1-59059-814-8 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail [email protected],or visit www.springeronline.com. For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA 94710. Phone 510-549-5930, fax 510-549-5939, e-mail [email protected], or visit www.apress.com. The information in this book is distributed on an “as is” basis, without warranty. Although every precaution has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work.
    [Show full text]
  • Rdfa Versus Microformats: Exploring the Potential for Semantic Interoperability of Mash-Up Personal Learning Environments
    RDFa versus Microformats: Exploring the Potential for Semantic Interoperability of Mash-up Personal Learning Environments Vladimir Tomberg, Mart Laanpere Tallinn University, Narva mnt. 25, 10120 Tallinn, Estonia [email protected], [email protected] Abstract. This paper addresses the possibilities for increasing semantic interoperability of mash-up learning environments through the use of automatically processed metadata associated with both learning resources and learning process. We analyze and compare potential of two competing technologies for this purpose: microformats and RDFa. 1 Introduction Mash-up Personal Learning Environments have become a fast developing trend in the world of technology-enhanced learning, partly because of their flexibility and lightweight integration features. Although it is quite easy to aggregate the RSS feeds from the blogs of learners, it is more difficult to get an overview of course and its learning activities. A course is not just a syllabus, it also involves various dynamic processes that can be described in many aspects. The course always has certain learning goals, a schedule that consists learning activities (assignments, discussions), registered participants like teachers and students, and different types of resources. It would be useful, if we would be able to extract such information also from mash-up personal learning environments (just like it can be done in traditional Learning Management Systems) and allow exchanging it between the course participants. Today for semantic tagging of Web content in general and learning content as special case various technologies are used. But there are no tools and ways exist for semantic annotation of learning process that takes place in a distributed network of mash-up personal learning environments.
    [Show full text]
  • From Atom's to OWL S: the New Ecology of The
    mindswap maryland information and network dynamics lab semantic web agents project From Atom's to OWL's: The new ecology of the WWW Jim Hendler [email protected] http://www.cs.umd.edu/~hendler mindswap maryland information and network dynamics lab semantic web agents project From Atom*s to OWL§s: The new ecology of the WWW Jim Hendler [email protected] http://www.cs.umd.edu/~hendler * syntax § semantics mindswap maryland information and network dynamics lab semantic web agents project Syntax to Semantics mindswap maryland information and network dynamics lab semantic web agents project Acknowledgements • In preparing this talk I have mostly ignored the advice of a great many people including Tim Berners-Lee, Dan Connolly, Wendy Hall, Eric Miller, Brand Nieman, Bijan Parsia, Guus Schreiber, Nigel Shadbolt, and Frank VanHarmelen • I owe much to my research group – Details at http://www.mindswap.org/ (Our Semantic Web Portal) XML 2005 mindswap maryland information and network dynamics lab semantic web agents project The Web used to be easy (ca. 1990) • Documents (HTML) – Emacs or vi via some cutting and pasting and it showed in your browser - woohoo! • And Links (HTTP) – Install LibWWW, customize parameters, and you were up and running - woohoo! XML 2005 mindswap maryland information and network dynamics lab semantic web agents project But that didn't last long… (ca 2000) © Commerce One and Addison-Wesley, 2001 XML 2005 mindswap maryland information and network dynamics lab semantic web agents project Excelsior … • Syndication – Atom, JSON,
    [Show full text]
  • Microformats a Pragmatic Path to the Semantic Web
    Microformats A Pragmatic Path to the Semantic Web Rohit Khare, Ph.D CommerceNet Labs Tantek Çelik Technorati, Inc. CommerceNet Labs Technical Report 06-01 January 2006 Abstract Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, in- dex, and extract semi-structured information such as tags, calendar entries, contact informa- tion, and reviews on the Web. This makes it a pragmatic path towards achieving the vision set forth for the Semantic Web. Even though it sidesteps the existing “technology stack” of RDF, ontologies, and Artificial Intelligence-inspired processing tools, various microformats have emerged that parallel the goals of several well-known Semantic Web projects. This position paper introduces the ideas behind microformats and gives examples; compares to similar efforts in the Semantic Web; and compares their prospects according to Rogers’ Dif- fusion of Innovation model. Categories and Subject Descriptors I.7.2 [Document and Text Processing]: Document Preparation – markup languages, hypertext/hypermedia. H.3.5 [Information Storage and Retrieval]: Online Information Services – Web-based services. General Terms: Design, Standardization, Human Factors Keywords: Microformats, Semantic Web, Decentralization, HTML, CSS Authorship This report also draws upon the first author’s column for IEEE Internet Computing, “Microfor- mats: The Next (Small?) Thing on the Semantic Web?” Additional portions have been submit- ted to the 15th International World Wide Web Conference. Mr. Çelik is Chief Technologist for Technorati, Inc. He can be reached at 665 3rd Street, Suite 207, San Francisco, CA 94107, or as <[email protected]>. CN-TR 06-01: Microformats: A Pragmatic Path to the Semantic Web 1 1.
    [Show full text]
  • Microformats (Μformat) ○ Generic Rdfa ○ HTML5 Microdata (Including Schema.Org)
    This file is licensed under the Creative Commons Attribution-NonCommercial 3.0 (CC BY-NC 3.0) Knowledge Engineering with Semantic Web Technologies Lecture 2: RDF Based Knowledge Representation 2.11 EXTRA: RDF and the Web Dr. Harald Sack Hasso-Plattner-Institut for IT Systems Engineering University of Potsdam Autumn 2015 Semantic Web Technologies , Dr. Harald Sack, Hasso Plattner Institute, University of Potsdam RDFa and µFormats Semantic Web Technologies , Dr. Harald Sack, Hasso Plattner Institute, University of Potsdam RDF and the Web ● RDF/XML can directly be embedded in an HTML document via <head> and <script> ● RFC 3870 defines Mime-Type application/rdf+xml <head> <title>My Document</title> <script type="application/rdf+xml"> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> <rdf:Description rdf:about="http://www.w3.org/" dc:title="W3C Homepage"/> </rdf:RDF> </script> </head> Semantic Web Technologies , Dr. Harald Sack, Hasso Plattner Institute, University of Potsdam RDF and the Web ● W3C recommended linking of external RDF documents via HTML <link> element in HTML <head> <link rel="meta" type="application/rdf+xml" href="Meta-Data-for-Web-Page.rdf"/> ● RDF documents can also be embedded via <a href=...> and additional markup (e.g. RDF logo) within HTML <body> Semantic Web Technologies , Dr. Harald Sack, Hasso Plattner Institute, University of Potsdam RDF and the Web ● Problem: HTML and RDF data are separate <http://www.bestbuy.com/site/Plan+9+from+Outer+Space+- +DVD/7167941.p?id=23883&skuId=7167941&st=plan%209%20from%20outer% 20space&lp=6&cp=1> <http://ogp.me/ns#site_name> "Best Buy" .
    [Show full text]
  • Agritourism Farms-Evaluation of Their Websites Quality and Web
    Agris on-line Papers in Economics and Informatics Volume V Number 1, 2013 Agritourism Farms - Evaluation of Their Websites Quality and Web 2.0 Z. Havlíček, V. Lohr, M. Šmejkalová, J. Grosz, P. Benda Faculty of Economics and management, Czech University of Life Sciences in Prague, Czech Republic Anotace Na základě porovnání výsledků z dotazníkových šetření z let 2009 a 2012 bylo zjištěno, že kvalita www prezentací agroturistických farem se téměř nemění. Kvalita stránek u stejných farem je statisticky vyšší pouze u kritéria “Obsah – struktura” www stránek. Lze usuzovat, že v roce 2012 farmáři věnovali větší pozornost struktuře informací, které prezentují na vlastních stránkách. Farmy, které mají vlastní doménové jméno, vykazují statisticky významně vyšší kvalitu www prezentací. Obecně lze říci, že prezentace agroturistických farem málo využívají nové přístupy v internetových technologiích. Proto byl navržen postup jak inovovat méně kvalitní www prezentace pomocí WCMS WordPress. Je doporučováno více využívat technologie Web 2.0, například pomocí mashup technologií integrovat do webových prezentací související informační zdroje (odkazy na sociální sítě, propojení s počasím nebo zdrojem RSS v daném regionu). Klíčová slova Agroturistika, kvalita website, SEO, Web 2.0, WordPress. Abstract Based on surveys carried out in 2009 and 2012 it can be suggested that the web presentations of agritourism farms are virtually unchanged. The quality of the web pages for the same farms is statistically higher only for the criterion of “Content – structure” of websites. It can be assumed that in 2012 farmers devoted more attention to the structure of information that is presented on their own websites. Farms that have their own domain name show statistically significantly higher quality websites.
    [Show full text]
  • Microformats and Microdata and SEO
    Microformats and Microdata and SEO Making the Web a Better Place with Rich Snippets Microformats are a way of marking up content with “meta” information. Other means include Microdata and RDFa. In essence, this involves adding some additional HTML around existing content so that the content can be identified by automated web services. These services include search engines and news aggregators. Of the three existing formats, I recommend looking at either Microdata or Microformats. Microformats Microformats is a grass-roots effort and has been around for quite a while now. It is based on tagging items with specific classes. There are many “patterns” for Microformats. Each pattern is intended for a specific type of content and has its own set of classes for marking things up. Some examples of Microformats patterns include: hCard - for people and organizations hCalendar - for events hProduct - for products hReview - for reviews of items hRecipe - for recipes Microdata The Microdata format was proposed by several major search engines within the last year. This is a similar idea to Microformats but the content is marked up in a different way - with new attributes on HTML tags. Since Microdata uses new attributes, it is a bit more technical than simply adding classes to markup. There are similar examples of Microdata patterns: Person - a person (alive, dead, undead, or fictional) Organization - an organization such as a school, NGO, corporation, club, etc. Event - an event happening at a certain time at a certain location Place - entities that have a somewhat fixed, physical extension LocalBusiness - particular physical business or branch of an organization Product - anything that is made available for sale Review - a review of an item What are they Good for? When Google (for example) presents the results of a search, sometimes you get more than just a few lines of text.
    [Show full text]