Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (85)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7623)

  • Ffmpeg : add a short audio at the end of a mp4 video

    24 août 2018, par user3409988

    What would be the command to add a short audio at the end of a video mp4 ?

    Let’s say the overlay audio lasts 3 sec. My video last 26 min.

    At 25:50 min (video duration - 10 sec) the overlay audio starts. The original audio of the video is silenced for 3 sec meanwhile the overlay audio runs. Then the original video sound comes back after 3 sec.

  • Best video format for video processing and converting to mp4

    29 août 2014, par Max Grigoriev

    I may have video in selected format and I should make some video changes - add logo to the whole video as example and then convert to mp4. Right now original file is in h.264/mp4 format too. As I understand to add logo original file should be decoded to frames then logo should be added and then frames should be encoded to H.264 and packed to mp4. Since I’m newbie in video processing maybe there’s a raw video format which removes decoding stage and it saves time and cpu ?

    Thanks

  • avconv audio and video out of sync

    28 juillet 2015, par bram_aerts

    I have a problem synchronizing audio and video using avconv.
    My goal is to process the video stream with opencv and later put the original audio back on the soundless video.
    The processed video stream will be at the same period of time as the original video, but will have a starting offset of a few minutes.

    I tried to simplify the problem with the following code :

    filename="inputvideo.mp4"
    avconv -i $filename -an -ss 30 test.mp4
    avconv -i test.mp4 -vn -ss 30 -i $filename -async 1 testmerged.mp4

    The second line removing the audio of the original video and shifting it 30 seconds (emulating what the opencv-code will do).
    The last line putting the video and original audio (shifted 30 seconds) back together.

    I assumed if I’d both shift them the same amount of seconds, they would be neatly synchronized, but curiously the video and audio in the resulting movie are out of sync. It is a static delay of about about 3 seconds (audio is behind).
    The same problem appears when making an interim mp3 file and using this as audio track for the resulting movie.

    When searching for a solution I found none that resolve this.
    I tried to overcome this issue by using the -vsync/-async options. But since there is no timestamp information in the video this doesn’t solve the problem.
    Even with the latest static build of ffmpeg the audio and video are still out of sync.

    Is there anything I overlooked or is it just impossible to sync audio and video in ffmpeg ?
    And if so, What would be a decent and simple replacement for the funcionality I’m looking for ?