Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (47)

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

  • Merge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’

    15 juillet 2013, par Michael Niedermayer
    Merge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’
    

    * commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’ :
    mov : Seek back if overreading an individual atom

    Conflicts :
    libavformat/mov.c
    See : 6093960ae35c8d69c559b5604f683c2ea3f279ca
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c
  • How to merge videos and add audio in a single command using ffmpeg ?

    9 janvier 2017, par harishkumar329

    I use the following commands to concat audio-less video files to one and add audio to it,

    To concat individual videos,

    ffmpeg  -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -i 5.mp4 -filter_complex 'concat=n=5:v=1:a=0[out]'  -map '[out]' -strict -2 -y video_withoutaudio.mp4

    To add audio,

    ffmpeg -i video_withoutaudio.mp4 -i audio.mp4 -c:v copy -c:a aac -strict -2 video_withaudio.mp4

    is there a way to combine these two commands to one ?

    My requirement is to optimise the commands as I have 1000+ commands taking a lot of time to complete, hoping combining these two to one will save some time.

    Thanks in advance !

  • Augment FFmpeg command to apply to entire folder ? (Windows)

    10 novembre 2022, par Dee Gee

    I've got the command below working as I would like on individual files, but would like to be able to run it on all videos in a folder ( 600). Can anyone help me augment this to auto create the file name and run on all .mp4 files in a folder ?

    &#xA;

    Test folder would be : "c :\users\owner\videos\test files" in this example.

    &#xA;

    ffmpeg -ss 00:00:03.000 -i "c:\users\owner\videos\test files\test1.mp4" -vf "crop=w=&#x27;min(iw\,ih)&#x27;:h=&#x27;min(iw\,ih)&#x27;,scale=720:720,setsar=1" -vframes 1 test01.jpg&#xA;

    &#xA;