Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • 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 (12400)

  • 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;
  • Burning subtitles into video using ffmpeg overlay on react native

    25 avril 2023, par Youssef

    I have managed to complete this task on node server but it's too slow I don't want to upgrade my instance so I decided to do the conversion on the front end, my app is on react native can please somebody help me convert the code and keep the same args and options

    &#xA;

    Server code

    &#xA;

    // Execute the ffmpeg command to burn the subtitles into the video&#xA;const ffmpeg = spawn("ffmpeg", [&#xA;  "-i",&#xA;  "pipe:0",&#xA;  "-vf",&#xA;  `subtitles=${subtitlePath}:force_style=&#x27;Alignment=10,OutlineColour=&amp;H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=10&#x27;`,&#xA;  "-c:a",&#xA;  "copy",&#xA;  "-progress", "pipe:1",&#xA;  outputPath,&#xA;]);&#xA;&#xA;// Pipe the videoResponse array buffer to FFmpeg&#xA;ffmpeg.stdin.write(videoResponse.data);&#xA;ffmpeg.stdin.end();&#xA;&#xA;// Send the output file as a response once the process is complete&#xA;ffmpeg.on("close", () => {&#xA;  fs.readFile(outputPath, (err, data) => {&#xA;    if (err) {&#xA;      console.error(err);&#xA;    } else {&#xA;      console.log(outputPath)&#xA;    }&#xA;  });&#xA;});&#xA;

    &#xA;

    My try on react native but failed for several issues including, main ones are :

    &#xA;

    &#xA;

    No such filter : 'subtitles' Failed to inject frame into filter

    &#xA;

    &#xA;

    &#xA;

    Invalid argument

    &#xA;

    &#xA;

    &#xA;

    Error initializing complex filters.

    &#xA;

    &#xA;

    This is what I come up with so far

    &#xA;

      componentDidMount() {&#xA;    FFmpegKit.executeAsync(`-i ${inputFilePath} -i ${subtitleFilePath} -filter_complex "[0:v][1:s]overlay=10:main_h-overlay_h-10" -c:a copy ${outputFilePath}`)&#xA;    .then((session) => {&#xA;      FFmpegKit.cancel();&#xA;  &#xA;      const returnCode = session.getReturnCode();&#xA;  &#xA;      if (ReturnCode.isSuccess(returnCode)) {&#xA;        console.log(&#x27;Video with subtitles was created successfully!&#x27;);&#xA;      } else {&#xA;        console.log(&#x27;Error creating video with subtitles&#x27;);&#xA;      }&#xA;    })&#xA;    .catch((error) => {&#xA;      console.log(&#x27;Error creating video with subtitles&#x27;, error);&#xA;    });&#xA;  }&#xA;

    &#xA;

    If you want to see the logs you can find them below

    &#xA;

     LOG  init firebase : videocap-71b4a&#xA; LOG  Running "videocap" with {"rootTag":11,"initialProps":{}}&#xA; LOG  Loading ffmpeg-kit-react-native.&#xA; LOG  Loaded ffmpeg-kit-react-native-ios-https-x86_64-5.1.0.&#xA; LOG  Error creating video with subtitles [TypeError: undefined is not a function]&#xA; LOG  ffmpeg version n5.1.2&#xA; LOG   Copyright (c) 2000-2022 the FFmpeg developers&#xA; LOG  &#xA; LOG    built with Apple clang version 14.0.0 (clang-1400.0.29.102)&#xA; LOG    configuration: --cross-prefix=x86_64-ios-darwin- --sysroot=/Applications/Xcode-v13.4.1.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.0.sdk --prefix=/Users/taner/Projects/ffmpeg-kit/prebuilt/apple-ios-x86_64/ffmpeg --pkg-config=/opt/homebrew/bin/pkg-config --enable-version3 --arch=x86_64 --cpu=x86_64 --target-os=darwin --disable-neon --disable-asm --ar=/Applications/Xcode-v13.4.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar --cc=clang --cxx=clang&#x2B;&#x2B; --as=&#x27;clang -arch x86_64 -target x86_64-apple-ios12.1-simulator -march=x86-64 -msse4.2 -mpopcnt -m64 -DFFMPEG_KIT_X86_64 -Wno-unused-function -Wno-deprecated-declarations -fstrict-aliasing -DIOS -DFFMPEG_KIT_BUILD_DATE=20220929 -isysroot /Applications/Xcode-v13.4.1.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.0.sdk -O2 -mios-simulator-version-min=12.1 -I/Applications/Xcode-v13.4.1.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.0.sdk/usr/include&#x27; --ranlib=/Applications/Xcode-v13.4.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib --strip=/Applications/Xcode-v13.4.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip --nm=/Applications/Xcode-v13.4.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm --extra-ldflags=&#x27;-mios-simulator-version-min=12.1&#x27; --disable-autodetect --enable-cross-compile --enable-pic --enable-inline-asm --enable-optimizations --enable-swscale --enable-shared --disable-static --install-name-dir=&#x27;@rpath&#x27; --enable-pthreads --disable-v4l2-m2m --disable-outdev=v4l2 --disable-outdev=fbdev --disable-indev=v4l2 --disable-indev=fbdev --enable-small --disable-xmm-clobber-test --disable-debug --disable-neon-clobber-test --disable-programs --disable-postproc --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-sndio --disable-schannel --disable-securetransport --disable-xlib --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --disable-alsa --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --enable-gmp --enable-gnutls --disable-sdl2 --disable-openssl --enable-zlib --enable-audiotoolbox --disable-outdev=audiotoolbox --enable-bzlib --enable-videotoolbox --enable-avfoundation --enable-iconv --disable-coreimage --disable-appkit --disable-opencl --disable-opengl&#xA; LOG    libavutil      57. 28.100 / 57. 28.100&#xA; LOG    libavcodec     59. 37.100 / 59. 37.100&#xA; LOG    libavformat    59. 27.100 / 59. 27.100&#xA; LOG    libavdevice    59.  7.100 / 59.  7.100&#xA; LOG    libavfilter     8. 44.100 /  8. 44.100&#xA; LOG    libswscale      6.  7.100 /  6.  7.100&#xA; LOG    libswresample   4.  7.100 /  4.  7.100&#xA; LOG  Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;/Users/master/Documents/Code/videocap-mobile/media.mp4&#x27;:&#xA; LOG    Metadata:&#xA; LOG      major_brand     :&#xA; LOG  isom&#xA; LOG  &#xA; LOG      minor_version   :&#xA; LOG  512&#xA; LOG  &#xA; LOG      compatible_brands:&#xA; LOG  isomiso2avc1mp41&#xA; LOG  &#xA; LOG      encoder         :&#xA; LOG  Lavf58.76.100&#xA; LOG  &#xA; LOG    Duration:&#xA; LOG  00:00:11.82&#xA; LOG  , start:&#xA; LOG  0.000000&#xA; LOG  , bitrate:&#xA; LOG  813 kb/s&#xA; LOG  &#xA; LOG    Stream #0:0&#xA; LOG  [0x1]&#xA; LOG  (und)&#xA; LOG  : Video: h264 (avc1 / 0x31637661), yuv420p(tv, bt470bg/bt470bg/smpte170m, progressive), 480x608, 682 kb/s&#xA; LOG  , SAR 32757:32326 DAR 491355:614194&#xA; LOG  ,&#xA; LOG  24.15 fps,&#xA; LOG  24 tbr,&#xA; LOG  1000k tbn&#xA; LOG   (default)&#xA; LOG  &#xA; LOG      Metadata:&#xA; LOG        handler_name    :&#xA; LOG  VideoHandler&#xA; LOG  &#xA; LOG        vendor_id       :&#xA; LOG  [0][0][0][0]&#xA; LOG  &#xA; LOG    Stream #0:1&#xA; LOG  [0x2]&#xA; LOG  (und)&#xA; LOG  : Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 126 kb/s&#xA; LOG   (default)&#xA; LOG  &#xA; LOG      Metadata:&#xA; LOG        handler_name    :&#xA; LOG  SoundHandler&#xA; LOG  &#xA; LOG        vendor_id       :&#xA; LOG  [0][0][0][0]&#xA; LOG  &#xA; LOG  /Users/master/Documents/Code/videocap-mobile/transcription.srt: Immediate exit requested&#xA; LOG  Exiting normally, received signal 2.&#xA;

    &#xA;

    Please help

    &#xA;

  • Gstreamer missing Decoder meta/x-gst-fourcc-mebx

    27 juin 2024, par ZZak

    I'm currently working with GStreamer in a Linux environment and encountered an issue after upgrading from GStreamer 1.18 to 1.22. While trying to process a video file, I received the following error message :

    &#xA;

    [hevc @ 0x7f26101eba00] Skipping NAL unit 62 &#xA;[hevc @ 0x7f26100fcd40] Skipping NAL unit 62 &#xA;[hevc @ 0x7f2610113e00] Skipping NAL unit 62 &#xA;missing-plugin, type=(string)decoder, detail=(GstCaps)meta/x-gst-fourcc-mebx, name=(string)"meta/x-gst-fourcc-mebx\ decoder";&#xA;&#xA;

    &#xA;

    Also discoverer gives&#xA;Missing plugins (gstreamer|1.0|gst-discoverer-1.0|meta/x-gst-fourcc-mebx decoder|decoder-meta/x-gst-fourcc-mebx)

    &#xA;

    Source video is with .MOV video(made by iPhone) with I420_10LE format and not corrupted.&#xA;Also it's data (streams) :

    &#xA;

     Stream #0:0(und): Video: hevc (Main 10) (hvc1 / 0x31637668), yuv420p10le(tv, bt2020nc/bt2020/arib-std-b67), 1920x1080, 8455 kb/s, 29.97 fps, 29.97 tbr, 600 tbn, 600 tbc (default)&#xA;    Metadata:&#xA;      rotate          : 90&#xA;      creation_time   : 2022-02-12T07:53:40.000000Z&#xA;      handler_name    : Core Media Video&#xA;      vendor_id       : [0][0][0][0]&#xA;      encoder         : HEVC&#xA;    Side data:&#xA;      DOVI configuration record: version: 1.0, profile: 8, level: 4, rpu flag: 1, el flag: 0, bl flag: 1, compatibility id: 4&#xA;      displaymatrix: rotation of -90.00 degrees&#xA;  Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 181 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2022-02-12T07:53:40.000000Z&#xA;      handler_name    : Core Media Audio&#xA;      vendor_id       : [0][0][0][0]&#xA;  Stream #0:2(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2022-02-12T07:53:40.000000Z&#xA;      handler_name    : Core Media Metadata&#xA;  Stream #0:3(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2022-02-12T07:53:40.000000Z&#xA;      handler_name    : Core Media Metadata&#xA;  Stream #0:4(und): Data: none (mebx / 0x7862656D), 34 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2022-02-12T07:53:40.000000Z&#xA;&#xA;

    &#xA;

    This suggests that a GStreamer plugin with a decoder for the MIME type meta/x-gst-fourcc-mebx is missing from my environment. I didn't face this issue with version 1.18, but it started occurring after the upgrade to 1.22.&#xA;I've tried searching for information about this specific decoder, but I haven't been able to find any relevant details.&#xA;Could you please provide any insights or guidance on how to handle this MIME type, or which plugin should be installed to provide the necessary decoder ? If this decoder is part of a proprietary plugin or requires a specific setup, any information on how to proceed would be greatly appreciated.&#xA;Thank you for your time and help !

    &#xA;