[Paraview] OGG support in Paraview 3.98 rc3

2012-12-01 Thread Anton Gladky
Hello all, is it possible to enable OGG-support in the newest version of Paraview? There is a PARAVIEW_ENABLE_FFMPEG option for AVI-files, but I cannot find something similar for OGG-Theora. Thanks, Anton ___ Powered by www.kitware.com Visit other Kit

Re: [Paraview] OGG support in Paraview 3.98 rc3

2012-12-18 Thread Utkarsh Ayachit
I believe OGG-support is automatically enabled when possible. Look into your CMakeCache.txt file. You should see various stubs referring to vtkoggtheora. Utkarsh On Sat, Dec 1, 2012 at 2:58 PM, Anton Gladky wrote: > Hello all, > > is it possible to enable OGG-support in the newest version of Par

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-01-05 Thread Anton Gladky
Hi Utkarsh, thanks for advice. It seems, vtkoggtheora is not enabled: cat CMakeCache.txt | grep vtkoggtheora //ADVANCED property for variable: Module_vtkoggtheora Module_vtkoggtheora-ADVANCED:INTERNAL=1 //Request building vtkoggtheora Module_vtkoggtheora:INTERNAL=OFF ===

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-13 Thread Anton Gladky
Hi Utkarsh, there is a still problems with animation output with the latest git-version. Available "video"-formats are: JPG, TIFF and PNG. The CMakeCache.txt file is attached. The help is appreciated. Thanks, Anton 2013/1/5 Anton Gladky > Hi Utkarsh, > > thanks for advice. It seems, vtkoggt

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-22 Thread Utkarsh Ayachit
Anton, The bug was when using system OGGTHEORA support. I've a fix that should go into master after the next gatekeeper review. http://review.source.kitware.com/#/t/2801 Thanks for catching this. Utkarsh On Mon, May 13, 2013 at 8:52 AM, Anton Gladky wrote: > Hi Utkarsh, > > there is a still

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Anton Gladky
Hi Utkarsh, thanks for fixing that! But there are some problems with missing path: --- ParaViewCore/ServerManager/Default/vtkSMAnimationSceneImageWriter.cxx:49:32: fatal error: vtkFFMPEGWriter.h: No such file or directory --- Also, it seems, VTK/IO/FFMPEG/vtkFFMPEGWriter.cxx nee

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Utkarsh Ayachit
Anton, > --- > ParaViewCore/ServerManager/Default/vtkSMAnimationSceneImageWriter.cxx:49:32: > fatal error: vtkFFMPEGWriter.h: No such file or directory > --- Doh! This should be fixed not as well. > Also, it seems, VTK/IO/FFMPEG/vtkFFMPEGWriter.cxx needs som fixing. For > examp

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Anton Gladky
2013/5/23 Utkarsh Ayachit : > Anton, > >> --- >> ParaViewCore/ServerManager/Default/vtkSMAnimationSceneImageWriter.cxx:49:32: >> fatal error: vtkFFMPEGWriter.h: No such file or directory >> --- > > Doh! This should be fixed not as well. > > >> Also, it seems, VTK/IO/FFMPEG/vtkFFMPEG

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Utkarsh Ayachit
I meant to say "This should be fixed *now* as well". I've pushed a fix to the same gerrit topic (http://review.source.kitware.com/#/c/11387/) Thanks for your help. Utkarsh On Thu, May 23, 2013 at 10:22 AM, Anton Gladky wrote: > 2013/5/23 Utkarsh Ayachit : >> Anton, >> >>> --- >>> ParaVie

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Anton Gladky
The fix for libav9 is very simple: --- a/VTK/IO/FFMPEG/vtkFFMPEGWriter.cxx +++ b/VTK/IO/FFMPEG/vtkFFMPEGWriter.cxx @@ -153,7 +153,7 @@ strcpy(this->avFormatContext->filename, this->Writer->GetFileName()); //create a stream for that file - this->avStream = av_new_stream(this->avFormatContex

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-23 Thread Utkarsh Ayachit
Anton, You'll need to ensure the writer continues to work with older versions, however. You may need to enclose those in #if.#endif blocks Utkarsh On Thu, May 23, 2013 at 3:32 PM, Anton Gladky wrote: > The fix for libav9 is very simple: > > --- a/VTK/IO/FFMPEG/vtkFFMPEGWriter.cxx > +++ b/VTK/IO

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-24 Thread Anton Gladky
Hi Utkarsh, please, have a look at attached patch, Thanks, Amtpm 2013/5/23 Utkarsh Ayachit : > Anton, > > You'll need to ensure the writer continues to work with older > versions, however. You may need to enclose those in #if.#endif blocks > > Utkarsh fix_FFMPEG.diff Description: Binary data

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-27 Thread Anton Gladky
Hi Utkarsh, FFMPEG works OK, but there are some difficulties with ogv-format: ERROR: In /tmp/buildd/paraview-4.0.0~rc1/ParaViewCore/ServerManager/Default/vtkSMAnimationSceneImageWriter.cxx, line 374 pqAnimationSceneImageWriter (0x76db3c0): Unknown extension .ogv Does it mean, that VTK

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-27 Thread Anton Gladky
Sorry for spamming. Attached patch should fix the both libav 54 (there was a typo in a previous commit) and OGG-theora extension issues. Cheers, Anton 2013/5/23 Utkarsh Ayachit : > Anton, > > You'll need to ensure the writer continues to work with older > versions, however. You may need to encl

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-28 Thread Utkarsh Ayachit
Anton, I am not sure I follow your changes to vtkSMAnimationSceneImageWriter.cxx. VTK_HAS_OGGTHEORA_SUPPORT is defined in vtkIOMovieConfigure.h is vtkIOMovie module was built with OGGTheora support. The changes may have gone in after RC1, so maybe you have older source files? Utkarsh On Mon, May

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-28 Thread Anton Gladky
I used RC1. Anton 2013/5/28 Utkarsh Ayachit > Anton, > > I am not sure I follow your changes to > vtkSMAnimationSceneImageWriter.cxx. VTK_HAS_OGGTHEORA_SUPPORT is > defined in vtkIOMovieConfigure.h is vtkIOMovie module was built with > OGGTheora support. The changes may have gone in after RC1,

Re: [Paraview] OGG support in Paraview 3.98 rc3

2013-05-28 Thread Utkarsh Ayachit
Got it. Yup, in that case, I don't think the ParaView changes are needed anymore. On Tue, May 28, 2013 at 11:24 AM, Anton Gladky wrote: > I used RC1. > > Anton > > > 2013/5/28 Utkarsh Ayachit >> >> Anton, >> >> I am not sure I follow your changes to >> vtkSMAnimationSceneImageWriter.cxx. VTK_HAS