Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (85)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11110)

  • Matomo maker InnoCraft named 2023 Hi-Tech Awards finalist

    20 avril 2023, par Erin — Press Releases

    WELLINGTON, N.Z., April 20, 2023 – InnoCraft, the makers of world-leading open-source web analytics platform Matomo, has been named an ASX Hi-Tech Emerging Company of the Year finalist in the 2023 Hi-Tech Awards. 



    Matomo founder Matthieu Aubry says, “At Matomo, we believe in empowering individuals and organizations to make informed decisions about their digital presence. By providing an open-source website analytics platform, we have created a more transparent and trustworthy digital ecosystem. We are proud to be recognised as a finalist for the Hi-Tech Awards, and we will continue to work towards a more open and ethical digital landscape, and grow the business in New Zealand and worldwide.”



    About Matomo

    Matomo, launched in 2007 as an open-source, privacy-friendly Google Analytics alternative, is trusted by over 1.5 million websites in 220 countries and has been translated in over 50 languages. Matomo tracks and analyses online visits and traffic to give users a deeper understanding of their website visitors to drive conversions and revenue ; while keeping businesses compliant with privacy laws worldwide, such as the EU’s General Data Protection Regulation (GDPR) and The California Consumer Privacy Act (CCPA).

    Aubry says Matomo is performing extremely well internationally as consumers and organizations look for privacy-focused analytics solutions, with several European countries already ruling the use of Google Analytics illegal due to data transfers to the US. In addition, Matomo’s user increase was recognized earlier this year with W3Tech’s award for the best web analytics software in its Web Technologies of the Year 2022 – with previous winners including Google Analytics and Facebook Pixel.



    A record number of companies entered the 2023 Hi-Tech Awards, with entries coming in from across the country and from all areas of the Hi-Tech sector. This depth is reflected in the line-up of finalists this year, according to David Downs, Chair of the Hi-Tech Trust, who says the standard of entries continue to grow every year.

