Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (90)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10558)

  • Merge commit 'aba5b94859ef1cb8f517dc64bce86a3021316ae8'

    12 octobre 2017, par James Almer
    Merge commit 'aba5b94859ef1cb8f517dc64bce86a3021316ae8'
    

    * commit 'aba5b94859ef1cb8f517dc64bce86a3021316ae8' :
    Add Apple Pixlet decoder
    libavutil : add av_mod_uintp2
    intmath : add faster clz support

    This commit is a noop, see
    0dd8a3d71e2c01d42e868d6c6b8974fadfcc529e
    d13e521cc861e791545dd6022fbf93f821e33618
    73651090ca1183f37753ee30a7e206ca4fb9f4f0

    Merged-by : James Almer <jamrial@gmail.com>

  • Podcast : Transform images and audio in a Podcast [on hold]

    27 juin 2013, par Henry Mazza

    Garage Band and others can make podcasts with embedded images to make a slideshow. Is there a way to do this in the command line with tools like ffmpeg ?

  • I would like to batch-trim mp4 videos in a folder with command line (ffmpeg ?), however the sound is delayed

    28 janvier 2023, par pdeli

    I found the following command line to batch-trim videos in a folder, however it delays the sound of all the videos by a few seconds (sound comes after the video) :

    &#xA;

    for file in /path/to/folder/*.mp4; do ffmpeg -i "$file" -ss 00:00:08 -c copy -avoid_negative_ts 1 "${file%.*}_trimmed.mp4"; done

    &#xA;

    These are the alternatives I found, however none of them solve the problem :

    &#xA;

    for file in /path/to/folder/*.mp4; do ffmpeg -i "$file" -itsoffset -0.5 -ss 8 -c:v copy -c:a copy "${file%.*}_trimmed.mp4"; done

    &#xA;

    for file in /path/to/folder/*.mp4; do ffmpeg -i "$file" -ss 8 -async 1 -c:v copy -c:a copy "${file%.*}_trimmed.mp4"; done

    &#xA;

    for file in /path/to/folder/*.mp4; do ffmpeg -i "$file" -ss 8 -map 0:v -map 0:a -c:v copy -c:a copy "${file%.*}_trimmed.mp4"; done

    &#xA;

    I have a hard time finding by how much time the sound is delayed.

    &#xA;

    My questions :

    &#xA;

      &#xA;
    • what would be the command line to batch-trim the beginning of all the videos in a folder with the sound properly "aligned" to the video ?
    • &#xA;

    • in other words, can't the sound be by default trimmed by as much as the video in the first place ? If yes, how ?
    • &#xA;

    &#xA;


    &#xA;

    System used :

    &#xA;

      &#xA;
    • macOS Ventura (13.1, Intel)
    • &#xA;

    • Shell and version : zsh 5.8.1 (x86_64-apple-darwin22.0)
    • &#xA;

    • ffmpeg version 5.0 built with Apple clang version 13.0.0 (clang-1300.0.29.30)
    • &#xA;

    &#xA;