[solved] Tools for producing, burning and veryfing UDF BDs

Hi all,
I am currently trying to move the production of my BDs over from Windows 7 to arch. Usually I edit / store all my HD-related videos and burn them to a pure UDF-based BD25. After verification of the burned media I delete the local files. All this is easily possible under Windows by simply using ImgBurn (in essence DVDDecrypter without decryption module). Under arch things seem to be pretty limited when it comes to generating UDF-based ISOs for later burning.
K3B can generate and burn more recent UDF standard discs but fails to add files bigger than 4GB.
mkisofs can generate udf dissk when using the parameters -udf -allow-limited-size but I am not shure about the compatibility with other operating systems (e.g. when I take my external BD drive to a friend in order to watch a HD video with him).
Using udftools plus a loop back image as described here sound also quite cumbersome to me:
http://irishjesus.wordpress.com/2010/10 … -in-linux/
Aren't there other possibilities ? I am really close to wrap ImgBurn via WINE and it's CLI.
TIA,
D$
Last edited by Darksoul71 (2014-02-05 11:21:26)

Update: OK, I have found multiple options
1) One can simply use ImgTool running unter Wine although automisation via script is a bit cumbersome as I experienced double path inside the GUI when being called via bash / WINE.
2) mkdufiso seems to be capable as well of generating UDF > V2.5 (which is critical for producing BDs which run in a BD SAP as it seems).
3) Simply use mkisofs with the parameters -udf and -allow-limited-size produces a perfectly playable BD which I can open under Linux and Windows 7 as well.
mkisofs simply produces UDF in Version 2.0 which is fine for me since my main aim is to store my video collection additionally to my HTPC.
As for the verification I am including a sha1 checksum file of all MKV burned to the disk as well. So I can easily verify the integrity of the BD content after burning by simply calling "sha1sum * && cat sha1sums.txt" inside the directory where the BD is mounted.
Last edited by Darksoul71 (2014-02-05 11:22:56)

