
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (80)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (5275)
-
Trim with transition/fade using FFMPEG given a list of timestamps
19 janvier 2024, par realsarmI have a video and a list of timestamps that I want to filter.


[
 {
 "timestamp": [10, 20],
 "state": true
 },
 {
 "timestamp": [30, 40],
 "state": false
 },
 {
 "timestamp": [50, 60],
 "state": true
 },
 {
 "timestamp": [70, 80],
 "state": true
 }
]



I have a script like this to trim based on state.


video_path = Path(video_in.name)
 video_file_name = video_path.stem

 timestamps_to_cut = [
 (timestamps_var[i]['timestamp'][0], timestamps_var[i]['timestamp'][1])
 for i in range(len(timestamps_var)) if timestamps_var[i]['state']]

 between_str = '+'.join(
 map(lambda t: f'between(t,{t[0]},{t[1]})', timestamps_to_cut))

 if timestamps_to_cut:
 video_file = ffmpeg.input(video_path)
 video = video_file.video.filter(
 "select", f'({between_str})').filter("setpts", "N/FRAME_RATE/TB")
 audio = video_file.audio.filter(
 "aselect", f'({between_str})').filter("asetpts", "N/SR/TB")

 output_video = f'./videos_out/{video_file_name}.mp4'
 ffmpeg.concat(video, audio, v=1, a=1).output(
 output_video).overwrite_output().global_args('-loglevel', 'quiet').run()



How can I smooth out this trimming like adding a fade or smoothing transition each time state is false ?


-
Convert m4a to wav, but respect edit list ffmpeg [closed]
4 février 2024, par user3413723I'm using ffmpeg to convert a m4a file to wav. The problem it the m4a file has an edts list that makes the audio start after a bit. I need this to be included so the wav is silent for that time. The audio has to be synced correctly. Any ideas ? I tried these :


ffmpeg -i short.m4a -acodec pcm_s16le -ac 1 -ar 16000 -use_editlist 1 out.wav

ffmpeg -i short.m4a -acodec pcm_s16le -ac 1 -ar 16000 -advanced_editlist 0 out.wav



no luck with either. Any ideas ? Here is the file


https://drive.google.com/file/d/10x3QFjT_67ByfgXtiNFE1RlLAcwG68e5/view?usp=sharing


Here is the debugger where you can see it adds time at the beginning. Just upload the m4a file and you can see the info about the audio track. You can also see it if you do
ffprobe file.m4a
like this :Duration: 00:00:14.84, start: 0.167007, bitrate: 228 kb/s


mp4 inspector :
https://gpac.github.io/mp4box.js/test/filereader.html


-
Show the filename being processed when using an input list and an error occurs ?
17 février 2024, par GeoNomadI am concatenating a large number of short files using a list.


One in a hundred seems to have an error of one sort or another which stops the processing.


- 

-
Is there a way to tell ffmpeg to just drop the bad frame or even bad file and continue ?


-
If not, is there a way to know what file has the error so I can just remove that file from the list ?








ffmpeg -safe 0 -f concat -i list.txt -c copy FEEDER.mp4


I have tried -loglevel verbose, but that did not help.


[concat @ 0000022d22b23480] h264_mp4toannexb filter failed to receive output packet
Error demuxing input file 0: Invalid data found when processing input
Terminating demuxer thread 0
list.txt: Invalid data found when processing input



How do I find out which file of the several hundred files in list.txt is the culprit ?


As it happens, these files have time stamps and I can find it by looking at the last output frame and then deleting the appropriate file. But it seems there should be a better way.


FWIW I am working in Windows cmd.exe or Powershell Terminal


-