Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (76)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7360)

  • Undefined reference, using FFMpeg-library (AvCodec) on Ubuntu, 64-bits system

    5 mai 2012, par Anders Branderud

    I am running the example code of the latest FFMpeg-library.
    I have inserted the example code into the file videofecencoder.c :

    /*
    * copyright (c) 2001 Fabrice Bellard
    *
    * This file is part of Libav.
    *
    * Libav is free software; you can redistribute it and/or
    * modify it under the terms of the GNU Lesser General Public
    * License as published by the Free Software Foundation; either
    * version 2.1 of the License, or (at your option) any later version.
    *
    * Libav is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    * Lesser General Public License for more details.
    *
    * You should have received a copy of the GNU Lesser General Public
    * License along with Libav; if not, write to the Free Software
    * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
    */
    #pragma GCC diagnostic ignored "-Wdeprecated-declarations"


    #include
    #include
    #include

    #ifdef HAVE_AV_CONFIG_H
    #undef HAVE_AV_CONFIG_H
    #endif

    #include "libavutil/imgutils.h"
    #include "libavutil/opt.h"
    #include "libavcodec/avcodec.h"
    #include "libavutil/mathematics.h"
    #include "libavutil/samplefmt.h"

    #define INBUF_SIZE 4096
    #define AUDIO_INBUF_SIZE 20480
    #define AUDIO_REFILL_THRESH 4096

    /*
    * Video encoding example
    */
    static void video_encode_example(const char *filename, int codec_id)
    {
      AVCodec *codec;
      AVCodecContext *c= NULL;
      int i, out_size, size, x, y, outbuf_size;
      FILE *f;
      AVFrame *picture;
      uint8_t *outbuf;
      int nrOfFramesPerSecond  =25;
      int nrOfSeconds =1;


      printf("Video encoding\n");

      /* find the mpeg1 video encoder */
      codec = avcodec_find_encoder((CodecID) codec_id);
      if (!codec) {
          fprintf(stderr, "codec not found\n");
          exit(1);
      }

      c = avcodec_alloc_context3(codec);
      picture= avcodec_alloc_frame();

      /* put sample parameters */
      c->bit_rate = 400000;
      /* resolution must be a multiple of two */
      c->width = 352;
      c->height = 288;
      /* frames per second */
      c->time_base= (AVRational){1,25};
      c->gop_size = 10; /* emit one intra frame every ten frames */
      c->max_b_frames=1;
      c->pix_fmt = PIX_FMT_YUV420P;

      if(codec_id == CODEC_ID_H264)
          av_opt_set(c->priv_data, "preset", "slow", 0);

      /* open it */
      if (avcodec_open2(c, codec, NULL) < 0) {
          fprintf(stderr, "could not open codec\n");
          exit(1);
      }

      f = fopen(filename, "wb");
      if (!f) {
          fprintf(stderr, "could not open %s\n", filename);
          exit(1);
      }

      /* alloc image and output buffer */
      outbuf_size = 100000;
      outbuf = (uint8_t*) malloc(outbuf_size);

      /* the image can be allocated by any means and av_image_alloc() is
       * just the most convenient way if av_malloc() is to be used */
      av_image_alloc(picture->data, picture->linesize,
                     c->width, c->height, c->pix_fmt, 1);

      /* encode 1 second of video */
      int nrOfFramesTotal = nrOfFramesPerSecond * nrOfSeconds;

      /* encode 1 second of video */
      for(i=0;i < nrOfFramesTotal; i++) {
          fflush(stdout);
          /* prepare a dummy image */
          /* Y */
          for(y=0;yheight;y++) {
              for(x=0;xwidth;x++) {
                  picture->data[0][y * picture->linesize[0] + x] = x + y + i * 3;
              }
          }

          /* Cb and Cr */
          for(y=0;yheight/2;y++) {
              for(x=0;xwidth/2;x++) {
                  picture->data[1][y * picture->linesize[1] + x] = 128 + y + i * 2;
                  picture->data[2][y * picture->linesize[2] + x] = 64 + x + i * 5;
              }
          }

          /* encode the image */
          out_size = avcodec_encode_video(c, outbuf, outbuf_size, picture);
          printf("encoding frame %3d (size=%5d)\n", i, out_size);
          fwrite(outbuf, 1, out_size, f);
      }

      /* get the delayed frames */
      for(; out_size; i++) {
          fflush(stdout);

          out_size = avcodec_encode_video(c, outbuf, outbuf_size, NULL);
          printf("write frame %3d (size=%5d)\n", i, out_size);
          fwrite(outbuf, 1, out_size, f);
      }

      /* add sequence end code to have a real mpeg file */
      outbuf[0] = 0x00;
      outbuf[1] = 0x00;
      outbuf[2] = 0x01;
      outbuf[3] = 0xb7;
      fwrite(outbuf, 1, 4, f);
      fclose(f);
      free(outbuf);

      avcodec_close(c);
      av_free(c);
      av_free(picture->data[0]);
      av_free(picture);
      printf("\n");
    }

    int main(int argc, char **argv)
    {
      const char *filename;

      /* register all the codecs */
      avcodec_register_all();

      if (argc <= 1) {

          video_encode_example("/grb_1.mpg", CODEC_ID_MPEG1VIDEO);
      } else {
          filename = argv[1];
      }


      return 0;
    }

    When I run gcc videofecencoder.cc -lavcodec I get the following error messages :

    /tmp/ccJg8IDy.o: In function `video_encode_example(char const*, int)':
    videofecencoder.cc:(.text+0x35): undefined reference to `avcodec_find_encoder(CodecID)'
    videofecencoder.cc:(.text+0x74): undefined reference to `avcodec_alloc_context3(AVCodec*)'
    videofecencoder.cc:(.text+0x7d): undefined reference to `avcodec_alloc_frame()'
    videofecencoder.cc:(.text+0x113): undefined reference to `av_opt_set(void*, char const*, char const*, int)'
    videofecencoder.cc:(.text+0x12b): undefined reference to `avcodec_open2(AVCodecContext*, AVCodec*, AVDictionary**)'
    videofecencoder.cc:(.text+0x1f0): undefined reference to `av_image_alloc(unsigned char**, int*, int, int, PixelFormat, int)'
    videofecencoder.cc:(.text+0x35c): undefined reference to `avcodec_encode_video(AVCodecContext*, unsigned char*, int, AVFrame const*)'
    videofecencoder.cc:(.text+0x3cf): undefined reference to `avcodec_encode_video(AVCodecContext*, unsigned char*, int, AVFrame const*)'
    videofecencoder.cc:(.text+0x47c): undefined reference to `avcodec_close(AVCodecContext*)'
    videofecencoder.cc:(.text+0x488): undefined reference to `av_free(void*)'
    videofecencoder.cc:(.text+0x497): undefined reference to `av_free(void*)'
    videofecencoder.cc:(.text+0x4a3): undefined reference to `av_free(void*)'
    /tmp/ccJg8IDy.o: In function `main':
    videofecencoder.cc:(.text+0x4c3): undefined reference to `avcodec_register_all()'
    collect2: ld returnerade avslutningsstatus 1

    The command nm libavcodec.a | grep avcodec_find results in :

    00000000000008e0 T avcodec_find_best_pix_fmt
    0000000000000740 T avcodec_find_best_pix_fmt2
                    U avcodec_find_encoder
    0000000000002ca0 T avcodec_find_decoder
    0000000000002cf0 T avcodec_find_decoder_by_name
    0000000000002bd0 T avcodec_find_encoder
    0000000000002c30 T avcodec_find_encoder_by_name

    I also have another similar error with another library :
    Undefined reference despite linking in OpenFEC-library

    My system : Ubuntu 11, 64-bits machine

    My next step is to try to compile it on VirtualBox with Ubuntu 32 bits (running on a Windows-OS).

  • Dash output with ffmpeg not producing durations specified with -seg_duration

    30 juillet 2022, par Codie

    There is a .mp4 file of 35 MB and 51 seconds. I have to create 51 chunks, each corresponding to 1 second with a size of less than 1MB (the total size should be almost the same as the original file). Please note that I have to implement lossless converting.

    


    I've tried many times, but it just produces about 10 files above 10 MB.

    



    


    Command :

    


    ffmpeg -re -i input.mp4 -map 0:v -c:v libx264 -crf 0 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_template 1 -seg_duration 1 -window_size 60 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash ./dashTest/out.mpd


    



    


    Command line log :

    


    ffmpeg version 5.1-full_build-www.gyan.dev Copyright (c) 2000-2022 the FFmpeg developers
  built with gcc 12.1.0 (Rev2, Built by MSYS2 project)
  configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint
  libavutil      57. 28.100 / 57. 28.100
  libavcodec     59. 37.100 / 59. 37.100
  libavformat    59. 27.100 / 59. 27.100
  libavdevice    59.  7.100 / 59.  7.100
  libavfilter     8. 44.100 /  8. 44.100
  libswscale      6.  7.100 /  6.  7.100
  libswresample   4.  7.100 /  4.  7.100
  libpostproc    56.  6.100 / 56.  6.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'input.mp4':
  Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42mp41
    creation_time   : 2022-07-27T09:13:31.000000Z
  Duration: 00:00:50.03, start: 0.000000, bitrate: 5716 kb/s
  Stream #0:0[0x1](eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], 5396 kb/s, 25 fps, 25 tbr, 25k tbn (default)
    Metadata:
      creation_time   : 2022-07-27T09:13:31.000000Z
      handler_name    : ?Mainconcept Video Media Handler
      vendor_id       : [0][0][0][0]
      encoder         : AVC Coding
  Stream #0:1[0x2](eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 317 kb/s (default)
    Metadata:
      creation_time   : 2022-07-27T09:13:31.000000Z
      handler_name    : #Mainconcept MP4 Sound Media Handler
      vendor_id       : [0][0][0][0]
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
Press [q] to stop, [?] for help
[libx264 @ 000001d13acb0380] using SAR=1/1
[libx264 @ 000001d13acb0380] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
[libx264 @ 000001d13acb0380] profile High 4:4:4 Predictive, level 3.1, 4:2:0, 8-bit
[libx264 @ 000001d13acb0380] 264 - core 164 r3095 baee400 - H.264/MPEG-4 AVC codec - Copyleft 2003-2022 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=0 mixed_ref=1 me_range=16 chroma_me=1 trellis=0 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=0 chroma_qp_offset=0 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=2 keyint=120 keyint_min=61 scenecut=0 intra_refresh=0 rc=cqp mbtree=0 qp=0
[dash @ 000001d13a2a4680] No bit rate set for stream 0
[dash @ 000001d13a2a4680] Opening './dashTest/init-stream0.m4s' for writing
Output #0, dash, to './dashTest/out.mpd':
  Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42mp41
    encoder         : Lavf59.27.100
  Stream #0:0(eng): Video: h264, yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 25 fps, 12800 tbn (default)
    Metadata:
      creation_time   : 2022-07-27T09:13:31.000000Z
      handler_name    : ?Mainconcept Video Media Handler
      vendor_id       : [0][0][0][0]
      encoder         : Lavc59.37.100 libx264
    Side data:
      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00001.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.849x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00002.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.918x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00003.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.942x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00004.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.957x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00005.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.964x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00006.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.971x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00007.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.975x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00008.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.978x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00009.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.981x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00010.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.982x
[dash @ 000001d13a2a4680] Opening './dashTest/chunk-stream0-00011.m4s.tmp' for writing
[dash @ 000001d13a2a4680] Opening './dashTest/out.mpd.tmp' for writing0.983x
frame= 1250 fps= 25 q=-1.0 Lsize=N/A time=00:00:49.96 bitrate=N/A speed=0.992x
video:171641kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
[libx264 @ 000001d13acb0380] frame I:11    Avg QP: 0.00  size:255122
[libx264 @ 000001d13acb0380] frame P:1239  Avg QP: 0.00  size:139591
[libx264 @ 000001d13acb0380] mb I  I16..4: 52.8%  8.8% 38.4%
[libx264 @ 000001d13acb0380] mb P  I16..4:  3.9%  0.7%  1.3%  P16..4: 28.0% 13.9% 11.3%  0.0%  0.0%    skip:40.8%
[libx264 @ 000001d13acb0380] 8x8 transform intra:11.9% inter:33.4%
[libx264 @ 000001d13acb0380] coded y,uvDC,uvAC intra: 68.6% 80.1% 78.9% inter: 38.0% 47.1% 46.5%
[libx264 @ 000001d13acb0380] i16 v,h,dc,p: 65% 28%  5%  2%
[libx264 @ 000001d13acb0380] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 33% 33% 28%  2%  1%  1%  1%  1%  1%
[libx264 @ 000001d13acb0380] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 36% 36%  7%  3%  5%  3%  4%  3%  2%
[libx264 @ 000001d13acb0380] i8c dc,h,v,p: 17% 38% 44%  1%
[libx264 @ 000001d13acb0380] Weighted P-Frames: Y:0.0% UV:0.0%
[libx264 @ 000001d13acb0380] ref P L0: 86.4%  7.6%  4.6%  1.4%
[libx264 @ 000001d13acb0380] kb/s:28121.58


    



    


    .mpd file :

    


    &lt;?xml version="1.0" encoding="utf-8"?>&#xA;<mpd xmlns="urn:mpeg:dash:schema:mpd:2011" profiles="urn:mpeg:dash:profile:isoff-live:2011" type="static" mediapresentationduration="PT50.0S" maxsegmentduration="PT1.0S" minbuffertime="PT9.6S">&#xA;    <programinformation>&#xA;    </programinformation>&#xA;    <servicedescription>&#xA;    </servicedescription>&#xA;    <period start="PT0.0S">&#xA;        <adaptationset contenttype="video" startwithsap="1" segmentalignment="true" bitstreamswitching="true" framerate="25/1" maxwidth="1280" maxheight="720" par="16:9" lang="eng">&#xA;            <representation mimetype="video/mp4" codecs="avc1.f4001f" bandwidth="28122926" width="1280" height="720" sar="1:1">&#xA;                <segmenttemplate timescale="12800" initialization="init-stream$RepresentationID$.m4s" media="chunk-stream$RepresentationID$-$Number%05d$.m4s" startnumber="1">&#xA;                    <segmenttimeline>&#xA;                        <s t="0" d="61440" r="9"></s>&#xA;                        <s d="25600"></s>&#xA;                    </segmenttimeline>&#xA;                </segmenttemplate>&#xA;            </representation>&#xA;        </adaptationset>&#xA;        <adaptationset contenttype="audio" startwithsap="1" segmentalignment="true" bitstreamswitching="true">&#xA;        </adaptationset>&#xA;    </period>&#xA;</mpd>&#xA;

    &#xA;


    &#xA;

    Please, if you want to put a negative point, mention your reason in the comments !

    &#xA;


    &#xA;
  • ffmpeg conversion from Flac to Ogg produces corrupted files

    8 avril 2021, par experimental

    i transcoded flac files to ogg using this command

    &#xA;

    ffmpeg -i input.flac -c:a libvorbis -b:a 500k  output.ogg&#xA;

    &#xA;

    yes i use 500k to keep the highest quality possible, some of the files are ok, but some of them can not be played - Unsupported format or corrupted file says the foobar - also my icecast streamer cant read it. So there is something wrong with the files.

    &#xA;

    I believed it was due to the high bitrate so I tried

    &#xA;

    ffmpeg -i input.flac -c:a libvorbis -b:a 320k  output.ogg&#xA;

    &#xA;

    the same happened, some files were ok, some were not playable.&#xA;so I tried again with default using this command

    &#xA;

    ffmpeg -i input.flac -c:a libvorbis output.ogg&#xA;

    &#xA;

    same thing. some files were ok, some were corrupted and not playable.

    &#xA;

    i have no clue why.

    &#xA;

    both flac and ogg are in the same family, what happened during the transcoding that it became a corrupted file ?

    &#xA;

    the spectral analysis does not show anything wrong - here it the ogg https://prnt.sc/115zdjl, here is the original flac https://prnt.sc/115zegw

    &#xA;

    i am really interested what is going on and how to make it work ?

    &#xA;

    can anyone explain ?

    &#xA;

    here is complete log

    &#xA;

        C:\Users\lukas.kotatko>ffmpeg -i "\\192.168.0.128\lukas\online radio resources\Atma FM playlists\channel 1\flac lossless\Tuu\One Thousand Years\02 One Thousand Years.flac" -c:a libvorbis -b:a 500k "\\192.168.0.128\lukas\online radio resources\Atma FM playlists\channel 1\flac lossless\Tuu\One Thousand Years\02 One Thousand Years [500k test].ogg"&#xA;ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 10.2.1 (GCC) 20200726&#xA;  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libgsm --disable-w32threads --enable-libmfx --enable-ffnvcodec --enable-cuda-llvm --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf&#xA;  libavutil      56. 51.100 / 56. 51.100&#xA;  libavcodec     58. 91.100 / 58. 91.100&#xA;  libavformat    58. 45.100 / 58. 45.100&#xA;  libavdevice    58. 10.100 / 58. 10.100&#xA;  libavfilter     7. 85.100 /  7. 85.100&#xA;  libswscale      5.  7.100 /  5.  7.100&#xA;  libswresample   3.  7.100 /  3.  7.100&#xA;  libpostproc    55.  7.100 / 55.  7.100&#xA;Input #0, flac, from &#x27;\\192.168.0.128\lukas\online radio resources\Atma FM playlists\channel 1\flac lossless\Tuu\One Thousand Years\02 One Thousand Years.flac&#x27;:&#xA;  Metadata:&#xA;    GENRE           : Tribal / Ambient&#xA;    ORGANIZATION    : Waveform Records&#xA;    ISRC            : 01101-2&#xA;    COMMENT         : US reissue featuring the six original tracks plus two taken from the Invocation album.&#xA;    MUSICBRAINZ_RELEASEGROUPID: 737d0518-3dc2-36b3-9419-282c0ade0e50&#xA;    ORIGINALDATE    : 1993&#xA;    ORIGINALYEAR    : 1993&#xA;    RELEASETYPE     : album&#xA;    MUSICBRAINZ_ALBUMID: f6339129-f662-43a1-93df-2f20540f73cc&#xA;    ALBUM           : One Thousand Years&#xA;    BARCODE         : 789060110125&#xA;    MUSICBRAINZ_ALBUMARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;    album_artist    : Tuu&#xA;    ALBUMARTISTSORT : Tuu&#xA;    ASIN            : B00005B9TT&#xA;    SCRIPT          : Latn&#xA;    RELEASESTATUS   : official&#xA;    LABEL           : Waveform Records&#xA;    CATALOGNUMBER   : 01101-2&#xA;    RELEASECOUNTRY  : US&#xA;    DATE            : 2001-05-08&#xA;    TOTALDISCS      : 1&#xA;    disc            : 1&#xA;    TOTALTRACKS     : 8&#xA;    MEDIA           : CD&#xA;    MUSICBRAINZ_TRACKID: aef9824d-e4a6-4ae6-aebe-50a83dd14f71&#xA;    TITLE           : One Thousand Years&#xA;    MUSICBRAINZ_ARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;    ARTIST          : Tuu&#xA;    ARTISTSORT      : Tuu&#xA;    ARTISTS         : Tuu&#xA;    MUSICBRAINZ_RELEASETRACKID: 621c9da6-a85d-3f8b-b485-5e6f74a60cd0&#xA;    track           : 2&#xA;    TRACKTOTAL      : 8&#xA;    DISCTOTAL       : 1&#xA;  Duration: 00:08:03.67, start: 0.000000, bitrate: 792 kb/s&#xA;    Stream #0:0: Audio: flac, 44100 Hz, stereo, s16&#xA;    Stream #0:1: Video: mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 600x600 [SAR 1:1 DAR 1:1], 90k tbr, 90k tbn, 90k tbc (attached pic)&#xA;    Metadata:&#xA;      comment         : Cover (front)&#xA;Stream mapping:&#xA;  Stream #0:1 -> #0:0 (mjpeg (native) -> theora (libtheora))&#xA;  Stream #0:0 -> #0:1 (flac (native) -> vorbis (libvorbis))&#xA;Press [q] to stop, [?] for help&#xA;[swscaler @ 0000015307581a00] deprecated pixel format used, make sure you did set range correctly&#xA;[ogg @ 00000153073f1680] Frame rate very high for a muxer not efficiently supporting it.&#xA;Please consider specifying a lower framerate, a different muxer or -vsync 2&#xA;Output #0, ogg, to &#x27;\\192.168.0.128\lukas\online radio resources\Atma FM playlists\channel 1\flac lossless\Tuu\One Thousand Years\02 One Thousand Years [500k test].ogg&#x27;:&#xA;  Metadata:&#xA;    GENRE           : Tribal / Ambient&#xA;    ORGANIZATION    : Waveform Records&#xA;    ISRC            : 01101-2&#xA;    COMMENT         : US reissue featuring the six original tracks plus two taken from the Invocation album.&#xA;    MUSICBRAINZ_RELEASEGROUPID: 737d0518-3dc2-36b3-9419-282c0ade0e50&#xA;    ORIGINALDATE    : 1993&#xA;    ORIGINALYEAR    : 1993&#xA;    RELEASETYPE     : album&#xA;    MUSICBRAINZ_ALBUMID: f6339129-f662-43a1-93df-2f20540f73cc&#xA;    ALBUM           : One Thousand Years&#xA;    BARCODE         : 789060110125&#xA;    MUSICBRAINZ_ALBUMARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;    album_artist    : Tuu&#xA;    ALBUMARTISTSORT : Tuu&#xA;    ASIN            : B00005B9TT&#xA;    SCRIPT          : Latn&#xA;    RELEASESTATUS   : official&#xA;    LABEL           : Waveform Records&#xA;    CATALOGNUMBER   : 01101-2&#xA;    RELEASECOUNTRY  : US&#xA;    DATE            : 2001-05-08&#xA;    TOTALDISCS      : 1&#xA;    disc            : 1&#xA;    TOTALTRACKS     : 8&#xA;    MEDIA           : CD&#xA;    MUSICBRAINZ_TRACKID: aef9824d-e4a6-4ae6-aebe-50a83dd14f71&#xA;    TITLE           : One Thousand Years&#xA;    MUSICBRAINZ_ARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;    ARTIST          : Tuu&#xA;    ARTISTSORT      : Tuu&#xA;    ARTISTS         : Tuu&#xA;    MUSICBRAINZ_RELEASETRACKID: 621c9da6-a85d-3f8b-b485-5e6f74a60cd0&#xA;    track           : 2&#xA;    TRACKTOTAL      : 8&#xA;    DISCTOTAL       : 1&#xA;    encoder         : Lavf58.45.100&#xA;    Stream #0:0: Video: theora (libtheora), yuv420p(progressive), 600x600 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 90k fps, 90k tbn, 90k tbc (attached pic)&#xA;    Metadata:&#xA;      DESCRIPTION     : Cover (front)&#xA;      encoder         : Lavc58.91.100 libtheora&#xA;      GENRE           : Tribal / Ambient&#xA;      ORGANIZATION    : Waveform Records&#xA;      ISRC            : 01101-2&#xA;      MUSICBRAINZ_RELEASEGROUPID: 737d0518-3dc2-36b3-9419-282c0ade0e50&#xA;      ORIGINALDATE    : 1993&#xA;      ORIGINALYEAR    : 1993&#xA;      RELEASETYPE     : album&#xA;      MUSICBRAINZ_ALBUMID: f6339129-f662-43a1-93df-2f20540f73cc&#xA;      ALBUM           : One Thousand Years&#xA;      BARCODE         : 789060110125&#xA;      MUSICBRAINZ_ALBUMARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;      ALBUMARTIST     : Tuu&#xA;      ALBUMARTISTSORT : Tuu&#xA;      ASIN            : B00005B9TT&#xA;      SCRIPT          : Latn&#xA;      RELEASESTATUS   : official&#xA;      LABEL           : Waveform Records&#xA;      CATALOGNUMBER   : 01101-2&#xA;      RELEASECOUNTRY  : US&#xA;      DATE            : 2001-05-08&#xA;      TOTALDISCS      : 1&#xA;      DISCNUMBER      : 1&#xA;      TOTALTRACKS     : 8&#xA;      MEDIA           : CD&#xA;      MUSICBRAINZ_TRACKID: aef9824d-e4a6-4ae6-aebe-50a83dd14f71&#xA;      TITLE           : One Thousand Years&#xA;      MUSICBRAINZ_ARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;      ARTIST          : Tuu&#xA;      ARTISTSORT      : Tuu&#xA;      ARTISTS         : Tuu&#xA;      MUSICBRAINZ_RELEASETRACKID: 621c9da6-a85d-3f8b-b485-5e6f74a60cd0&#xA;      TRACKNUMBER     : 2&#xA;      TRACKTOTAL      : 8&#xA;      DISCTOTAL       : 1&#xA;    Stream #0:1: Audio: vorbis (libvorbis), 44100 Hz, stereo, fltp (16 bit), 500 kb/s&#xA;    Metadata:&#xA;      encoder         : Lavc58.91.100 libvorbis&#xA;      GENRE           : Tribal / Ambient&#xA;      ORGANIZATION    : Waveform Records&#xA;      ISRC            : 01101-2&#xA;      DESCRIPTION     : US reissue featuring the six original tracks plus two taken from the Invocation album.&#xA;      MUSICBRAINZ_RELEASEGROUPID: 737d0518-3dc2-36b3-9419-282c0ade0e50&#xA;      ORIGINALDATE    : 1993&#xA;      ORIGINALYEAR    : 1993&#xA;      RELEASETYPE     : album&#xA;      MUSICBRAINZ_ALBUMID: f6339129-f662-43a1-93df-2f20540f73cc&#xA;      ALBUM           : One Thousand Years&#xA;      BARCODE         : 789060110125&#xA;      MUSICBRAINZ_ALBUMARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;      ALBUMARTIST     : Tuu&#xA;      ALBUMARTISTSORT : Tuu&#xA;      ASIN            : B00005B9TT&#xA;      SCRIPT          : Latn&#xA;      RELEASESTATUS   : official&#xA;      LABEL           : Waveform Records&#xA;      CATALOGNUMBER   : 01101-2&#xA;      RELEASECOUNTRY  : US&#xA;      DATE            : 2001-05-08&#xA;      TOTALDISCS      : 1&#xA;      DISCNUMBER      : 1&#xA;      TOTALTRACKS     : 8&#xA;      MEDIA           : CD&#xA;      MUSICBRAINZ_TRACKID: aef9824d-e4a6-4ae6-aebe-50a83dd14f71&#xA;      TITLE           : One Thousand Years&#xA;      MUSICBRAINZ_ARTISTID: e05a42e7-60a3-4d2d-983c-51dc4eb67cad&#xA;      ARTIST          : Tuu&#xA;      ARTISTSORT      : Tuu&#xA;      ARTISTS         : Tuu&#xA;      MUSICBRAINZ_RELEASETRACKID: 621c9da6-a85d-3f8b-b485-5e6f74a60cd0&#xA;      TRACKNUMBER     : 2&#xA;      TRACKTOTAL      : 8&#xA;      DISCTOTAL       : 1&#xA;frame=    1 fps=0.1 q=-0.0 Lsize=   25860kB time=00:08:03.66 bitrate= 438.0kbits/s speed=44.6x&#xA;video:8kB audio:25721kB subtitle:0kB other streams:0kB global headers:7kB muxing overhead: 0.511663%&#xA;

    &#xA;