
Recherche avancée
Autres articles (87)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar 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, parChaque 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, parL’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 Himsleyavformat/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 178Reviewed-by : Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
I would like to batch-trim mp4 videos in a folder with command line (ffmpeg ?), however the sound is delayed
28 janvier 2023, par pdeliI 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) :


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


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


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


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


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


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


My questions :


- 

- 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 ?
- in other words, can't the sound be by default trimmed by as much as the video in the first place ? If yes, how ?







System used :


- 

- macOS Ventura (13.1, Intel)
- Shell and version : zsh 5.8.1 (x86_64-apple-darwin22.0)
- ffmpeg version 5.0 built with Apple clang version 13.0.0 (clang-1300.0.29.30)








-
Podcast : Transform images and audio in a Podcast [on hold]
27 juin 2013, par Henry MazzaGarage 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 ?