Recherche avancée

Médias (91)

Autres articles (40)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • AWS Lambda Docker image with librosa and ffmpeg

    4 août 2022, par loretoparisi

    I'm using this Dockerfile to build an image for AWS Lambda having librosa and ffmpeg with python3.7 :

    


    ARG FUNCTION_DIR="/function"
FROM python:3.7.4-slim-buster as build-image

# librosa and ffmpeg dependencies
RUN apt-get update && apt-get install -y \
    software-properties-common \
    libsndfile1-dev \
    ffmpeg

# Install aws-lambda-cpp build dependencies
RUN apt-get update && \
  apt-get install -y \
  g++ \
  make \
  cmake \
  unzip \
  libcurl4-openssl-dev

# Include global arg in this stage of the build
ARG FUNCTION_DIR
# Create function directory
RUN mkdir -p ${FUNCTION_DIR}

# Copy function code
COPY app.py ${FUNCTION_DIR}

# Install the runtime interface client
RUN pip install \
        --target ${FUNCTION_DIR} \
        awslambdaric

# Multi-stage build: grab a fresh copy of the base image
FROM python:3.7.4-slim-buster

# Include global arg in this stage of the build
ARG FUNCTION_DIR
# Set working directory to function root directory
WORKDIR ${FUNCTION_DIR}

# Copy in the build image dependencies
COPY --from=build-image ${FUNCTION_DIR} ${FUNCTION_DIR}

