Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (100)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (16692)

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