Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9912)

  • 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",
    ],
)