EXPOSE 8080
ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ]
CMD [ "app.handler" ]


    


    The build works ok, but I cannot run the image :

    


    docker run -e AWS_LAMBDA_RUNTIME_API=localhost:9000 --rm -it -p 9000:8080  lambda:latest&#xA;Executing &#x27;app.handler&#x27; in function directory &#x27;/function&#x27;&#xA;[ERROR] [1628271126733] LAMBDA_RUNTIME Failed to get next invocation. No Response from endpoint&#xA;Traceback (most recent call last):&#xA;  File "/usr/local/lib/python3.7/runpy.py", line 193, in _run_module_as_main&#xA;    "__main__", mod_spec)&#xA;  File "/usr/local/lib/python3.7/runpy.py", line 85, in _run_code&#xA;    exec(code, run_globals)&#xA;  File "/function/awslambdaric/__main__.py", line 21, in <module>&#xA;    main(sys.argv)&#xA;  File "/function/awslambdaric/__main__.py", line 17, in main&#xA;    bootstrap.run(app_root, handler, lambda_runtime_api_addr)&#xA;  File "/function/awslambdaric/bootstrap.py", line 399, in run&#xA;    event_request = lambda_runtime_client.wait_next_invocation()&#xA;  File "/function/awslambdaric/lambda_runtime_client.py", line 76, in wait_next_invocation&#xA;    response_body, headers = runtime_client.next()&#xA;RuntimeError: Failed to get next&#xA;</module>

    &#xA;

    I therefore tried this simplified Dockerfile that is based on the AWS EC2 CentOS with package manager yum :

    &#xA;

    FROM public.ecr.aws/lambda/python:3.8&#xA;&#xA;# libsndfile&#xA;RUN curl -o libsndfile-1.0.28-alt1.x86_64.rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//libsndfile-1.0.28-alt1.x86_64.rpm &#xA;RUN curl -o libsndfile-devel-1.0.28-alt1.x86_64.rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//libsndfile-devel-1.0.28-alt1.x86_64.rpm&#xA;#ffmpeg&#xA;RUN curl -o ffmpeg-4.4-alt5.x86_64.rpm  http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//ffmpeg-4.4-alt5.x86_64.rpm &#xA;&#xA;RUN yum localinstall \&#xA;    libsndfile-devel-1.0.28-alt1.x86_64.rpm \&#xA;    fmpeg-4.4-alt5.x86_64.rpm&#xA;&#xA;# Create function directory&#xA;WORKDIR /app&#xA;&#xA;# Copy function code&#xA;COPY app.py .&#xA;&#xA;COPY requirements.txt .&#xA;RUN pip install -r requirements.txt&#xA;&#xA;EXPOSE 8080&#xA;# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)&#xA;CMD ["/app/app.handler"]&#xA;

    &#xA;

    In this case, the image builds and run and I can invoke the handler :

    &#xA;

    docker run --rm -it -p 9000:8080  lambda:latest&#xA;INFO[0000] exec &#x27;/var/runtime/bootstrap&#x27; (cwd=/app, handler=) &#xA;curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d &#x27;{}&#x27;&#xA;

    &#xA;

    but I librosa complains about the libsndfile1 installation :

    &#xA;

    Traceback (most recent call last):&#xA;  File "/var/runtime/bootstrap.py", line 452, in main&#xA;    request_handler = _get_handler(handler)&#xA;  File "/var/runtime/bootstrap.py", line 46, in _get_handler&#xA;    m = imp.load_module(modname, file_handle, pathname, desc)&#xA;  File "/var/lang/lib/python3.8/imp.py", line 234, in load_module&#xA;    return load_source(name, filename, file)&#xA;  File "/var/lang/lib/python3.8/imp.py", line 171, in load_source&#xA;    module = _load(spec)&#xA;  File "<frozen>", line 702, in _load&#xA;  File "<frozen>", line 671, in _load_unlocked&#xA;  File "<frozen>", line 848, in exec_module&#xA;  File "<frozen>", line 219, in _call_with_frames_removed&#xA;  File "/app/app.py", line 7, in <module>&#xA;    import librosa&#xA;  File "/var/lang/lib/python3.8/site-packages/librosa/__init__.py", line 211, in <module>&#xA;    from . import core&#xA;  File "/var/lang/lib/python3.8/site-packages/librosa/core/__init__.py", line 6, in <module>&#xA;    from .audio import *  # pylint: disable=wildcard-import&#xA;  File "/var/lang/lib/python3.8/site-packages/librosa/core/audio.py", line 8, in <module>&#xA;    import soundfile as sf&#xA;  File "/var/lang/lib/python3.8/site-packages/soundfile.py", line 142, in <module>&#xA;    raise OSError(&#x27;sndfile library not found&#x27;)&#xA;OSError: sndfile library not found&#xA;&#xA;During handling of the above exception, another exception occurred:&#xA;&#xA;    Traceback (most recent call last):&#xA;      File "/var/runtime/bootstrap.py", line 480, in <module>&#xA;        main()&#xA;      File "/var/runtime/bootstrap.py", line 457, in main&#xA;        lambda_runtime_client.post_init_error(to_json(error_result))&#xA;      File "/var/runtime/lambda_runtime_client.py", line 42, in post_init_error&#xA;        response = runtime_connection.getresponse()&#xA;      File "/var/lang/lib/python3.8/http/client.py", line 1344, in getresponse&#xA;        response.begin()&#xA;      File "/var/lang/lib/python3.8/http/client.py", line 307, in begin&#xA;        version, status, reason = self._read_status()&#xA;      File "/var/lang/lib/python3.8/http/client.py", line 276, in _read_status&#xA;        raise RemoteDisconnected("Remote end closed connection without"&#xA;    http.client.RemoteDisconnected: Remote end closed connection without response&#xA;    WARN[0023] First fatal error stored in appctx: Runtime.ExitError &#xA;    WARN[0023] Process 16(bootstrap) exited: Runtime exited with error: exit status 1 &#xA;    ERRO[0023] Init failed                                   InvokeID= error="Runtime exited with error: exit status 1"&#xA;    WARN[0023] Failed to send default error response: ErrInvalidInvokeID &#xA;    ERRO[0023] INIT DONE failed: Runtime.ExitError          &#xA;    WARN[0023] Reset initiated: ReserveFail &#xA;</module></module></module></module></module></module></frozen></frozen></frozen></frozen>

    &#xA;

    The strange thing in this case (yum and rmp) is that the installation seems to work fine :

    &#xA;

    => CACHED [2/9] RUN curl -o libsndfile-1.0.28-alt1.x86_64.rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//libsndfile-1.0.2  0.0s&#xA; => CACHED [3/9] RUN curl -o libsndfile-devel-1.0.28-alt1.x86_64.rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//libsndfile  0.0s&#xA; => CACHED [4/9] RUN curl -o ffmpeg-4.4-alt5.x86_64.rpm  http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/x86_64/RPMS.classic//ffmpeg-4.4-alt5.x86_64  0.0s&#xA; => CACHED [5/9] RUN yum localinstall     libsndfile-devel-1.0.28-alt1.x86_64.rpm     fmpeg-4.4-alt5.x86_64.rpm  &#xA;

    &#xA;

  • How can record music playing on headphone ?

    27 avril 2022, par showkey

    List all the cards in my pc :

    &#xA;

    pacmd list-cards &#xA;2 card(s) available.&#xA;    index: 1&#xA;    name: &#xA;    driver: &#xA;    owner module: 7&#xA;    properties:&#xA;        alsa.card = "0"&#xA;        alsa.card_name = "HD-Audio Generic"&#xA;        alsa.long_card_name = "HD-Audio Generic at 0xfccc8000 irq 59"&#xA;        alsa.driver_name = "snd_hda_intel"&#xA;        device.bus_path = "pci-0000:09:00.1"&#xA;        sysfs.path = "/devices/pci0000:00/0000:00:08.1/0000:09:00.1/sound/card0"&#xA;        device.bus = "pci"&#xA;        device.vendor.id = "1002"&#xA;        device.vendor.name = "Advanced Micro Devices, Inc. [AMD/ATI]"&#xA;        device.product.id = "15de"&#xA;        device.product.name = "Raven/Raven2/Fenghuang HDMI/DP Audio Controller"&#xA;        device.string = "0"&#xA;        device.description = "Raven/Raven2/Fenghuang HDMI/DP Audio Controller"&#xA;        module-udev-detect.discovered = "1"&#xA;        device.icon_name = "audio-card-pci"&#xA;    profiles:&#xA;        output:hdmi-stereo: Digital Stereo (HDMI) Output (priority 5900, available: no)&#xA;        output:hdmi-surround: Digital Surround 5.1 (HDMI) Output (priority 800, available: no)&#xA;        output:hdmi-surround71: Digital Surround 7.1 (HDMI) Output (priority 800, available: no)&#xA;        output:hdmi-stereo-extra1: Digital Stereo (HDMI 2) Output (priority 5700, available: no)&#xA;        output:hdmi-surround-extra1: Digital Surround 5.1 (HDMI 2) Output (priority 600, available: no)&#xA;        output:hdmi-surround71-extra1: Digital Surround 7.1 (HDMI 2) Output (priority 600, available: no)&#xA;        output:hdmi-stereo-extra2: Digital Stereo (HDMI 3) Output (priority 5700, available: no)&#xA;        output:hdmi-surround-extra2: Digital Surround 5.1 (HDMI 3) Output (priority 600, available: no)&#xA;        output:hdmi-surround71-extra2: Digital Surround 7.1 (HDMI 3) Output (priority 600, available: no)&#xA;        off: Off (priority 0, available: unknown)&#xA;    active profile: <off>&#xA;    ports:&#xA;        hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                device.icon_name = "video-display"&#xA;        hdmi-output-1: HDMI / DisplayPort 2 (priority 5800, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                device.icon_name = "video-display"&#xA;        hdmi-output-2: HDMI / DisplayPort 3 (priority 5700, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                device.icon_name = "video-display"&#xA;    index: 2&#xA;    name: &#xA;    driver: &#xA;    owner module: 8&#xA;    properties:&#xA;        alsa.card = "2"&#xA;        alsa.card_name = "HD-Audio Generic"&#xA;        alsa.long_card_name = "HD-Audio Generic at 0xfccc0000 irq 60"&#xA;        alsa.driver_name = "snd_hda_intel"&#xA;        device.bus_path = "pci-0000:09:00.6"&#xA;        sysfs.path = "/devices/pci0000:00/0000:00:08.1/0000:09:00.6/sound/card2"&#xA;        device.bus = "pci"&#xA;        device.vendor.id = "1022"&#xA;        device.vendor.name = "Advanced Micro Devices, Inc. [AMD]"&#xA;        device.product.id = "15e3"&#xA;        device.product.name = "Family 17h (Models 10h-1fh) HD Audio Controller"&#xA;        device.string = "2"&#xA;        device.description = "Family 17h (Models 10h-1fh) HD Audio Controller"&#xA;        module-udev-detect.discovered = "1"&#xA;        device.icon_name = "audio-card-pci"&#xA;    profiles:&#xA;        input:analog-stereo: Analog Stereo Input (priority 65, available: no)&#xA;        output:analog-stereo: Analog Stereo Output (priority 6500, available: unknown)&#xA;        output:analog-stereo&#x2B;input:analog-stereo: Analog Stereo Duplex (priority 6565, available: no)&#xA;        output:analog-surround-40: Analog Surround 4.0 Output (priority 1200, available: unknown)&#xA;        output:analog-surround-40&#x2B;input:analog-stereo: Analog Surround 4.0 Output &#x2B; Analog Stereo Input (priority 1265, available: no)&#xA;        output:analog-surround-51: Analog Surround 5.1 Output (priority 1300, available: unknown)&#xA;        output:analog-surround-51&#x2B;input:analog-stereo: Analog Surround 5.1 Output &#x2B; Analog Stereo Input (priority 1365, available: no)&#xA;        output:iec958-stereo: Digital Stereo (IEC958) Output (priority 5500, available: unknown)&#xA;        output:iec958-stereo&#x2B;input:analog-stereo: Digital Stereo (IEC958) Output &#x2B; Analog Stereo Input (priority 5565, available: no)&#xA;        output:iec958-ac3-surround-51: Digital Surround 5.1 (IEC958/AC3) Output (priority 300, available: unknown)&#xA;        output:iec958-ac3-surround-51&#x2B;input:analog-stereo: Digital Surround 5.1 (IEC958/AC3) Output &#x2B; Analog Stereo Input (priority 365, available: no)&#xA;        off: Off (priority 0, available: unknown)&#xA;    active profile: &#xA;    sinks:&#xA;        alsa_output.pci-0000_09_00.6.analog-stereo/#0: Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo&#xA;    sources:&#xA;        alsa_output.pci-0000_09_00.6.analog-stereo.monitor/#1: Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo&#xA;    ports:&#xA;        analog-input-front-mic: Front Microphone (priority 8500, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                device.icon_name = "audio-input-microphone"&#xA;        analog-input-rear-mic: Rear Microphone (priority 8200, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                device.icon_name = "audio-input-microphone"&#xA;        analog-input-linein: Line In (priority 8100, latency offset 0 usec, available: no)&#xA;            properties:&#xA;                &#xA;        analog-output-lineout: Line Out (priority 9000, latency offset 0 usec, available: yes)&#xA;            properties:&#xA;                &#xA;        analog-output-headphones: Headphones (priority 9900, latency offset 0 usec, available: yes)&#xA;            properties:&#xA;                device.icon_name = "audio-headphones"&#xA;        iec958-stereo-output: Digital Output (S/PDIF) (priority 0, latency offset 0 usec, available: unknown)&#xA;            properties:&#xA;</off>

    &#xA;

    Playing a music on speaker,record it with ffmpeg and save as music.mp3 in current directory.

    &#xA;

    device_speaker="alsa_output.pci-0000_09_00.6.analog-stereo.monitor"&#xA;ffmpeg -f pulse -i $device_speaker   music.mp3&#xA;

    &#xA;

    I turn off the speaker and play the music on my headphone,how can record it with ffmpeg ?

    &#xA;

  • cannot hear audio after saving RTSP stream as ts or avi or mp4 files using ffmpeg command

    28 mai 2022, par ewang

    I am still new to ffmpeg and trying to save RTSP stream from the IP camera (Meraki MV2) via RTSP link (rtsp ://192.168.0.80:9000/live) to local laptop (Windows 10) as ts file, or avi or mp4 files, but none of them can hear sound. In Meraki MV2 camera dashboard audio is enabled&#xA;meraki dashboard audio enabled screenshot

    &#xA;

    And below is the ffmpeg command i used :

    &#xA;

    ffmpeg -use_wallclock_as_timestamps 1 -rtsp_transport tcp -i rtsp://192.168.0.80:9000/live -f mpegts -b 400k -r 25 -vcodec libx264 -s 640x480 -aspect 4:3 -bufsize 6000k -acodec aac -ab 56k -ac 2 -ar 22050 -bf 0 -level 30 -y record_a_v.ts&#xA;

    &#xA;

    In below part of the result log, noticed Steam mapping has a #0:1 -> #0:0 and #0:0 -> #0:1, is it supposed to be crossed or not really ?

    &#xA;

    Input #0, rtsp, from &#x27;rtsp://192.168.0.80:9000/live&#x27;:&#xA;  Metadata:&#xA;    title           : www rtsp live&#xA;    comment         : LIVE555 Streaming Media v2017.01.26&#xA;  Duration: N/A, start: 1653723857.755958, bitrate: N/A&#xA;  Stream #0:0: Audio: aac (LC), 48000 Hz, mono, fltp&#xA;  Stream #0:1: Video: h264 (High), yuvj420p(pc, smpte170m, progressive), 1920x1080, 90k tbr, 90k tbn&#xA;Stream mapping:&#xA;  Stream #0:1 -> #0:0 (h264 (native) -> h264 (libx264))&#xA;  Stream #0:0 -> #0:1 (aac (native) -> aac (native))&#xA;

    &#xA;

    Here are the last section of the result log :

    &#xA;

        Last message repeated 4 times&#xA;Error while decoding stream #0:0: Invalid argument:00:09.44 bitrate=  79.3kbits/s dup=0 drop=2 speed=1.38x&#xA;    Last message repeated 1 times&#xA;[aac @ 0000027bec8ee780] Queue input is backward in time&#xA;Error while decoding stream #0:0: Invalid argument&#xA;[mpegts @ 0000027bee8cfac0] Non-monotonous DTS in output stream 0:1; previous: 868241, current: 867392; changing to 868242. This may result in incorrect timestamps in the output file.&#xA;Error while decoding stream #0:0: Invalid argument&#xA;    Last message repeated 12 times&#xA;Error while decoding stream #0:0: Invalid argument:00:09.90 bitrate= 111.7kbits/s dup=0 drop=2 speed=1.35x&#xA;    Last message repeated 6 times&#xA;Error while decoding stream #0:0: Invalid argument:00:10.51 bitrate= 121.5kbits/s dup=0 drop=2 speed=1.34x&#xA;    Last message repeated 19 times&#xA;Error while decoding stream #0:0: Invalid argument:00:11.01 bitrate= 137.9kbits/s dup=0 drop=2 speed=1.31x&#xA;    Last message repeated 10 times&#xA;Error while decoding stream #0:0: Invalid argument:00:11.51 bitrate= 145.2kbits/s dup=0 drop=2 speed=1.29x&#xA;    Last message repeated 9 times&#xA;Error while decoding stream #0:0: Invalid argument:00:12.12 bitrate= 154.5kbits/s dup=0 drop=2 speed=1.29x&#xA;    Last message repeated 21 times&#xA;Error while decoding stream #0:0: Invalid argument:00:12.50 bitrate= 167.7kbits/s dup=0 drop=2 speed=1.26x&#xA;    Last message repeated 8 times&#xA;Error while decoding stream #0:0: Invalid argument:00:13.08 bitrate= 160.2kbits/s dup=0 drop=2 speed=1.25x&#xA;    Last message repeated 11 times&#xA;Error while decoding stream #0:0: Invalid argument:00:13.61 bitrate= 154.0kbits/s dup=0 drop=2 speed=1.24x&#xA;    Last message repeated 8 times&#xA;Error while decoding stream #0:0: Invalid argument:00:14.11 bitrate= 148.5kbits/s dup=0 drop=2 speed=1.23x&#xA;    Last message repeated 16 times&#xA;Error while decoding stream #0:0: Invalid argument:00:14.61 bitrate= 143.5kbits/s dup=0 drop=2 speed=1.22x&#xA;    Last message repeated 10 times&#xA;Error while decoding stream #0:0: Invalid argument:00:15.14 bitrate= 138.4kbits/s dup=0 drop=2 speed=1.21x&#xA;    Last message repeated 18 times&#xA;Error while decoding stream #0:0: Invalid argument:00:15.62 bitrate= 134.2kbits/s dup=0 drop=2 speed= 1.2x&#xA;    Last message repeated 6 times&#xA;Error while decoding stream #0:0: Invalid argument:00:16.14 bitrate= 129.9kbits/s dup=0 drop=2 speed=1.19x&#xA;    Last message repeated 15 times&#xA;Error while decoding stream #0:0: Invalid argument:00:16.64 bitrate= 251.9kbits/s dup=0 drop=2 speed=1.19x&#xA;    Last message repeated 9 times&#xA;Error while decoding stream #0:0: Invalid argument:00:17.11 bitrate= 245.1kbits/s dup=0 drop=2 speed=1.18x&#xA;    Last message repeated 15 times&#xA;frame=  125 fps=8.3 q=27.0 size=     512kB time=00:00:17.66 bitrate= 237.5kbits/s dup=0 drop=2 speed=1.17x&#xA;&#xA;[q] command received. Exiting.&#xA;&#xA;frame=  125 fps=8.2 q=-1.0 Lsize=     922kB time=00:00:17.75 bitrate= 425.1kbits/s dup=0 drop=2 speed=1.16x&#xA;video:843kB audio:2kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 9.064729%&#xA;[libx264 @ 0000027bee8cd640] frame I:1     Avg QP:17.27  size: 54983&#xA;[libx264 @ 0000027bee8cd640] frame P:124   Avg QP:22.65  size:  6516&#xA;[libx264 @ 0000027bee8cd640] mb I  I16..4:  4.2% 60.5% 35.2%&#xA;[libx264 @ 0000027bee8cd640] mb P  I16..4:  0.1%  2.4%  0.4%  P16..4: 39.2% 11.9% 10.2%  0.0%  0.0%    skip:35.9%&#xA;[libx264 @ 0000027bee8cd640] 8x8 transform intra:77.2% inter:55.0%&#xA;[libx264 @ 0000027bee8cd640] coded y,uvDC,uvAC intra: 93.1% 91.5% 65.1% inter: 26.5% 37.1% 6.2%&#xA;[libx264 @ 0000027bee8cd640] i16 v,h,dc,p:  8%  2%  8% 81%&#xA;[libx264 @ 0000027bee8cd640] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 11%  9% 24%  5% 16% 12% 12%  6%  6%&#xA;[libx264 @ 0000027bee8cd640] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 25%  9% 16%  6% 11% 14%  6%  6%  6%&#xA;[libx264 @ 0000027bee8cd640] i8c dc,h,v,p: 64% 12% 20%  5%&#xA;[libx264 @ 0000027bee8cd640] Weighted P-Frames: Y:0.0% UV:0.0%&#xA;[libx264 @ 0000027bee8cd640] ref P L0: 77.9% 10.9%  7.7%  3.5%&#xA;[libx264 @ 0000027bee8cd640] kb/s:435.85&#xA;[aac @ 0000027bec8ee780] Qavg: 65536.000&#xA;

    &#xA;

    Can anyone help checking where went wrong ? Thanks

    &#xA;