ZoRa Photo Director

March 4, 2010 on 1:46 pm | Tags: , , , , | In General | No Comments

Just got word from Berthold Daum that he has integrated LIRe in the ZoRa Photo Director. That’s desktop asset management application, written in Java which allows for management of large photo collections. Source and binaries (Win & Linux) are available at http://www.photozora.org. Not to forget: it’s built on Eclipse!

Links

CfP Workshop on Interoperable Social Multimedia Applications (WISMA 2010)

February 1, 2010 on 4:19 pm | Tags: , , | In General | No Comments

11th International Workshop of the Multimedia Metadata Community
http://dmag.ac.upc.edu/conferences/wisma2010/

  • Submission due: 28th February 2010
  • Workshop dates: 19th-20th May 2010
  • Workshop venue: Universitat Politècnica de Catalunya, Barcelona (Spain)

In the Web 2.0, a growing amount of multimedia content is being shared on Social Networks. Due to the dynamic and ubiquitous nature of this content (and associated descriptors), new interesting challenges for indexing, access, and search and retrieval have arisen.
In addition, there is a growing concern on privacy protection, as a lot of personal data is being exchanged. Teenagers (and even younger kids), for example, require special protection applications; while adults are willing to have a higher control over the access to content.
Furthermore, the integration of mobile technologies with the Web 2.0 applications is also an interesting area of research that needs to be addressed; not only in terms of content protection, but also considering the implementation of new and enriched context-aware applications.
Finally, social multimedia is also expected to improve the performance of traditional multimedia information search and retrieval approaches by contributing to bridge the semantic gap. The integration of these aspects, however, is not trivial and has created a new interdisciplinary area of research.
In any case, there is a common issue that needs to be addressed in all the previously identified social multimedia applications: the interoperability and extensibility of their applications. Thus, the workshop is particularly interested in research contributions based on standards.

Recommended topics include, but are not limited to, the following:
•       Privacy in social networks
•       Access control in social networks
•       Social media analysis
•       Social media retrieval
•       Context-awareness in social networks
•       Mobile applications scenario
•       Social networks ontologies and interoperability
•       Security and privacy ontologies
•       Content distribution over social networks
•       Multimedia ontologies and interoperability
•       Multimedia search and retrieval
•       Semantic metadata management
•       Collaborative tagging
•       Interaction between access control and privacy policies
•       Social networks and policy languages
•       Policy management

Research Papers: Papers should describe original and significant work in the research and industrial practice of related topics. (i) Long papers: up to 8 pages, will normally be particularly focused on research studies, applications and experiments (ii) Short papers: up to 4 pages, will be particularly suitable for reporting work-in-progress, interim results, or as a position paper submission.

Applications and Industrial Presentations: Proposals for presentations of applications and tools, including reports on the application and utilisation of tools, industrial practices and models, or tool/system demonstrations. Abstract: 2 pages.