Similar Messages

  • Looking for the burn and smudge tools in photoshop 8.0

    Hi,  I have been using Photoshop 4.0 and loved it.  Got a new computer and had to change to Photoshop 8.0.  I can't seem to find the burn or smudge tools I used in the 4.0 photoshop.  Is any one familiar with this problem?

    Assuming you mean Photoshop Elements 8.0, then they are located under the Sponge and Blur tools, respectively.
    Burn Tool:
    Smudge Tool:

  • PDA-based Tools for Producer/Directors?

    Anyone know of a PDA-based tool or suite of tools to help a Producer/Director keep track of a small production? Stuff like shot sheets, scheduling, location tracking, ability to import storyboards, etc. Maybe even sophisticated project management stuff, too.
    I know there are vanilla project management apps out there, but I was wondering if someone knew of anything customized (or customizable) for independent film and video production.
    I'd prefer to carry a PDA, like I used to use my venerable old Newton. But I suppose if the only solutions needed to run on a full-featured laptop, I could live with that.
    Anyone have any referrals for me? Thanks in advance.

    Good idea!
    A construction company here in San Francisco used wireless PDAs with its crew to keep each worker up to date with their duties on the project. Took several monthes off the work time.
    I wish there was a Mac OS PDA out there. Smaller pen friendly computers are far more useful that notebooks for a lot of work.
    As for software for Producers/Directors. I am going to check out Versiontracker's Palm section and then PDAGold.com My PDA is Win Mobile 5, so, I have to weed through all the palm software to find WM5 programs.
    Someone with some SQL skills would make a killing with a PDA app for us to keep track of projects in the field.
    G5 Dual 2.3Ghz Power PC 3GB RAM, 2x120HDD, & 15" Powerbook   Mac OS X (10.4.6)  

  • Best tool for Inverse Telecining and deinterlacing ?

    I have very limited experience in encoding videos before.
    Recently I'm trying to transcode a DVD into H.264 with x264. All the VOB files are dumped already.
    As for the video part, I've decided to do it this way :
    mkfifo TEMP.y4m
    x264 OPTIONS -o OUTPUT.mkv TEMP.y4m & mplayer -vo yuv4mpeg:file=TEMP.y4m OPTIONS INPUT.VOB
    I believe this method to be clean and efficient.
    The problem is: This VOB file is in NTSC format, and I'm pretty convinced that it's telecined, after reading this:
    http://www.doom9.org/ivtc-tut.htm wrote:TELECINE is a process where the FILM first is slowed down to 23.976 frames/second. Then for every 4 frames, an extra frame is created from fields of adjacent frames. If a frame consists of two fields, top (t) and bottom (b) and the original sequence is 1t1b 2t2b 3t3b 4t4b, then the telecined sequence would be 1t1b 2t2b 2t3b 3t4b 4t4b (commonly called 2:3 pull down because of the alternating 2 field, 3 field progression). This also means that the frame rate increases to 29.97 frames/second.
    I viewed the video frame by frame, and found out that there're 2 sequential interlaced frames out of every 5 in a non-static scene. These are 2t3b 3t4b frames I think.
    mplayer comes with some video filters that might help: With "-vf pp=" the result isn't that satisfying, but "-vf pullup" do the job nicely, that is, I can almost see no interlacing at all with this command:
    mplayer -vf pullup VTS_01_1.VOB -noconfig all
    On the other hand, I also noticed that there're 2 sequential repeated frames out of every 5 in a non-static scene. The frame-rate is 29.970 fps. This is bad because repeating means inefficiency in terms of compression. The better result is using only one of these 2 repeated frames at a frame-rate of 23.976 fps, which means dropping 20% extra frames.
    But I don't know how to achieve this.
    I want to achieve this at the mplayer decoding stage, so that x264 is fed with a yuv4mpeg source stream with no interlacing or extra frames.
    ------------------------------------------------------------------------------------------+
    I'm not familiar with mencoder's options, though it seems to be able to drop the extra frame with "-vf pullup,softskip -ofs 24000/1001", but I can't find a way to let mencoder output as yuv4mpeg. Also there is a reason why I tend to avoid using mencoder:
    mencoder -ss 209 -endpos 20 -ovc copy -oac copy -o _short_.vob VTS_01_1.VOB
    This is supposed to cut a 20-second short clip from the VOB using copy. But even task as this simple could be wrong...which is really disappoiting. Look at these 2 screen shots.
    By using mencoder -ovc copy::
    http://omploader.org/vMjE3Zw
    The original (mplayer VTS_01_1.VOB)::
    http://omploader.org/vMjE3aA
    Maybe it's just my build of mencoder(compiled at home)... But with this I really can't say mencoder is to be trusted.
    ...Or, is it something wrong in my command?
    -------------------------------------------------------------------------------------------+
    By the way, for this specific DVD, I believe mplayer plus x264 together can achieve the best result; on the other hand, just as the title suggests, I'd like to find some decent tool to do IVTC and Deinterlacing. CLI preferred but good GUI apps are also welcome
    Thanks in advance!
    Last edited by lolilolicon (2009-07-25 03:31:59)

    skottish wrote:You should be able to use the -vf pullup,softskip stuff still.
    man mplayer wrote:Softskip
    Only  useful  with MEncoder.  Softskip moves the frame skipping (dropping) step of encoding from before the filter chain to some point during the filter chain.  This allows filters which need to see all frames (inverse  telecine,  temporal  denoising,  etc.)
    Actually, when I tried::
    mplayer -vf pullup,softskip VTS_01_1.VOB -noconfig all
    The result is the same as just using "-vf pullup". The extra frame can't be dropped by mplayer this way......
    Too bad many "convenient" tools like h264enc all use mencoder. I don't know whether handbrake does too. Haven't tried it out.
    Avisynth is a great tool but works only for windows. x264's built in deinterlaced mode does no good in my case. ffmpeg's filters are still too limited by far. What can I do? Is there anything that does nothing but good IVTC?
    -------------------------------------------------------------------------------------+
    Klepper wrote:It says to always use the softskip filter together with pullup
    man mplayer wrote:Always  follow  pullup  with the softskip filter when encoding to ensure that pullup is able to see each frame.
    In my case, pullup seems to work better than filmdint: I've just tried the h264enc script which is almost totally a frontend to mencoder. Look at the mencoder filters it used:
    mencoder VTS_01_1.VOB -o 01.avi -fps 30000/1001 -ofps 24000/1001 -vf filmdint=fast=0/io=30:24/dint_thres=256,softskip,harddup -oac pcm -ovc x264 -x264encopts <x264OPTIONS>
    See, it also used filmdint as you suggust. The result is not too bad: removed the extra frame and plays at 24fps. But I can still notice interlacing occasionally. Maybe it's because the video isn't constant pattern "PPPII" but with some shifting (say, PPPIIPPPII...PPPIIPIIPPPIIPPPII, I found some pattern like this in the source VOB)
    Man page says "io=<ifps>:<ofps>" must match "-fps/-ofps" ("-fps 30000/1001" and "-ofps 24000/1001" in my case.)
    Since -ofps is an option ONLY for mencoder, but not for mplayer, filmdint can't make mplayer drop the extra frame like mencoder.
    I played the VOB with "mplayer -vf filmdint=fast=0/io=30:24 VTS_01_1.VOB -noconfig all" and there're lots of "@@@@@@@@ Bottom-first field??? @@@@@@@@" spitted out in the console. I read about this in the man page but don't understand....
    If the source is MPEG-2, [u]this must be the first filter to allow access to the field-flags set by the MPEG-2 decoder[/u]. Depending on the source MPEG, you may be fine ignoring this advice, as long as you do not see lots of "Bottom-first field" warnings.
    I don't have any other filters in the command line, so... why?
    The occasional interlacing is the same as the video encoded with h264enc. Also, it did not drop the extra frame anyway.
    -------------------------------------------------------------------------------------+
    Also I have a doubt:
    In my first post, I wrote:
    The original (mplayer VTS_01_1.VOB)::
    http://omploader.org/vMjE3aA
    But I think even this is not "original" -- not as good as the original video before it was telecined into NTSC format. I think it's mplayer not doing it good enough. The real original frame should have no blocking......
    I've compared it to one fansub rip, the same frame looks better than in the image above, very little blocking, also the bass string isn't blurred like in the image above:
    http://omploader.org/vMjE5aw
    I don't know how they did it. And I actually want to do it better
    Last edited by lolilolicon (2009-07-25 09:32:30)

  • Best tool for cloning drive and regular back-ups

    A 500gb 7200.4 seagate drive just arrived, and I'm intending on cloning the 500gb 5400rpm stock drive in my 15" 2.8ghz unibody MBP to the 7200.4 (attached in a 2.5 SATA USB enclosure), and then using the 7200.4 as the main drive, once I've found time time to install it internally. Once I've done that, the 5400rpm stock drive will be used for regular back-ups via completely cloning the upgraded internal disk.
    I have CCC installed, but I've rarely used it, and I've noticed that the OS X disk services appears to have a 'create image' option. And then there's Time Machine, which I know very little about. The most important thing is that I need a bootable disk which, in theory, could simply be installed in a new machine and I'll be right where I left off. Which is the best back-up tool for this?

    Hi Neil,
    I have CCC installed, but I've rarely used it, and I've noticed that the OS X disk services appears to have a 'create image' option. And then there's Time Machine, which I know very little about. The most important thing is that I need a bootable disk which, in theory, could simply be installed in a new machine and I'll be right where I left off. Which is the best back-up tool for this?
    CCC is a very good tool for what you gave in mind. SuperDuper http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html is another one in the same league.
    Time Machine is a good backup tool, since it backups once the complete content of your OSX harddisk and further on only the changed files.
    It can also be used the restore the OSX but for this you have to boot from the OSX DVD.
    To me using CCC or SuperDuper would be exactly what you are looking for:
    Making a bootable clone onto your external HD, from which you can either boot-up your Mac or simply reinstall the external HD in your Mac.
    Regards
    Stefan

  • Best Export Settings for DVD burning and Computer viewing

    Hello,
    I am trying to export a 1 hour video that I need to be compatible with standard DVD players as well as viewable on any computer.
    Original footage was shot with a Canon 5d Mark ii in 24fps.
    I have done all of my editing in Premiere Pro CS6. From there, I exported a high quality file to bring into Media Encoder (for trials of best output). My master file from Premiere was exported with the Preset MPEG2. The only thing I changed in the preset was VBR from 1 pass to 2 pass.. This gave me a 6.2 GB file.
    I then brought that file into Media Encoder where I have tried the following presets:
    MPEG2-DVD - Match Source Attributes
    MPEG2-DVD - NTSC 23.976fps Widescreen High Quality
    MPEG2 - HDTV 720p 23.976 High Quality
    MPEG2 - NTSC DV High Quality
    These settings have encountered various issues.. some have significant banding, but most importantly, none of them will play on my DVD player when I burn them to a disc.
    The discs I am using are Sony DVD-RW with a 4.7GB capacity.
    Where am I going wrong here? From what I've read, the format needs to be MPEG2 to be viewed on DVD... Sorry if I sound ignorant! This stuff is tricky..

    First off, don't export your timeline and then take the result to AME to re-encode, this is compressing your video twice and degrading quality (not to mention takes extra time and hard drive space). Always export direct from Premiere to Media Encoder. If you must use an "intermediate" file as part of your workflow, perhaps to archive a completed video that might later be exported to other formats, then use a lossless codec such as UT or Lagarith (free downloads).
    For DVDs, you MUST use "MPEG-2 DVD". Other forms of MPEG-2 are not appropriate, as the official DVD specification requires that the MPEG-2 file has certain attributes. Not recommended to use "Match Source" for ANY export, just choose an appropriate setting as needed.
    This should be correct for your application - MPEG-2 DVD > NTSC 23.976fps Widescreen High Quality
    If you want to encode a DVD file over 1 hour in length, then you will need to adjust the encoding bitrate so the resulting file will fit the disc. Rule of thumb is 560/minutes = bitrate, but you might round down the result a bit to allow for menu overhead and such, depending.
    Once you export the "MPEG-2 DVD" file, you can NOT simply burn that file to DVD media. That is only creating a DATA disc and it will not be playable in a DVD player (though a computer or PS3/PS4 may work since they can play most media files). To make a DVD that works in all DVD players (and meets the spec), it MUST be "authored" in a program like Adobe Encore. This compiles your content and menus and all that and then writes the result to the disc in certain way so that DVD players can read the disc. If you open any DVD on your computer, you will see a folder called "VIDEO_TS" and inside that there are .vob files and others. That is a proper DVD. And once you have a proper DVD, you can't simply copy the VIDEO_TS to another disc (as DATA), you must tell the burning software to create as a "VIDEO DVD" and not DATA, or it again won't be readable in a DVD player. Very picky spec, sorry.
    When using AME to export MPEG-2 DVD, it will create two files, audio and video (.m2v and .wav), you will then Import both of those into Encore together. Note that you CAN import other formats into Encore, such as .avi but Encore will then transcode that to the correct MPEG-2 format anyway, so best that you take charge and create the right media in the first place in AME before you get to Encore.
    EDIT: In AME, any time that your source is higher resolution than the destination, such as HD to DVD, you can check the "Max Render Quality" button in AME to provide the best downscale quality.
    EDIT 2: I see you're using DVD-RW media. That is fine for experimenting, but for delivery to clients always use good quality DVD-R or DVD+R media. DVD-RW may not have the best compatibility with players and costs more anyways. DVDs are so cheap now that I just proof to DVD-R and toss the bad ones, up to you.
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • Is there any impact analysis tool for Oracle Forms and Reports

    Hi All
    We are curretly looking at tools available to do impact analysis in Oracle Forms and Reports. This is for the maintainance of a large Oracle application developed using forms and reports 10g. We use Oracle Designer but only to maintain the db structure and not for forms and reports generation. Our intension is to find out the impact of db model changes, stored procedure changes in Oracle Forms and Reports. Please suggest any tools that are currently used for this purpose.
    I remember manually maintaining the CRUD matrix for Oracle Forms and Reports for maintainance purpose. CRUD matrix will have the list of all the tables which are affected by the module. But this is a manual activity and hence the responsibility is with the dev team to keep the document updated. Please suggest if there is any alternative to this way which can be more effecient and less error prone...
    I also wonder how these are done in Oracle ERP? how the apps team in oracle is maintaining the forms and reports?
    Thnaks in Advance
    Mahesh Mathew

    Quest (the makers of TOAD) have a tool called SQL Impact which gathers data from forms, reports, triggers, packages etc.
    FormsMate is a simple, cheap alternative for comparing or searching in forms.
    http://www.jockvale.ca/products.html
    Alternatively, you can export forms to xml (with iff2xml90.bat) and reports to jsp (with rwconverter) and simply grep those and your sql scripts. There are grep tools for windows if you need.

  • Any CASE tools for Java, JSP, and JavaBeans?

    For Java, JSP, and JavaBeans can we find something that can help us automate certain tasks?
    For example, CASE tools is an acronym for Computer Aided Software Engineering tools. I have a colleague use software to generate robust code for the database layer and with a few clicks of a button after the database is designed he can generate code that would otherwise take an hour or even hours to write and debug and test.
    Thanks for your time and help in advance!
    Cecilia

    The ones I know are MVCase (from Brazil) and Jude (from Japan). Both are free and I haven't fully tested them yet. It may help you.

  • Tool for multiplex avi and wav files?

    Hi! I'm looking for a tool to multiplex avi and wav files? I use Tmpgenc for doing this with mpg files, but there is no support for avi files.
    Regards / Jimmy

    VirtualDub!
    Mylenium

  • Tooling for code analisis and monitoring

    I would like to know if there is a good tool for java code analisis and monitoring, and also JVM performance monitoring.
    Thanks,
    arturo

    I would suggest checking out VisualVM (https://visualvm.dev.java.net/). This integrates several tools that provide both >monitoring and profiling capabilities.
    It seams like most of the function work only on 6.0 !! Nice Tool to work

  • B1TCH (DIC tools ) for SQL 2008 and SAP b1 8,81

    Hi
    In the past , I used B1TCH tools for updating fileds in jurnal entry with SQL 2005 and also  B1 2007 verion.
    but now I cannot use it with SQL 2008
    is there any comment?
    Thanks

    Try: Get Your Kicks with DI Commander

  • Monitoring/ tuning tool for sql server and os environment

    What is a good tool for monitoring/tuning OS and SQL layers.

    OS and SQL are different things, and I am not sure what you mean under layers.
    To further expand my question, what OS build, what SQL Server edition?
    All these have enormous impact on strategy.
    Then the question is for what? OLTP need one tuning, DW another.
    Monitoring is also a question of budget, how much allowed to spend?
    Secondly, this forum is not dedicated to these kinds of questions.
    Arthur My Blog

  • Is there any monitoring tool for web server and application server ?

    experts,
    I just want to know that is there any monitoring utility which being used to monitor the web server activities like threads web console session tracking and so on..
    I am using Jboss as my application server.If you suggest any monitoring tool for Jboss It would be helpful for me,

    You may use jConsole

  • Virgo Tools for Eclipse Luna and Mars

    Hi all,
    I tried to install the Virgo Tools both in Eclipse Luna and in Mars (JEE packages), from this update site:
    "Virgo IDE Releases" - http://download.eclipse.org/virgo/release/tooling
    - Eclipse Virgo Tools 1.0.1.201302270038-RELEASE
    but I got errors (see below).
    Instead all il working well with Kepler.
    Some suggestions?
    Thank you very much.
    Vincenzo
    ================================================
    Cannot complete the install because of a conflicting dependency.
    Software being installed: Eclipse Virgo Tools 1.0.1.201302270038-RELEASE (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201302270038-RELEASE)
    Software currently installed: Eclipse IDE for Java EE Developers 4.5.0.20150621-1200 (epp.package.jee 4.5.0.20150621-1200)
    Only one of the following can be installed at once:
    OSGi System Bundle 3.8.1.v20120830-144521 (org.eclipse.osgi 3.8.1.v20120830-144521)
    OSGi System Bundle 3.10.100.v20150529-1857 (org.eclipse.osgi 3.10.100.v20150529-1857)
    Cannot satisfy dependency:
    From: Eclipse IDE for Java EE Developers 4.5.0.20150621-1200 (epp.package.jee 4.5.0.20150621-1200)
    To: org.eclipse.epp.package.jee.feature.feature.group
    Cannot satisfy dependency:
    From: EPP Java EE IDE Feature 4.5.0.20150621-1200 (org.eclipse.epp.package.jee.feature.feature.group 4.5.0.20150621-1200)
    To: org.eclipse.m2e.feature.feature.group 0.0.0
    Cannot satisfy dependency:
    From: Maven Integration for Eclipse 1.6.0.20150526-2032 (org.eclipse.m2e.core 1.6.0.20150526-2032)
    To: bundle org.eclipse.osgi 3.10.0
    Cannot satisfy dependency:
    From: m2e - Maven Integration for Eclipse (includes Incubating components) 1.6.0.20150526-2032 (org.eclipse.m2e.feature.feature.group 1.6.0.20150526-2032)
    To: org.eclipse.m2e.core
    Cannot satisfy dependency:
    From: Eclipse Virgo Tools 1.0.1.201302270038-RELEASE (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201302270038-RELEASE)
    To: org.eclipse.virgo.ide.manifest.core [1.0.1.201302270038-RELEASE]
    Cannot satisfy dependency:
    From: Eclipse Virgo IDE (Manifest Core) 1.0.1.201302270038-RELEASE (org.eclipse.virgo.ide.manifest.core 1.0.1.201302270038-RELEASE)
    To: bundle org.eclipse.virgo.kernel.artifact 0.0.0
    Cannot satisfy dependency:
    From: Virgo Kernel Artifact Integration 3.6.0.RELEASE (org.eclipse.virgo.kernel.artifact 3.6.0.RELEASE)
    To: package org.eclipse.virgo.nano.serviceability [3.6.0,3.7.0)
    Cannot satisfy dependency:
    From: Virgo Nano Core 3.6.0.RELEASE (org.eclipse.virgo.nano.core 3.6.0.RELEASE)
    To: package org.eclipse.osgi.internal.baseadaptor 0.0.0

    Sorry, I have to correct myself: today I retried with a brand new Mars/JEE+Java8 and a brand new workspace:
    the error is related to missing org.json bundle.
    Cannot complete the install because one or more required items could not be found.
    Software being installed: Eclipse Virgo Tools 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201506260038-SNAPSHOT)
    Missing requirement: Eclipse Virgo IDE (Server Core) 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.runtime.core 1.0.1.201506260038-SNAPSHOT) requires 'bundle org.json 0.0.0' but it could not be found
    Cannot satisfy dependency:
    From: Eclipse Virgo Tools 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201506260038-SNAPSHOT)
    To: org.eclipse.virgo.ide.runtime.core [1.0.1.201506260038-SNAPSHOT]
    seems like Mars/JEE doesn't contain org.json ... which is quite strange ...
    With Mars/JEE+Java7 instead the detailed error is:
    Cannot complete the install because one or more required items could not be found.
    Software being installed: Eclipse Virgo Tools 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201506260038-SNAPSHOT)
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.2.0.201206060754 (org.eclipse.libra.framework.editor.ui 0.2.0.201206060754) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.3.0.201212132137 (org.eclipse.libra.framework.editor.ui 0.3.0.201212132137) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.3.0.201305070844 (org.eclipse.libra.framework.editor.ui 0.3.0.201305070844) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.3.0.201305151323 (org.eclipse.libra.framework.editor.ui 0.3.0.201305151323) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.3.0.201305311343 (org.eclipse.libra.framework.editor.ui 0.3.0.201305311343) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Missing requirement: OSGi Framework Editor UI (Incubation) 0.3.1.201405141436 (org.eclipse.libra.framework.editor.ui 0.3.1.201405141436) requires 'bundle org.eclipse.zest.core [1.0.0,2.0.0)' but it could not be found
    Cannot satisfy dependency:
    From: Eclipse Virgo Tools 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.feature.feature.group 1.0.1.201506260038-SNAPSHOT)
    To: org.eclipse.virgo.ide.runtime.ui [1.0.1.201506260038-SNAPSHOT]
    Cannot satisfy dependency:
    From: Eclipse Virgo IDE (Server UI) 1.0.1.201506260038-SNAPSHOT (org.eclipse.virgo.ide.runtime.ui 1.0.1.201506260038-SNAPSHOT)
    To: bundle org.eclipse.libra.framework.editor.ui 0.0.0
    With Luna/JEE SR2 instead all is working well, both with Java7 and Java8
    Vincenzo

  • Need suggestion for a burner and set up....

    Hi
    Last week I downloaded latest addition of I-tunes and have imported some songs. I want to put on a basic CD for listening in car. My computer (windows XP Home) doesn't have a built in CD burner so I need to purchase an external CD burner.
    I just need the basics. Any suggestions? How does one hook this up to the computer and how will I know if it will work with I-tunes? Thanks much

    They can hook up via USB/Firewire. I would get it from here,
    http://www.tigerdirect.com/applications/category/category_slc.asp?CatId=478&Nav=
    Or here,
    http://www.amazon.com/s/ref=nbssgw/103-3031257-3011057?url=search-alias%3Daps&field-keywords=externalcdburner&Go.x=0&Go.y=0&Go=Go
    and they should work just fine with iTunes.

Maybe you are looking for