Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (13598)

  • Replacing segments of MPEG DASH video

    10 septembre 2018, par Mike19846546

    I am working with a converted DASH video with a manifest file containing a segmentList of all video segments. Is it possible to take multiple of these segments, encode an image overlay (using ffmpeg for example) and change the manifest file to correspond to the converted video segments combined with the original ones (those following the converted ones) without re-encoding the entire original video with the image overlays and then converting it to DASH ?

  • Beautify multiple ffmpeg commands

    14 février 2018, par Vitalis Hommel

    I am cutting video and put music to this video that contains of two concatenated audio files that are being overlayed by the original audio and cut to fit the length, while having a smooth fade in.

    It works, but it is clumsy. Is there a shorter version and if yes, is this shorter version quicker ?

    ffmpeg -y -i concat:"audio1.mp3|audio2.mp3" -acodec copy "audio1 + audio2.mp3"
    ffmpeg -y -ss 00:01:07.798 -t 00:00:04.000 -i "input.mp4" -af "afade=t=in:ss=0:d=1,afade=t=out:st='00\:00\:02.309':d=1" -c:v libx264 1.mp4
    ffmpeg -y -i 1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts 1f.ts
    ....
    ffmpeg -y -i "concat:1f.ts|2f.ts..." -bsf:a aac_adtstoasc -movflags faststart -c copy "target.mp4"
    ffmpeg -y -i "target.mp4" "Original.mp3"
    ffmpeg -y -i "target.mp4" -an -c:v copy "temp.mp4"
    ffmpeg -y -ss 00:01:54.321 -t 00:02:00.000 -i "audio1 + audio2.mp3" -c:v copy -af "afade=t=in:ss=0:d=4" "Musik.mp3"
    ffmpeg -i Original.mp3 -i Musik.mp3 -vn -filter_complex "[0:a]volume = 0.9:precision =fixed[a0];[1:a] volume=0.1:precision=fixed[a1];[a0] [a1] amix=inputs=2:duration=first:dropout_transition=3[a]" -map "[a]" vor.mp3
    ffmpeg -y -i "temp.mp4" -i "vor.mp3" -c copy "target.mp4"
  • Make video from individual frames (PNGs) and add audio track

    30 novembre 2020, par IntergalacticSpaceMonkey

    I have been working on a video processing tool that takes each frame from an input video and saves the result as a series of images. So, in essence, if my video has a length of 5 minutes, and has 25 fps, I will get 7500 individual frames.

    


    What I want is then to put this back into a video format, but at the same time also add the audio track from the original source. Is this possible with ffmpeg ? Also, would it be possible to automatically determine the fps on the original video source and then use this as fps value for ffmpeg for the video + audio track in the new video file ?