”

    The hi-tech sector continues to flourish and it’s fantastic to see the success that so many of our companies enjoy on the international stage. This sector continues to prove its resilience and is at the forefront of our export economy in turbulent times,” says Downs.



    The Hi-Tech Awards Gala Dinner will take place on Friday, the 23rd of June, in Christchurch. 


     

    &lt;script type=&quot;text/javascript&quot;&gt;<br />
    console.log('script started!!!!');<br />
       var _paq = _paq || [];<br />
       _paq.push(['AbTesting::create', {<br />
           name: 'LanceTesting', // you can also use '18' (ID of the experiment) to hide the name<br />
           percentage: 100,<br />
           includedTargets: [{&quot;attribute&quot;:&quot;url&quot;,&quot;inverted&quot;:&quot;0&quot;,&quot;type&quot;:&quot;equals_simple&quot;,&quot;value&quot;:&quot;https:\/\/matomo.org\/blog\/2023\/01\/matomo-privacy-friendly-web-analytics-software-named-best-of-the-year-2022\/&quot;}],<br />
           excludedTargets: [],<br />
           variations: [<br />
               {<br />
                   name: 'original',<br />
                   activate: function (event) {<br />
                       // usually nothing needs to be done here<br />
                       console.log('group1');<br />
                   }<br />
               },<br />
               {<br />
                   name: 'Variation1', // you can also use '45' (ID of the variation) to hide the name<br />
                   percentage: 90,<br />
                   activate: function(event) {<br />
                       console.log('group2');<br />
                       event.redirect('https://matomo.org/blog/2023/08/matomo-named-2023-hi-tech-awards-finalist/');<br />
                   }<br />
               }            <br />
           ],<br />
           trigger: function () {<br />
               return true; // here you can further customize which of your visitors will participate in this experiment<br />
           }<br />
       }]);<br />
    &lt;/script&gt;
  • How to use original names when using find -exec ?

    27 mai 2023, par ironsand

    There are .mp4 files I want to convert.

    &#xA;&#xA;

    $ find . -name &#x27;*.mp4&#x27;&#xA;./01.mp4&#xA;./02.mp4&#xA;./03.mp4&#xA;

    &#xA;&#xA;

    I expected to output files copy-01.mp4, copy-02.mp4 and copy-03.mp4 with this command.

    &#xA;&#xA;

    find . -name &#x27;*.mp4&#x27; -exec ffmpeg -i {} -c copy -aspect 16:9 copy-{} ";"&#xA;

    &#xA;&#xA;

    But it failed with errors Unable to find a suitable output format for &#x27;copy-&#x27;.&#xA;I thought {} represents the file name, isn't it ?

    &#xA;&#xA;

    How can I use original file names when using -exec option of find ?

    &#xA;&#xA;

    The find version is :

    &#xA;&#xA;

    $ find --version&#xA;find (GNU findutils) 4.4.2&#xA;Copyright (C) 2007 Free Software Foundation, Inc.&#xA;License GPLv3&#x2B;: GNU GPL version 3 or later /gnu.org/licenses/gpl.html>&#xA;This is free software: you are free to change and redistribute it.&#xA;There is NO WARRANTY, to the extent permitted by law.&#xA;&#xA;Written by Eric B. Decker, James Youngman, and Kevin Dalley.&#xA;Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b&#xA;Features enabled: O_NOFOLLOW(disabled) LEAF_OPTIMISATION FTS() CBO(level=0)&#xA;

    &#xA;&#xA;

    This is xargs version.

    &#xA;&#xA;

    xargs --version&#xA;xargs (GNU findutils) 4.4.2&#xA;Copyright (C) 2007 Free Software Foundation, Inc.&#xA;License GPLv3&#x2B;: GNU GPL version 3 or later /gnu.org/licenses/gpl.html>&#xA;This is free software: you are free to change and redistribute it.&#xA;There is NO WARRANTY, to the extent permitted by law.&#xA;&#xA;Written by Eric B. Decker, James Youngman, and Kevin Dalley.&#xA;Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b&#xA;

    &#xA;&#xA;

    Result of ffmpeg

    &#xA;&#xA;

    $ find * -type f -name &#x27;*.mp4&#x27; -exec ffmpeg -i {} -c copy -aspect 16:9 copy-{} ";"&#xA;&#xA;# almost same outputs several times here.&#xA;&#xA;ffmpeg version N-50911-g9efcfbe Copyright (c) 2000-2013 the FFmpeg developers&#xA;  built on Mar 13 2013 21:26:48 with gcc 4.7.2 (GCC)&#xA;  configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib&#xA;  libavutil      52. 19.100 / 52. 19.100&#xA;  libavcodec     55.  0.100 / 55.  0.100&#xA;  libavformat    55.  0.100 / 55.  0.100&#xA;  libavdevice    54.  4.100 / 54.  4.100&#xA;  libavfilter     3. 45.103 /  3. 45.103&#xA;  libswscale      2.  2.100 /  2.  2.100&#xA;  libswresample   0. 17.102 /  0. 17.102&#xA;  libpostproc    52.  2.100 / 52.  2.100&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;24.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : mp42&#xA;    minor_version   : 0&#xA;    compatible_brands: mp42isomavc1&#xA;    creation_time   : 2012-11-01 13:42:12&#xA;    encoder         : HandBrake 0.9.8 2012071700&#xA;  Duration: 00:24:58.62, start: 0.000000, bitrate: 474 kb/s&#xA;    Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x256, 341 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 180k tbc&#xA;    Metadata:&#xA;      creation_time   : 2012-11-01 13:42:12&#xA;    Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s&#xA;    Metadata:&#xA;      creation_time   : 2012-11-01 13:42:12&#xA;

    &#xA;

  • Subtitles come too early in ts file [closed]

    6 octobre 2023, par kallelo

    I have recorded a movie with my SAT-recorder on harddisk. The movie is in french and has subtitles in several languages. I cutted the ts-file and removed all subtitles except german wit tsdoctor. Sometimes later I noticed that the subtitles come about four seconds too early. Unfortunately I had deleted the original file until then.

    &#xA;

    ffprobe shows the following output :

    &#xA;

    ffprobe version 6.0-essentials_build-www.gyan.dev Copyright (c) 2007-2023 the FFmpeg developers&#xA;  built with gcc 12.2.0 (Rev10, Built by MSYS2 project)&#xA;...&#xA;Input #0, mpegts, from &#x27;inputfile.ts&#x27;:&#xA;  Duration: 01:35:06.88, start: 54851.766678, bitrate: 3407 kb/s&#xA;  Program 6915&#xA;  Stream #0:0[0x267]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p(tv, top first), 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn&#xA;    Side data:&#xA;      cpb: bitrate max/min/avg: 15000000/0/0 buffer size: 1835008 vbv_delay: N/A&#xA;  Stream #0:1[0x27b](fra): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, fltp, 192 kb/s&#xA;  Stream #0:2[0x3a9](deu): Subtitle: dvb_subtitle ([6][0][0][0] / 0x0006)&#xA;

    &#xA;

    I can imagine that this problem could be solved with ffmpeg, but don't know how and I didn't found anything that would help me.

    &#xA;