Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4500)

  • Analytics for ePortfolios, Mahara hui conference

    20 mars 2014, par Matthieu Aubry — Community, Meta

    I was privileged to present at the Mahara Hui conference in Wellington, New Zealand.

    Here are the slides of my presentation “Analytics for ePortfolios” :

    Summary : by using an analytics tool that integrates well with Mahara, such as Piwik, Mahara users can benefit from a multitude of insightful analytics reports.

    Learn more

    Mahara is a web application to build your electronic portfolio. You can create journals, upload files, embed social media resources from the web and collaborate with other users in groups. Mahara is a popular open source project built by a passionate community, and used in universities, schools and companies all over the world.

    Mahara Hui is the first kiwi conference on Mahara, the open source ePortfolio system, in New Zealand. This 2-day conference was held at Te Papa in Wellington from 19 to 20 March 2014 (schedule)

    Next steps

    I’m excited to join the Mahara team at the Mahara Hui Hackfest organised today at Catalyst IT offices. We will brainstorm how to integrate Piwik beautifully within Mahara, and how to ultimately provide students and employees useful analytics on all the content they create !

  • Linking ffmpeg's libswresample from MacOS X 10.9 with C++

    8 janvier 2014, par user2530102

    I am trying to link to ffmpeg's libswresample from a C++ application. I have installed ffmpeg through Homebrew on Mac OS X 10.9. A simple test application links if it's compiled as C, but not if it's compiled as C++. Here is the sample code :

    #include
    #include <libswresample></libswresample>swresample.h>

    int main()
    {
     swr_alloc();
     printf("Hello world\n");
     return 0;
    }

    When compiled as C with clang -I/usr/local/include -L/usr/local/lib -lswresample -o hello hello.c this creates the application as expected. When compiled with C++ using clang++ -I/usr/local/include -L/usr/local/lib -lswresample -o hello hello.cc it results in an error like the following :

    Undefined symbols for architecture x86_64:
     "swr_alloc()", referenced from:
         _main in hello-9jqOY4.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    But running nm -a /usr/local/lib/libswresample.dylib includes 000000000000d8a9 T _swr_alloc and file /usr/local/lib/libswresample.dylib shows /usr/local/lib/libswresample.dylib: Mach-O 64-bit dynamically linked shared library x86_64 which I assume is expected. I have the same issue compiling the example with gcc/g++, and I also have the same issue when compiling ffmpeg with either clang or gcc, which leads me to think that there is just something I don't know about linking that should be obvious, but I haven't found any references suggesting that it should be different linking a library in C++ vs. C, and linking other libraries (sox, for example) presents no difficulties with an identical setup.

    I have seen posts related to linking issues in Mac OS X 10.9 because of the change from libstdc++ to libc++, but adding -stdlib=libstdc++ or -stdlib=libc++ seems to make no difference. It also makes no difference to add -mmacosx-version-min=10.6 or 10.9.

    Any help is greatly appreciated.

  • Why can I not change the number of frames (nframes) in a gganimate animation ? SOLVED

    26 décembre 2022, par Gekin

    I have produced an animation per gganimate and rendered it per ffmpeg. It works just fine, but only, if I do not change the number of frames. If I do set the number of frames, I get this error message :

    &#xA;

    nframes and fps adjusted to match transition&#xA;Error parsing framerate 8,4.                           &#xA;Error: Rendering with ffmpeg failed&#xA;

    &#xA;

    I produced the gganim MonthlyAveragePrecipitationMap the following way :

    &#xA;

    options(scipen = 999, OutDec  =  ",")&#xA;&#xA;MonthlyAveragePrecipitationMap = ggplot(MonthlyAverageExtremePrecipitation) &#x2B; &#xA;  geom_path(data = map_data("world","Germany"),&#xA;            aes(x = long, y = lat, group = group)) &#x2B;&#xA;  coord_fixed(xlim = c(6,15),&#xA;              ylim = c(47,55)) &#x2B; &#xA;  geom_point(aes(x=lon, y=lat, &#xA;                 colour = ShareOfExtremePrecipitationEvents,&#xA;                 group = MonthOfYear),&#xA;             size = 3) &#x2B; &#xA;  scale_color_gradient(low="blue", high="yellow") &#x2B; &#xA;  xlab("Longitude (degree)") &#x2B;&#xA;  ylab("Latitude (degree)") &#x2B; &#xA;  theme_bw() &#x2B;&#xA;  transition_manual(frames = MonthOfYear) &#x2B; &#xA;  labs(title = &#x27;{unique(MonthlyAverageExtremePrecipitation$MonthOfYear)[as.integer(frame)]}&#x27;, &#xA;       color = paste0("Share of Extreme Precipitation Events \namong all Precipitation Events")) &#xA;

    &#xA;

    I call the animation the following way :

    &#xA;

    animate(MonthlyAveragePrecipitationMap,&#xA;        nframes = 300,&#xA;        renderer =&#xA;          ffmpeg_renderer(&#xA;            format = "auto",&#xA;            ffmpeg = NULL,&#xA;            options = list(pix_fmt = "yuv420p")))&#xA;&#xA;

    &#xA;

    I used this exact code just a few days ago and it worked fine.

    &#xA;

    Has someone had similar experiences ?&#xA;Thanks in advance.

    &#xA;

    EDIT : Problem solved.

    &#xA;

      &#xA;
    • Problem : Changing the decimal seperator from . to , per options(dec=",")
    • &#xA;

    • Solution : Changing the decimal seperator locally within the axis scaling per function.
    • &#xA;

    &#xA;