Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (105)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (8480)

  • MSS1 and MSS2 : set final pixel format after common stuff has been initialised

    31 août 2012, par Alberto Delmás

    MSS1 and MSS2 : set final pixel format after common stuff has been initialised

  • avconv : split printing the final statistics into a separate function

    17 mars 2014, par Anton Khirnov
    avconv : split printing the final statistics into a separate function
    
    • [DH] avconv.c
  • ffmpeg final video no audio when combining images + video clips that have sound

    14 juillet 2022, par Cabdi Cilm

    I am using pytube to merge some downloaded clips and it downloads the clips with audio in the final folder, however when it combines the 2 clips together, there is no audio.

    


    config.IMG_WIDTH = None
final_clip = concatenate(clips, method="compose")
ffmpeg_write_video(
    final_clip,
    os.path.join(os.path.dirname(__file__), "final", "final_vid.mp4"),
    fps=60,
    codec="h264_amf",
    bitrate="8000k",
    logger="bar" if config.LOADING_BAR == "Y" else None,
    threads=5,
    ffmpeg_params=[
        "-tile-columns",
        "6",
        "-frame-parallel",
        "0",
        "-auto-alt-ref",
        "1",
        "-lag-in-frames",
        "25",
        "-g",
        "128",
        "-pix_fmt",
        "yuv420p",
        "-row-mt",
        "1",
    ],
)