Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8473)

  • FFMPEG. Concatenate videos with a intro and music

    12 juillet 2019, par Micky

    I’m trying to merge videos with an intro and a background music.

    The intro.flv is a short file with video and audio.
    The other videos are without audio.
    ambientmusic.mp3 is audio to add to subsequent videos.
    A short fade for each file.

    ffmpeg -i intro.flv -i 0.mp4 -i 1.mp4 -i 2.mp4 -i ambientmusic.mp3 -filter_complex "[0] fade = in: 0: 25 [v0]; [1] fade = in: 0:25 [v1]; [2] fade = in: 0: 25 [v2]; [3] fade = in: 0: 25 [v3]; [v0] [v1] [v2] [v3] concat = 4 [v] "-map" [v] "-map a ./output/final.mp4

    Unfortunately the code only loads the first audio. Same result as

    -map 0: a

    If I use this instead it loads ambientmusic.mp3 on the whole video.

    -map 4: a

    But I’d like the audio of the Intro followed by the ambientmusic.mp3

    -map 0: a -map 4: a
  • videos won't load on PC with phpvibe and ffmpeg [on hold]

    29 octobre 2015, par user3137017

    I’m using phpvibe and ffmpeg on linux centos the issue that videos are quickly played on smartphone,smarttv but on PC it’s tike along time to play.

    So im using this command

    {ffmpeg-cmd} -i {input} -vcodec libx264 -s {ffmpeg-vsize} -threads 0 -preset ultrafast {output}.mp4
  • ffmpeg concat multiple FHD videos, but output is HD

    6 mars 2021, par Zawazawa

    I'm trying to combine multiple 1920x1080 videos(.MTS) with concat option, but output resolution is 1280x720.

    


    How can I combine multiple videos with keeping resolution ?

    


    Script is below.

    


    ffmpeg -safe 0 -f concat -i content_dir.txt -c:v copy -c:a copy -map 0:v -map 0:a output.MTS

    


    and the content of input text is below

    


    file '1.MTS'
file '2.MTS'
file '3.MTS'
file '4.MTS'


    


    the information of source videos is below.

    


    video codec h264_nvenc
audio codec ac3


    


    the output of command prompt is below.

    


    Input #0, concat, from 'E:\VideoMaker3\tmp_videos_o3_1\content_dir.txt':
  Duration: N/A, start: 0.000000, bitrate: 192 kb/s
    Stream #0:0: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], 15 fps, 15 tbr, 90k tbn, 30 tbc
    Stream #0:1(eng): Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s


    


    Thank you.