Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (32)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4223)

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


    


  • fftools/ffmpeg_demux : log final stats to demuxer context

    31 mars 2023, par Anton Khirnov
    fftools/ffmpeg_demux : log final stats to demuxer context
    
    • [DH] fftools/ffmpeg_demux.c