Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (84)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (10768)

  • Piwik Analytics becomes Matomo to reflect Users’ Privacy Focus

    10 janvier 2018, par Matomo Core Team

    One of the world’s leading analytics software platforms is changing its name. Piwik is the sixth most-used web and mobile analytics computer solution worldwide. It is now changing its name to Matomo.

    The name change comes after 10 years of Piwik building its top analytics software, with great success. It is already used on over one million websites in more than 170 countries. Matomo will build on that success, and focus even more on privacy.

    ‘Privacy has become a huge concern worldwide’, says Matomo’s creator, Matthieu Aubry. ‘Privacy legislation is being developed in Europe, and we will be ahead of the game in being ready for those changes. We’ll grow in line with the law and regulation changes.’

    Matomo will lead the way in openness and transparency for its users. Its new name means honesty in Japanese.
    ‘Matomo will always be free and community-driven, just as Piwik was’, says Matthieu Aubry. ‘We have worked with hundreds of people to create the best open digital analytics solution in the world. We’re committed to giving every user full control of their data.’

    The change of name is appropriate as the Matomo platform moves into a new stage of growth. But for its community, little will obviously change. The same people will still be involved, and users will still get useful data to improve their own website. That data includes who visits their site, what they do there, how long they stay, and what they buy.
    Matomo is an all-in-one analytics solution that gives companies a 360 degree view of their users.

    ‘They can grow their business while still keeping 100% ownership of their data, and being fully compliant with privacy laws’, says Matthieu Aubry. ‘We’re more motivated than ever to building on that, so that Matomo stays ahead of the pack.’

    The platform can be fully customised with hundreds of plug-ins, integrations and configurations.

    Matomo’s updated website and new logo is now available on https://matomo.org.
    For further information, please contact the Matomo Team on hello@matomo.org

    The post Piwik Analytics becomes Matomo to reflect Users’ Privacy Focus appeared first on Analytics Platform - Matomo.

  • Slient crash when calls to ffmpeg's libav exist

    9 juin 2021, par William Lohan

    I have a fairly simple example.

    


    #include <iostream>&#xA;&#xA;extern "C"&#xA;{&#xA;#include <libavutil></libavutil>opt.h>&#xA;#include <libavutil></libavutil>avutil.h>&#xA;#include <libavcodec></libavcodec>avcodec.h>&#xA;#include <libavformat></libavformat>avformat.h>&#xA;}&#xA;&#xA;int main(int, char **)&#xA;{&#xA;  AVFormatContext *format = 0; // avformat_alloc_context();&#xA;&#xA;  // avformat_open_input(&amp;format, "http://s5radio.ponyvillelive.com:8026/stream.mp3", NULL, NULL);&#xA;  // avformat_find_stream_info(format, NULL);&#xA;&#xA;  std::cout &lt;&lt; "Hello, world!" &lt;&lt; std::endl;&#xA;&#xA;  return 0;&#xA;}&#xA;</iostream>

    &#xA;

    I this outputs "Hello, world !" and I can set break points but the moment I uncomment anything calling avformat code the program silently closes with no error and no break points are hit making it impossible to debug.

    &#xA;

    An example would be changing AVFormatContext *format = 0; to AVFormatContext *format = avformat_alloc_context(); or uncommenting avformat_open_input(&amp;format, "http://s5radio.ponyvillelive.com:8026/stream.mp3", NULL, NULL);. Without breakpoints or errors how do I solve ?

    &#xA;

    Update :&#xA;This is what I get from the debugger :

    &#xA;

    &#xA;

    ERROR : Unable to start debugging. Unexpected GDB output from command "-exec-run". During startup program exited with code 0xc0000139.&#xA;The program 'path\to\my\project\LibavPlayground.exe' has exited with code 0 (0x00000000).

    &#xA;

    &#xA;

    Update2 :

    &#xA;

    this is my cmake :

    &#xA;

    cmake_minimum_required(VERSION 3.0.0)&#xA;project(LibavPlayground VERSION 0.1.0 LANGUAGES CXX C)&#xA;&#xA;find_package(PkgConfig REQUIRED) &#xA;pkg_check_modules(LIBAV REQUIRED libavutil libavcodec libavformat)&#xA;include_directories(${LIBAV_INCLUDE_DIRS})&#xA;set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__STDC_CONSTANT_MACROS -Wno-deprecated-declarations")&#xA;&#xA;include_directories(include PUBLIC)&#xA;include_directories(src PRIVATE)&#xA;&#xA;file(GLOB SRC_FILES ${PROJECT_SOURCE_DIR}/src/*.cpp)&#xA;&#xA;add_executable(LibavPlayground ${SRC_FILES})&#xA;target_link_libraries(LibavPlayground ${LIBAV_LIBRARIES})&#xA;

    &#xA;

    and all the libav* libraries were installed with a single pacman -S mingw-w64-x86_64-ffmpeg command

    &#xA;

  • How to add watermark text scrollable using ffmpeg vertically from right top to bottom

    22 juillet 2015, par Jeetendra

    Am using ffmpeg to transcode the video with text watermark. Below is my command that I am using but it scrolls the text bottom left to right.

    ffmpeg -i /usr/home/test.mp4 -vf "drawbox=x=iw-42:y=0:w=42:h=ih:color=black@0.5:t=80,drawtext=fontfile=/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16: y=(mod(2*n\,h+th)-th):x=w-tw-10" -codec:v libx264 -codec:a copy -strict -2 /usr/home/out.mp4

    But I want vertical scrolling top to bottom.

    Can anyone help in this.

    Thanks in advance.