Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (91)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (9725)

  • avformat/vividas : Fix infinite loop in header parser

    10 août 2019, par Michael Niedermayer
    avformat/vividas : Fix infinite loop in header parser
    

    Fixes : Timeout (Infinite -> Finite)
    Fixes : 16010/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5638616102993920

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/vividas.c
  • How to create and use libffmpeg.so in YouTube watchme Android development

    27 octobre 2016, par Kiran Reddy

    I have cloned a git repo from https://github.com/youtube/yt-watchme

    I went through readme.md and I stuck at 4th step

    How to create and use libffmpeg.so in YouTube watchme Android development

    When I run that with out libffmpeg.so , I’g getting the below error

    No implementation found for boolean com.google.android.apps.watchme.Ffmpeg.init
  • garbled audio when streaming to youtube using ffmpeg

    27 mai 2022, par skavish

    I am having some weird audio issues streaming to youtube using ffmpeg.

    &#xA;

    The same stream on facebook and twitch is fine, but on youtube it has some garbling audio issues.

    &#xA;

    Here is one of those streams : https://www.youtube.com/watch?v=zat4fhwFGUI

    &#xA;

    Here is ffmpeg command which was used to stream this video. I removed input, output key and inserted newlines for readability.

    &#xA;

    This command is streaming to youtube (last tee), to hls (first) and to mp4 (second). hls and mp4 do not have this audio issue. Also no issues if we add another tee to stream say to facebook as well.

    &#xA;

    It happens only with youtube.

    &#xA;

    I would appreciate any help or ideas on what is going on there. Thank you !

    &#xA;

    ffmpeg -i XXXXXXXXXX -r 30 -preset ultrafast -tune zerolatency -threads 0 -vsync 1 -map 0:v -c:v libx264 -crf 23 -g 60.0 -sc_threshold 0 -keyint_min 60.0&#xA;-pix_fmt yuv420p -map 1:a:0 -c:a:0 aac -b:a:0 128k -ac 2 -ar 44100 -aq 0 -flags &#x2B;global_header&#xA;-f tee&#xA;[f=hls:var_stream_map=&#x27;v:0,a:0&#x27;:select=&#x27;v:0,a:0&#x27;:hls_time=2.0:hls_playlist_type=event:&#xA;hls_flags=independent_segments&#x2B;temp_file:master_pl_publish_rate=1:hls_segment_type=mpegts:hls_segment_filename=/tmp/10311326958150343888/stream_%v_%02d.ts:&#xA;master_pl_name=master.m3u8]/tmp/10311326958150343888/stream_%v.m3u8|&#xA;&#xA;/tmp/10311326958150343888/stream.mp4|&#xA;&#xA;[f=fifo:fifo_format=flv:recover_any_error=0:drop_pkts_on_overflow=1:attempt_recovery=1:recovery_wait_time=1:max_recovery_attempts=100:&#xA;onfail=ignore:format_opts=flvflags=no_duration_filesize]rtmp://a.rtmp.youtube.com/live2/xxxxxxxxxxxxxxx&#xA;

    &#xA;