Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (63)

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

  • moviepy ffmpeg stderr to tkinter interface

    1er avril 2018, par Alexander Perlman

    Hi stackoverflow community,

    I’m a novice python hobbyist. I wrote a python / ffmpeg script using moviepy that batch concatenates videos. I then designed an interface using tkinter.

    Now I want to redirect the stderr output from FFMPEG to the tkinter interface so that users can review the progress directly in app instead of needing the Sublime text console.

    I’ve done a lot of research but I’m in way over my head. Any tips would be greatly appreciated.

    Here’s the moviepy component. The gui is pretty cut and dry

    #import video clips
    mainvid = VideoFileClip(fullpath, audio=True)
    intro = VideoFileClip("intro.mp4", audio=True)
    black = VideoFileClip("black1s.mp4", audio=True)

    #concatenate video clips
    final = concatenate_videoclips([black, intro, mainvid, black]) final.fps=24

    #actually write file
    final.write_videofile(output, audio=True, audio_fps=48000, ffmpeg_params=[ "-r","24000/1001", "-b:v", "50M", "-level:v", "4.1", "-c:a", "libvo_aacenc", "-b:a", "256K", "-colorspace", "bt709"])
  • FFMPEG not creating thumbnails

    12 juin 2016, par MixedVeg

    My ffmpeg command in php is

    echo $cmd_thumbnail_create = ("\"$ffmpeg\" -i \"" . $dir.$videopath . "\" -an -ss $getFromSecond \"" . $dir.$thumbnailpath ."\"");
    exec($cmd_thumbnail_create);

    Output of which is

    "C :\FFMPEG\bin\ffmpeg" -i "C :/xampp/htdocs/final/uploaded_videos/intro_en.mp4" -an -ss 6 "C :/xampp/htdocs/final/thumbnail/intro_en.jpg"

    This when copied and executed on the command prompt creates the thumbnail at proper location with proper name.

    Any suggestions ?

  • Overlaying video with ffmpeg

    11 novembre 2012, par elee

    I'm attempting to write a script that will merge 2 separate video files into 1 wider one, in which both videos play back simultaneously. I have it mostly figured out, but when I view the final output, the video that I'm overlaying is extremely slow.

    Here's what I'm doing :

    1. Expand the left video to the final video dimensions

      ffmpeg -i left.avi -vf "pad=640:240:0:0:black" left_wide.avi

    2. Overlay the right video on top of the left one

      ffmpeg -i left_wide.avi -vf "movie=right.avi [mv] ; [in][mv] overlay=320:0" combined_video.avi

    In the resulting video, the playback on the right video is about half the speed of the left video. Any idea how I can get these files to sync up ?