Recherche avancée

Médias (91)

Autres articles (58)

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

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

  • I need to cut MP4 videos. A part at the beginning and a part at the end in a batch fashion

    26 janvier 2020, par Eric Lalonde

    I have several training videos. All .MP4s.

    I want to remove 3.5 seconds from the beginning and 4.5 seconds from the end of the entire folder of them...

    I know of ffmpeg and ffprobe - but my knowledge and mastery of them both is limited.

    Can someone provide a script for this, or, at least a program that will make this easy for me ? I keep searching and I reach dead-ends everytime or scripts that do not work.

    I am also open to using Linux/Windows but not mac.

    edit : First part completed. Will keep on studying this command further in order to learn batch ; Here’s the easy part, how to batch trim an entire folder of MP4s :

    for %%a in ("*.mp4") do ffmpeg -i "%%a" -ss 00:00:03.5 -vcodec copy -acodec copy "newfiles\%%~na.mp4"

    pause
  • Revision 43cec44bbf : Remove 'local' variables in rtcd.sh These aren't required to be supported by sh

    21 février 2013, par John Koleszar

    Changed Paths : Modify /build/make/rtcd.sh Remove 'local' variables in rtcd.sh These aren't required to be supported by sh. Change-Id : I54d641a2377531e0b320676d29d4ecdeee82288a

  • add a part of an audio file to a certain part of video , in loop using FFmpeg

    5 octobre 2017, par 1234567

    I have two files one Audio and one video file,

    The audio file is 1 min long,

    and the video file is 2 min 30 sec long,

    I want to add a part of audio, with loop not the whole audio file to the video , using FFmpeg

    say from 15 sec to 33 sec of the audio file

    to a part of video say from 45 sec to 1min 30 sec

    this code has worked with a single file which is 18 sec long , which is added to a certain part of video with a loop

    "-y","-i",j,
                           "-filter_complex",
                           "amovie="+audio+":loop=999,asetpts=N/SR/TB," +
                                   "atrim=0:45,adelay=45000|45000,aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=1.5[a1];" +
                                   "[0:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=2.0[a2];" +
                                   " [a1][a2]amerge,pan=stereo:c0code>

    the problem is If I have a 1 min long audio file and just want to extract a 18 sec part form it , and add it to video in a loop how can that be done