All submissions and proposals are to be in English and submitted in PDF format at the WISMA paper submission web site (http://www.easychair.org/conferences/?conf=wisma2010) on or before 28th February 2010. Papers should be formatted according to LNCS style (http://www.springer.com/computer/lncs?SGWID=0-164-7-72376-0). The workshop proceedings are to be published as a volume at CEUR Workshop Proceedings (http://ceur-ws.org).

My Talk @ Florida Atlantic University

December 8, 2009 on 10:00 pm | Tags: , , , | In General | 3 Comments

Just hours ago I finished my talk here at FAU, Boca Raton,FL, USA. I was talking about user intentions or what I call “the other end of the camera”. It was the first time I presented a whole overview on the “Intentions & Multimedia” thing I’m working on now for quite a long time, and I think it was very well recieved.

SeMuDaTe 09 already started

December 2, 2009 on 9:24 am | Tags: , , , | In General | No Comments

I’m currently in Graz, chairing the first session of SeMuDaTe 09, a community workshop of the multimedia metadata community. I’m looking forward to a day full of interesting talks and discussions. Proceedings of the event are already available at ceur.ws. Our paper on Global vs. Local Feature in Video Summarization will be presented in the afternoon by my colleague Marian Kogler.

Links:

ACM Multimedia 2009: Project Natal in the Brave New Topics Session …

October 21, 2009 on 8:19 am | Tags: , , , | In General | No Comments

Yesterday the “brave new topics” session took place. Initially it was meant to present challenging ideas and new things without the demand for extensive evaluation or being picky or realistic. Hrvoje Benko from Microsoft presented a lot of things regarding new output and input interfaces and closed his presentation with the ad for Project Natal. While some of the audience were astonished I still have to point out that especially the multimedia research community has to get a bit closer to gaming. Many of the engineered solutions there can be applied to common problems in multimedia and the other way round. At GDC europe people said problem in game developments are streaming and asset management. On the other hand gaming provides us with cool I/O devices (Dualshock, Sixaxis, Wiimote, etc.) So get together guys :-D

Caliph & Emir @ ACM MM – Presentation on Thursday

October 20, 2009 on 5:17 am | Tags: , , | In General | 2 Comments

I’m currently attending the ACM Multimedia conference in Beijing (nice city by the way, one only has to survive traffic). Tomorrow is out big day for our user intent classification tool “Intent inside” and the day after Claiph and Emir are presented by myself. If you are also her, I’d be happy to meet & greet and talk about further developments, etc.

CfP 2nd International Conferences on Advances in Multimedia

September 30, 2009 on 9:58 am | Tags: , , , | In General | No Comments

MMEDIA 2010 aims to provide an international forum by researchers, students, and professionals for presenting recent research results on advances in multimedia, mobile and ubiquitous multimedia and to bring together experts from both academia and industry for the exchange of ideas and discussion on future challenges in multimedia fundamentals, mobile and ubiquitous multimedia, multimedia ontology, multimedia user-centered perception, multimedia services and applications, and mobile multimedia.

>> more information

Converting video for flash video players to H.264/AAC

July 10, 2009 on 2:58 pm | Tags: , , , , , | In Development, Flash, General, Multimedia | No Comments

Have you ever tried to put a video online? Well actually it is quite easy if you user YouTube. No matter what codec you use you have a good chance to get a decent result. If you want to host the video yourself you basically need a flash video player (assuming that flash is the most widely spread tool on multiple platforms) like the JW FLVPlayer. Finally you’ll need to get your video file to a format flash can play using progressive download (which means you can watch it while downloading, just like on YouTube).

Since Adobe Flash Player 9 Update 3Flash can play back MP4 files with H.264 video and AAC audio streams [see here], so we can just focus on this one. First step is to get a ffmpeg version compiled with libx264 and libfaac. You might check this on the command line, just execute ffmpeg without parameters:

FFmpeg version SVN-r16573, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: [...] –enable-libfaac –enable-libgsm –enable-libx264 [...]

The bold ones should be there to support the needed codecs. I used FFmpeg Revision 16537 from this page, which works fine.

If the libraries are there you can proceed to the next step:

ffmpeg -i <inputfile> -b 1024k -vcodec libx264 \\
-acodec libfaac -ab 160k <output.mp4>

This converts your input file to the needed mp4 file. You can also change the size of the file with the switch “-s”, like for instance “-s 320×240″. Take a close look on the switches “-b” and “-ab” which define video and audio bitrate. If the sum of both bitrates is too high for the network the user will not be able to watch the video smoothly.

One might think s/he’s finished, but no … unfortunately progressive download doesn’t work with too many mp4 files. The file index (an atom == “mp4 metadata unit”) containing the file index (== the description where the video and the audio stream are located in the file and how they are stored) is at the end of the MP4 file. So the flash player has to download the whole file before starting the playback, ka-ching!

Fortunately there is an ffmpeg tool called qt-faststart (linux users will find it in the tools folder of ffmpeg) moving the index from end to start. For windows user a precompiled binary can be found here. Use this to move the metadata:

qt-faststart <infile.mp4> <outfile.mp4>

Now you are done with the file. Use for instance the JW FLVPlayer setup wizard to create an HTML snippet. Note that in height you have to add 19 pixels to your video dimensions, as this is the height of the control bar of the player :-D

Contribution @ I-KNOW 09 accepted!

May 30, 2009 on 10:00 am | Tags: , , | In Conference, Emergent Semantics, General, Multimedia, Research | 2 Comments

The contribution of Christoph Kofler and me with the title “An exploratory study on the explicitness of user intentions in digital photo retrieval” has been accepted for publication and presentation at the I-Know ‘09. Here is the abstract (the full paper will follow as soon as we have prepared the camera ready version):

Search queries are typically interpreted as specification of information need of a user. Typically the search query is either interpreted as is or based on the context of a user, being for instance a user profile, his/her previously undertaken searches or any other background information. The actual intent of the user – the goal s/he wants to achieve with information retrieval – is an important part of a user’s context. In this paper we present the results of an exploratory study on the interplay between the goals of users and their search behavior in multimedia retrieval.

This work has been supported by the SOMA project.

Links

Self Organizing Multimedia Architecture (SOMA) – The Project

May 29, 2009 on 10:00 am | Tags: , , | In Multimedia | 1 Comment

Currently we are working a lot on a research project funded by a Carinthian agency. The project goes on for 3 years (2.5 years left) and has enough funds to pay 4 PhDs and 1 post doc researcher. Here is the description and the link to the blog:

The project Self-organizing Multimedia Architecture (SOMA) aims to capture the whole life-cycle of multimedia content in a single architecture for large distributed multimedia information systems. In SOMA we focus on scenarios where events, which we understand as “limited time periods of special importance”, are a central concept. Examples for such scenarios are sports events stretching over time, where start, finish or critical parts of a race are possible events, or traffic monitoring, where events like traffic jams or accidents have to be reported and investigated.

via Project Description | Self Organizing Multimedia Architecture.

Next Page »

© 2004-2007 by Mathias Lux
>> Contents of this page are licensed under the CreativeCommons Attribution 2.5 license <<