Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (87)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11487)

  • avformat/isom : lpcm in mov default to big endian

    1er novembre 2013, par Mark Himsley
    avformat/isom : lpcm in mov default to big endian
    

    It is my understanding that "Unless otherwise stated, all data in a
    QuickTime movie is stored in big-endian byte ordering" [1] in MOV files.

    I have a couple of thousand files, which technically are invalid because
    their sound sample description element 4CC is ’lpcm’ but its version is
    0 - and "Version 0 supports only uncompressed audio in raw (’raw ’) or
    twos-complement (’twos’) format" [2]

    Because isom.c only contains a mapping for 4CC ’lpcm’ to
    AV_CODEC_ID_PCM_S16LE, these files have their audio decoded as LE when
    it is actually BE.

    This commit adds AV_CODEC_ID_PCM_S16BE as the first match for 4CC ’lpcm’.

    [1]
    https://developer.apple.com/library/mac/documentation/quicktime/QTFF/qtff.pdf
    page 21
    [2]
    https://developer.apple.com/library/mac/documentation/quicktime/QTFF/qtff.pdf
    page 178

    Reviewed-by : Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/isom.c
  • 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;

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