Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (79)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8996)

  • fftools/ffmpeg : reduce -re to -readrate 1

    2 mai 2023, par Anton Khirnov
    fftools/ffmpeg : reduce -re to -readrate 1
    

    They are exactly equivalent, so there is no point in maintaining a
    separate flag for -re.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_demux.c
  • lavfi/vf_libplacebo : switch to activate()

    6 mai 2023, par Niklas Haas
    lavfi/vf_libplacebo : switch to activate()
    

    To present compatibility with the current behavior, we keep track of a
    FIFO of exact frame timestamps that we want to output to the user. In
    practice, this is essentially equivalent to the current filter_frame()
    code, but this design allows us to scale to more complicated use cases
    in the future - for example, insertion of intermediate frames
    (deinterlacing, frame doubling, conversion to fixed fps, ...)

    • [DH] libavfilter/vf_libplacebo.c
  • Converting webm to mpeg-ts loses audio channel

    2 juin 2023, par Nobunaji

    I'm using the following ffmepg command :

    


    ffmpeg -i path/to/input.webm -c:v libx264 -c:a copy -f mpegts path/to/output.ts


    


    Or the equivalent in fluent-ffmpeg :

    


    const ffmpeg = require('fluent-ffmpeg');

ffmpeg('path/to/input.webm')
  .videoCodec('libx264')
  .audioCodec('copy')
  .output('path/to/output.ts')
  .format('mpegts')
  .run();



    


    My input file has 2 audio channels (stereo), a bitrate of 64kbps, an audio sample rate of 48.000 kHz and is encoded in opus. But for some reason, my output file loses all of that.

    


    Do i not understand what -c:a | .audioCodec('copy') copy does ?

    


    According to this website taken from this wikipedia article opus is a supported codec in MPEG files.