.mkv and ac3 formats supports

When we expect these formats supports

Just a follow-up:
I was indeed calculating the timecode / timestamp incorrectly.  MKV uses a technique called lacing to stitch frames together and save space.  While I was separating them and forwarding them correctly to the pipeline, the timecode in the header
for each laced block only applies to the first frame.  I needed to add the default duration time to each successive frame laced in the block.
While not specifying the timestamp using the SetSampleTime method caused smooth video, it was actually playing faster than the audio.  Each frame _needs_ a timestamp to sync correctly with the audio or other streams.
Lee McPherson

Similar Messages

  • Importing to iMovie and video formats supported

    I'm new to iMovie, and I'm still running '08, and I don't know what video formats are supported. I ripped a home video DVD using HandBrake and found out that iMovie 08 doesn't support .m4v. I tried saving it as a Quicktime Movie file with Quicktime Pro, but iMovie still wouldn't import. Can anyone tell what I can do because I really want to edit my video and burn it on more discs for the rest of my family. So, any help on what formats are supported and what I can do to import my video to iMovie is what I would like help with, please.Thanks for any help.
    Message was edited by: Warheart1188

    Check out the iMovie 08 discussion group. You will find a lot of knowledgeable people there.
    iMovie will import h.264 (m4v), but it will not import extra tracks such as closed caption tracks, tween tracks, chapter tracks, etc. Make sure handbrake is including these.
    You can go into QuickTime Pro and remove extra tracks.
    Sometimes, people have reported that simply renaming your m4v file as an .mov file will make it importable. Not sure if this will work in your case.

  • Mini and disks formats supported

    Hello Group.
    I have been using Fedora for over a year now and I am about to add a Mac to my line up.
    Question: Which file systems can macos read/write too?
    Can you point me to a good apple website or resource to read up on this?
    My fedora box as linx ext3 file system and I have a fat32 drive as well.
    I can get my fedora for example to read from the NFTS but it cannot write too it.
    I have all of my music and files sitting on Fedora box and it will be more than the minis 40/80.
    Thanks in advance.
    T

    This document details file systems that OS X supports on page 7.

  • I need help! when I am importing my NEF files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support"

    I need help! when I am importing my NEF Raw files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support". The whole purpose of that button is so that the file can be recognized... How can I make the "copy as DNG" button work as it is supposed too?? Thank you

    Thank you for responding. So I essentially will never be able to use that button in lightroom 5? do I need to get LR 6? Will there ever be an update for LR 5 that will enable me to use it?
    Does DNG Converter work within LR or do I have to upload pictures to my computer and then make a second copy in DNG format. and then go into LR and use them?
    Thank you @dj_paige

  • Dts and ac3 - incompatible format

    I have been given some pre-encoded dts and ac3 (5.1) files that were encoded on a windows audio encoding system. DVDSP gives me the "incompatible format" message and cannot import them. I suspect the data itself is fine, and there is problem with the file headers on the windows-created files.
    Anyone know of a way I can force the files to be readable to DVDSP from my mac, or any tips I can give the person doing the encoding on making the files compatible with DVDSP?
    the extension on the dts files is .dtshd
    I am able to open the ac3's with VLC, but not with any apple programs.
    Any help would be appreciated.

    One of the reasons for non-importing AC-3 file could be wrong parameters. Have you specified your requirements for AC-3 files (bit-rate, metadata, etc). Can you see the file parameters in VLC?
    DTS files used to come in two flavors, before HD-DVD and Blu-Ray were invented: padded dts file (.dts) and compact dts file (.cpt). The new HD formats pushed the envelope pretty high, and extension such as dtshd could signify exactly that: DTS-HD file which is not compatible with SD DVD specs.
    DVD SP can import only compact dts files with .cpt extension, and it is very finicky about parameters.
    For example earlier version of Minnetonka's DTS DVD encoder, copies of which can be found on the web, have a bug that prevents DVD SP from importing the files produced by it.
    You should contact the audio house and ask them about procedures and parameters used to create the problematic files

  • My lightroom 4 will not import my files from my compact flash card . It has been working for years with out fail but now there is no import previews and it says the files are not recognized by raw format support in LR

    I have lightroom 4 I've had it for years and it has imported my raw files from my CF card without issue . Now when I plug in my CF card to import new files it says import operations not performed and there are no image previews . When I continue by hitting "import" I get a pop up window that states "the files are not recognized by raw format support in Light Room"

    Don't feel too bad.  If the D4S has as many menus and custom functions as my Canon 5D Mark iii its easy to get messed up.
    If you downloaded from the link I gave you it will be Lr 5.4.   The link was just to show you when the D4S was supported.  The newest version is 5.7.1 and can be downloaded here.  Don't know your OS so you will have to pick Windows or Mac.   Product updates
    On my Mac I just run the downloaded installer program (its a full version and not an small update) and it installs the new version and erases the old version.  If you are on Windows you will have to get help from a windows person. 

  • Rest method that can support request/responce in both xml and json formats

    Hi,
    I want  to create rest method that can support request/responce in both xml and json formats.
    I am trying in bellow way, but its not working getting error.
    any idea on this?
    Code in IService.cs :
    [OperationContract]       
    [WebGet(UriTemplate = "/Login/{UserID}/{Password}")]
    Responce Login(string UserID, string Password);
    Code in Service.cs :
    public Responce Login(string UserID, string Password)
                try
                    objResponce = new Responce();
                    objResponce.MessageType = Responce.ResponceType.Warning.ToString();
                    string Con = GetConnectionString(UserID, Password);  //Method to check valid user or not
                    if (Con.Trim().Length != 0)            
                        objResponce.Message = "you have logged in Successfully";                   
                    else
                        objResponce.Message = "Please Enter Valid UserID,Password";                
                catch (Exception ex)
                    through ex;             
                return objResponce;
    My Config settings :
    <services>
          <service name="OnePointAPI.OnePointAPIService">
               <endpoint address="JSON" binding="webHttpBinding" contract="OnePointAPI.IOnePointAPIService" behaviorConfiguration="webJSON" ></endpoint>
               <endpoint address="XML" binding="basicHttpBinding" contract="OnePointAPI.IOnePointAPIService" behaviorConfiguration="webXML" ></endpoint>     
          </service>   
     </services>
     <behaviors>
          <serviceBehaviors>
            <behavior>
              <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
              <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
              <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
              <serviceDebug includeExceptionDetailInFaults="false"/>
            </behavior>
          </serviceBehaviors>
          <endpointBehaviors>
            <behavior name="webJSON">
              <webHttp defaultOutgoingResponseFormat="Json"/>
            </behavior>
            <behavior name="webXML">
              <webHttp defaultOutgoingResponseFormat="Xml" />
            </behavior>
          </endpointBehaviors>
     </behaviors>  
    Anwar Shaik

    In several days (in the 19th) i will lecture at
    SQLSaturday #360 and my last demo (hopefully I will have the time) is
    Full implementation of JSON, I will show several function using JSON serializer and deserializer, and as mentioned full implementation including fast
    indexes on JSON column (finding specific Node in 10 million rows
    in less then a second). If you want to wait, then I will publish it latter probably, or you can come the lecture if you want :-)
    * I am using Json.NET framework, by the way.
    regarding your question, all you need is to find a nice serializer/deserializer framework (you can use
    Json.NET framework) in order to do what you are looking for (if I understand what you asked)
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • E4200v2 Needs - - Added supports of 3TB Hard drive with NTFS and HFS+ format

    I see this was addressed in the E4200v1 firmware, but isn't currently supported with v2.
    Obviously this was something you deemed important once already, I don't understand why it wasn't automatically added into the features of V2.
    Also, would it be possible to add a usb hub to allow multiple hard drives? If not adding that feature would be very beneficial as well.

    Well, E4200 feature set is essentially the same as the E4200 v1. So it can recognize FAT32, NTFS, and HFS+ formats.
    Second, E4200 v2 does not support usb hub within the network. So you need to wait for the further release of the new firmware which may add the support for the USB hub.

  • WML format support, good QR reader ,skype and Tune...

    I just bought the new NOKIA Pureview 808. All is good but can I request that
    1. The browser to support wml format for me to access hotmail and skydrive. I know i can use the opera mobile but I don't like that
    2. Skype is available for Nokia 808
    3. Good QR reader is available in OVI store. The current QR readers in the store are suck.
    4. Tunein is available for Nokia 808. The internet radio is good but there are many channels that are available on Tunein not available on Nokia Internet radio

    Thanks Dan555 for the suggestion. I downloaded Opera Mobile but have had no luck with this either.
    I found this in my research for a solution. Correct me if I am wrong, but does this mean that even browser with wml support will not work on Symbian Belle?
    Nokia Browser 8.2 and WAP/WML support
    Background:
    Nokia Belle FP1 brings a new version of the Nokia Browser for Symbian, version 8.2. This browser release bring new HTML5 features but at the same time drops support for the legacy WAP 2.0 standard. For a full list of supported standards please see the Standards support matrix for Nokia mobile browsers in the recently updated Web Developer Library.
    Impact for affected applications:
    Mobile WAP sites as well as hybrid applications which are relying on WMLand WMLScript to be parsed via the Browser Control API, will no longer be rendered.
    Solution/Workaround:
    These sites and applications must migrate to using HTML.
    I found this here:
    http://www.developer.nokia.com/Community/Wiki/Changes_in_Nokia_Belle_and_Qt_4.x#Nokia_Browser_8.2_an...
    This link also may help:
    Standards support matrix for Nokia mobile browsers
    http://www.developer.nokia.com/Resources/Library/Web/#!nokia-browsers/common-elements-of-nokia-brows...
    Thanks in advance for any help with this.

  • I miss spoke quick time works but does not play certain videos and directs me  to media formats supported by quick time,but i can't access them.

      I am directed  The document “Video.MOV” could not be opened. The movie's file format isn't recognized
    QuickTime Movie (.mov)
    MPEG-4 (.mp4, .m4v)
    MPEG-2 (OS X Lion or later)
    MPEG-1
    3GPP
    3GPP2
    AVCHD (OS X Mountain Lion only)
    AVI
    DV
    MPEG-2 (OS X Lion or later)
    MPEG-4 (Part 2)
    H.264
    H.263
    H.261
    Apple ProRes
    Apple Pixlet
    Animation
    Cinepak
    Component Video
    DV
    DVC Pro 50
    Graphics
    Motion JPEG
    Photo JPEG
    Sorenson Video 2
    Sorenson Video 3
    Am so confused the above our media formats supported
    I have MacBook Pro with operating system X Mountain lion 10.8.2 is there another app that I can use? Thank you, Mary

    It could be you're not adding the files the right way. In more seldom cases:
    [Topic : MP3 Scan+Repair - an ID3 tag evaluator for the Mac|http://discussions.apple.com/thread.jspa?threadID=2020936]
    MP3 Scan+Repair (including sources): [http://triq.net/mac/mp3-validator-mac-os-x]

  • Does iTunes accept AC3 format?

    Will iTunes accept the import of an AC3 files?

    If you try it and it doesn't work then no. I think the answer is no anyway since AC3 is really a format that is seen as part of a DVD video, not a stand-alone audio format.  You'd think a simple, clear statement from Apple about audio files playable would be findable but all I can find are archived documents.  However, I doubt supported file formats has changed much pretty much since the first version of iTunes.
    iPod 101: Which Files Work With iPod and iTunes - http://support.apple.com/kb/TA38530 - article no longer updated
    iTunes: Compatible Audio File Types - http://support.apple.com/kb/TA44475 - article no longer updated

  • What is AC3 format

    we r going to develop a sound editor. our client is asking for ac3 file format support. they are also saying about optical output.
    so if anybody has idea about the ac3 what it is and how its player will be found then plz reply..
    thanx
    vipin

    Can't your browser find Google?
    http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=AC3+sound+format
    MOD

  • Converting from PDF directly to Java Objects/XML (and PDF format questions)

    Hi,
    I posted this originally in the Acrobat Windows forums but was told I might have more luck here, so here goes:
    I am desperately trying to find a tool (preferably open source but commercial is fine also) that will sit on top of a PDF and allow me to query it's text for content and formatting (I don't care about images). I have found some tools that get me part of the way there, but nothing that seems to provide an end-to-end solution but is quite lightweight. My main question is WHY are there so many tools that go from PDF to RTF, and many tools that go from RTF to XML, but NONE that I can find that go PDF to XML.
    To clarify, by formatting I simply mean whether a line/block of text is bold/italic, and its font size. I am not concerned with exact position on the page. The background is that I will be searching PDFs and assigning importance to whether text is a heading/bodytext etc. We already have a search tool in place so implementing a pure PDF search engine is not an option. I need a lightweight tool that simply allows me to either make calls directly to the PDF OR converts to XML which I can parse.
    Some tools I have tried:
    1) PDFBox (Java Library) - Allows the extraction of text content easily, but doesn't seem to have good support for formatting.
    2) JPedal (Java Library) - Allows extraction of text content easily, and supports formatting IF XML structured data is in the PDF (not the case for my data).
    3)  Nitro PDF (Tool) + RTF to XML (script) - This works quite nicely and shows that PDF to XML is possible, but why do I have to use 2 tools? Also, these are not libraries I can integrate into my app.
    4) iText (Java Library) - Seems great at creating PDFs but poor at extracting content.
    I don't really expect someone to give me a perfect solution (although that would be nice!).
    Instead, what I'd like to know is WHY tools support PDF to RTF/Word/whatever retaining formatting, and other tools support RTF to XML with the formatting information retained. What is it about PDF and RTF/Word that makes it feasible to convert that way, but not to XML. Also, as I found in 3) above, it is perfectly feasible to end up as XML from PDF, so why do no tools support this reliably!
    Many thanks for any advice from PDF gurus.

    XML doesn't mean anything - it's just a generic concept for structuring
    information.  You need a specific GRAMMAR of XML to mean anything.  So what
    grammar would you use?  Something standard?  Make up your own?
    However, there are a number of commercial and open source products that can
    convert PDF to various XML grammars - SVG, ABW, and various custom grammars.
    But the other thing you need to understand is that most PDF files do not
    have any structure associated with them (as you saw when using JPEDAL).  As
    such, any concepts of paragraphs/sections/tables/etc. Are WILD GUESSES by
    the software in question.

  • With Reports 10G can you customize you message and stop formatting?

    Oracle, states to come here for answer. they said, OTN should be able to help.
    If any one knows how this can be done can you please help me out?
    thanks,
    We were told this was fixed with 10G so we upgraded to 10G. We have a
    report and we want it to execute if it's less than 10 records if not we want a
    message to come up that the report needs to be scheduled.
    Well we run the report and it displays exceeded record count but the format
    still runs so no time saved on the web.
    If the record count was exceeded we want to HALT the system and not go any
    farther.
    Now if we could modify the system message 1825 we would be o.k. But we don't
    know if that is going to work. If we could change the message we would be
    o.k. with that. that would mean changing the system codes though.
    ### How is the Report being called (Command line, URL or via Oracle Forms): ###
    If false comes back in the beginning then we don't want any report formatting
    to be done. Right now the format is done it seems but no data is displayed
    because criteria isn't met.
    So we dont wnat the formatting to be run when criteria isn't met. But for
    some
    reason it still runs and takes time.
    See we have some reports on the web that can only be ran by date range right
    now the clients can only run the reports for a 6 months range.. Well some
    clients have a lot smaller record count. So we want to change the way the
    reports are ran to a records count. If the count is large than said amount
    then a message comes up that states the report has to be scheduled. If the
    amount is under said amount then the report runs.
    So at this time in the report we do a count then we move onto will the report
    run or not if over the amount we want to abort the process but we don't want
    the client to see the abort. We definately don't want the client to sit and
    wait for the format to run when NO Data is to be returned.
    ### Error messages and error scenario: ###
    So what we want is too see a message "Schedule the report count exceeded" and
    NO formatting done. If under amount we want the report to run.
    ### Provide a detailed step-by-step description of your problem or question: ###
    Or is there a way to customize the messages the client / users will see. And
    no formatting time for no records returned.
    Contact me via : E-mail -> [email protected]
    Text continued in next action...
    20-SEP-04 18:39:53 GMT
    Text continued from previous action...
    20-SEP-04 19:18:51 GMT
    New info : Is there a way if the error messages have to come up that we can
    hide the message or have another screen cover that error message something to
    cover the message so that the user doesn't see the error message.
    20-SEP-04 19:30:23 GMT
    Hi Darlene,
    Thank you for using MetaLink. Iam currently working on a very critical issue.I shall review/research your issue at the earliest opportunity and w
    ill update the SR / call you as soon as we have relevant information. Thank you
    for your patience.
    Best Regards,
    Seema,
    Oracle Support Services
    STATUS
    =======
    @WIP -- Work In Progress
    20-SEP-04 19:30:30 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 00:32:18 GMT
    Hi Darlene!
    If you are calling the report from a form, try using the EXIT_FORM line in your code.
    Thanks and Regards,
    Seema
    21-SEP-04 00:33:01 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 14:09:20 GMT
    New info : We will try it and let you know.
    21-SEP-04 14:19:04 GMT
    New info : We are not calling the report from a form so this won't work. Any
    other way. We are needing to do this badly.
    21-SEP-04 14:39:06 GMT
    New info : Can I get detailed steps about how to customize the system message
    or hide the message when we abort the report?
    21-SEP-04 15:38:39 GMT
    Hi Darlene!!
    As talked to you on phone, here are the steps for you to try.
    The below has been run as a test case using emp table in scott schema of a database
    1) create a summary coloumn say cs_1 in the data model.
    2) point the function to count.
    3) Point the source to what ever's count you want it to be pointed to(say empno of emp table of
    scott schema)
    4) create a user parameter say NO_ROWS
    5) in its property palette make its data type number and initial value as 1
    6) I had teh following query for my report:
    select empno, ename from emp
    where rownum <= :no_rows
    This means that the report that will be generated will consist of a total no of NO_ROWS(that we
    shall be specifying at run time). The before report trigger(mentioned in 7 below) shall assure
    that whenever we specify NO_ROWS greater than 5 then the report will display a customized pop up
    message.
    7) create a before report trigger as:
    function BeforeReport return boolean is
    user_excp EXCEPTION;
    begin
    if :cs_1 >5 then
    raise user_excp;
    return (false);
    else
    return true;
    end if;
    EXCEPTION
    WHEN user_excp then
    SRW.MESSAGE(30, 'Data is more please schedule this report:');
    raise SRW.PROGRAM_ABORT;
    return (false);
    end;
    This way when u run a report, an argument is asked whether how many rows do you want to be
    displayed as in the parameter NO_ROWS. then you specify the number. If that number is greater
    than 5(in this case, due to if :cs_1 > 5 then....) then it will pop up a message saying "Data is
    more please schedule this report:"
    In case you do not want to specify NO_ROWS..then you need not put that and modify the report
    query as "select empno, empname from emp;" i.e. without where clause.
    21-SEP-04 16:49:30 GMT
    New info : we will try this then update the TAR.
    21-SEP-04 16:58:09 GMT
    ok you update the tar when you try the above steps.
    STATUS:
    @CUS
    23-SEP-04 02:16:00 GMT
    New info : Information from the person that did this suggestion step by step.
    I tried this step by step, but unfortunately, it doesn't work the way we want.
    First with this suggestion, the user needs to choose how many records they
    want
    to get, or we default a number of records, in order to run the report. The most
    important thing is, whenever you specify the statement return false or raise
    SRW.PROGRAM_ABORT in the before report trigger, the system message will pop up.
    I really hope that people from Oracle would let us know how to customize the
    system message or hide it.
    23-SEP-04 14:23:04 GMT
    New info : I just thought that we have some sort of message, which I guess is
    from the database, when we do claim search on client inquiry. I am just
    wondering if we could try the same thing to the report.
    The some sort of message looks like this on dev box:
    Your search exceeded 5000 records and will surpass the capabilities of this
    connection. Please narrow the search criteria and resubmit.
    It's just a thought, not sure if it's going to work.
    When could we have the DBA Make this change. The servlet.properties???
    23-SEP-04 17:30:55 GMT
    REQUESTED INFORMATION PROVIDED
    ===============================
    Hi Darlene,
    Thank you for providing the requested information. I am currently reviewing/resea
    rching the situation and will update the TAR / call you as soon as I have additi
    onal information. Thank you for your patience.
    Best regards,
    Ajit
    STATUS
    =======
    @WIP -- Work In Progress
    23-SEP-04 18:04:31 GMT
    UPDATE
    =======
    Hi Darlene,
    We cannot modify the system messages nor do I think there is a method to hide the system message. The message that was coming is
    due to the raise srw.program_abort command, which is the element through which
    we can abort the program.
    Thanks
    Best Regards
    Ajit
    @CUS
    23-SEP-04 18:29:26 GMT
    New info : Can you please look into a way that we can get something to work?
    23-SEP-04 18:49:28 GMT
    Hi Darlene,
    I am sorry to say that but I don't think there is any any workaround to this because the system message is what is generated by the oracle reports i
    nternally. Still if you wish you may refer to the otn discussion forum which is
    maintained by teh product management group and post a new thread on it. the link
    to the forum is Reports
    Also since nothing can be done on our side I don't see any reason to keep this TAR open an
    d if you wish we can soft close this.
    Thanks
    Regards
    Ajit.
    New info : Shouldn't there always be a way to do something? I don't understand
    why we were told in 10G that this could be done and now we are told it can't.

    K T wrote:
    Yep - not nice...unless you do a TE 'Get Info' in the Finder and √ the 'Open in 32-bit mode' box and try again...then, all seems well in snow leopard land.
    Really? I figure since I have a Core Duo chip, everything always opens in 32-bit mode. In any case, I did file a bug report and will give your suggestion a try later today.

  • Using compressor DVD Studio Pro 4 will only accept ac3 format in the burn process. ac3 makes a nnsense of the good sound delivered, 30% reduction in volume, auto volume levelling giving unwanted volume variations. Used to be able to burn using AIFF/WAVE,

    AS Above. Edited in FCPX. Excellent sound file. Using Compressor 4 to DVD Studio 4. Wanting AIFF or WAVE sound for acurate sound.
    Previously DVD Studio 4 has accepted AIFF etc and delivered sound as reuired. Now, during the burn process everything other than ac3 is declined as 'video bit rate too high', but will burn if the AIFF format is replaced with ac3 (which I presume meanss the 'video bit rate too high' is referring to the sound file)
    The issue with ac3 format is the huge reduction in original volume and worse, the 'auto volume levelling' that makes a nonsense of the original soundtrack - with simply aweful unwanted variations in volume Throughout the  the dvd.
    I have tried everything I can think of to get around this. The 'volume gain' in compressor doesn't make any difference. Exporting just AIFF and the Video to DVD 4 doesn't make any difference, it always declines anything but the aweful sound ac3 delivers.
    I have customers awaiting a musci DVD, not with thei quality I can't.
    Cheers
    Phil

    The total video bit rate is determined by audio & video. Depending on what rate your video file was encoded at will determine how much room is left for audio. PCM(aiff/wav) audio requires a bigger piece of the pie. Video bit rate too high means your overall(video+audio) rate is going above 9Mbps which the format won't allow. The only way to use aiff would be to lower your video file's data rate. The length of your program is also a factor in all of this.
    I had some problems in the past with using aiff instead ac3. Although there shouldn't be any issue I experienced playback issues on some players that couldn't be explained but were cleared up by ac3.  I have been using the same specs as Dave's suggestion for almost nine years and have not had any issues with mix, quality, or levels.

Maybe you are looking for

  • Is there a way I can upload a website to my clients business catalyst account in muse?

    I have designed the site in muse and its all ready to go however when i go to publish the site it auto uploads to my BC account. Is there a way I can upload it to his BC account?

  • Trackpad / mouse click control degrades or corrupts within an hour or longer

    Basically, over an hour, sometimes longer - the click of the mouse / trackpad ceases to have any effect.  Using an external mouse, the left-click also has no effect.  Right-click on the external mouse / Ctrl-click on the trackpad generally continues

  • [SOLVED] Missing tiling option in KDE

    Hello to everyone! I installed arch on my new Dell Precision M4800 along with KDE desktop (kdebase package). Installation went very well and i get working KDE desktop. But if found that under System Settings > Window Behavior > Advanced  there is no

  • MySql driver not found in WEB-INF/lib

    Hello This topic is very often met on this forum but there are no suitable answers for the problem I have. I am creating a Jsf application and I have setup a connection pool using the MySql jar. I want to supply the jar with the war and I keep it in

  • What info Skype collects about our PC/laptop?

    What info Skype collects about our PC/laptop? I mean technical one. I'm especially interested if it gets the serial number of our laptop that we used for log in.  Solved! Go to Solution.