Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (4689)

  • FFmpeg INTEL QuickSync VAAPI FAILURE [unknown libva error]

    11 juin 2019, par Ahmet Gürer

    I have problems with FFmpeg and Intel QuickSync. If I start my ffmpeg command from shell it works correctly. But if I want to start the same ffmpeg command from an cronjob I get Failure with quicksync

    My command is :

    /bin/ffmpeg -vsync passthrough -copytb 1 -hwaccel qsv -probesize 5000000 -analyzeduration 16000000 -c:v hevc_qsv -recv_buffer_size 67108864 -i source -filter_complex "[v:0]hwdownload,format=pix_fmts=nv12[format:0]; [format:0]cvdelogo=filename=file:buffer_queue_size=150:detect_interval=25:score_min=0.4:scale_min=0.75:scale_max=1.25:padding_left=10:padding_right=10:padding_top=10:padding_bottom=10[cvdelogo]; [cvdelogo]split=outputs=1[hwupload:0]; [hwupload:0]hwupload=extra_hw_frames=10[map:v:0]" -map [map:v:0] -c:v h264_qsv -flags:v +global_header+cgop -preset:v veryfast -g 250 -b:v:0 6200k -maxrate:v:0 6200k -bufsize:v:0 6200k -map a:0 -c:a copy -f hls -hls_flags delete_segments -hls_time 10 -hls_list_size 6 output.m3u8

    If I run that on terminal everything works. But if I want to start it from php with shell_exec command over an cronjob I get this failure :

    [AVHWDeviceContext @ 0x2cc7b80] Failed to initialise VAAPI connection: -1 (unknown libva error). Error creating a QSV device

    I don’t know why FFmpeg is not founding the vaapi device from cronjob, pls help me out of this issue.

    Thanks

  • I want to know what is in unknown [WARNING : Unknown codec unknown]

    15 juin 2019, par aomi taka

    I want to new music_bot in my discord.ch
    so I found google cloud platform and Just-some-bot in git hub (https://github.com/Just-Some-Bots/MusicBot)
    I did just fallow to step ubuntu 16.04 in this site (https://just-some-bots.github.io/MusicBot/installing/ubuntu/)

    and I got a problem

    There was no problem running the bot, but An error occurred when I entered a command to download YouTube. [!play url]
    WARNING : Unknown codec unknown

    So I searched for 3 hours for WARNING : Unknown codec unknown
    I couldn’t find anything like that.

    I’ve tried to youtube-dl -U, FFMPEG update, change the locations, make another one, I’ve changed all the progress codes so that I can see them. [in musicbot’s options], change the ubuntu 18.04 [and got the same problem]

    > WARNING: Unknown codec unknown WARNING: Unknown codec unknown WARNING:
    > Unknown codec unknown WARNING: Unknown codec unknown WARNING: Unknown
    > codec unknown WARNING: Unknown codec unknown WARNING: Unknown codec
    > unknown WARNING: Unknown codec unknown WARNING: Unknown codec unknown
    > [FFMPEG:player][44.687691689] Data from ffmpeg: b'Output file #0 does
    > not contain any stream\n' Output file #0 does not contain any stream
  • avformat/matroskadec : Accept more unknown-length elements II

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Accept more unknown-length elements II
    

    Up until now, one last kind of unknown-length element hasn't been
    properly handled : Unknown-length elements that are supposed to be
    skipped, i.e. the level 1 elements that might reside after the
    clusters.

    This commit changes this. To do this, ebml_parse got a mode that
    essentially tries to skip everything except when parsing is needed
    (namely for unknown-length elements for which parsing is necessary
    as they can't be skipped). This mode is selected by using a NULL
    as destination where the parsed data should be written to.
    It is used to parse the level 1 elements in matroska_parse_cluster.

    The syntax list used for parsing must of course include links to
    the syntax of all the master elements that might need to be parsed.
    In other words : Instead of matroska_clusters (which contained every
    level 1 element except clusters as EBML_NONE elements designated to
    be skipped) matroska_segment is needed and used ; matroska_clusters has
    been removed.

    Furthermore, matroska_segment has been reordered so that clusters are at
    the front as this is now the most common case for this list.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c