
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (12422)
-
JavaCV ffmpeg video/audio not syncing
3 janvier 2024, par lukaking98i have cut two videos into multiple segments and i am trying to rearangle them randomly. The problem is that the audio wont sync properly... All the segments have the same frame rate, 30 fps, same resolution, same audio and video codec (AV_CODEC_ID_AAC, AV_CODEC_ID_H264) and same bitrate.


FFmpegFrameRecorder recorder = new FFmpegFrameRecorder(outputFilePath, 1920, 1080);
 recorder.setFrameRate(30); 
 recorder.setFormat("mp4"); 

 recorder.setAudioChannels(2); 
 recorder.setSampleRate(44100); 
 recorder.setAudioCodec(avcodec.AV_CODEC_ID_AAC); 
 recorder.setVideoCodec(avcodec.AV_CODEC_ID_H264);
 recorder.setVideoBitrate(10_000_000); 

 recorder.start(); 
 
 Frame videoFrame;
 for (FFmpegFrameGrabber videoGrabber : videoGrabbers) {
 videoGrabber.start();
 while ((videoFrame = videoGrabber.grabFrame(true, true, true, false)) != null) { 
 recorder.record(videoFrame);
 } 
 }
 recorder.stop();
 recorder.release(); 



if i enable grabFrame boolean doAudio to true, the video would be 43s, if i disable the audio it would be 34s.
Also at the end the video ends at 34s and the audio continues until it finishes.


Any way i can sync this so the audio matches the video perfectly ??


-
How can I record video and clip into peace at the same time using ffmpeg ?
19 septembre 2023, par Noisy-JohnSmithHere is my question, I need to implement a function that satisfy the following :


- 

- Record your computer monitor(or any other video) into video in any format
- You have a button, every time you click the button, the process will ouput a 20 seconds clip with mp4 format.
.e.g :
I start a ffmpeg recording process at 00:00:00, and I click the button at 00:01:20, that will output a mp4 video from the Video recorded by step 1 from 60th second to 80th second
- The mp4 produce by step 2 is allow some bias for seconds. Maybe from 61st second to 79th second in step 2
- the clipping process is quick, need just few second










Is there any way to implement this function ?


-
Android - 360 video metadata
11 mai 2017, par XysSo with ffmpeg I’ve concatenated two 360 videos into one. The problem is that I lost all the 360 video metadata in the final video (so it’s not recognized as a 360 video anymore). If I use exiftool on the final video, I lack those metadatas :
- Spherical : true
- Stitched : true
- Stitching Software : Spherical Metadata Tool
- Projection Type : equirectangular
I’ve tried to inject those metadatas with ffmpeg, like this for example :
ffmpeg -i -metadata Spherical="true" -codec copy
I don’t get any errors doing that, but exiftool still doesn’t show the metadatas.
I know Google has a Python script that does this well, here .
But I would like to inject metadatas in my app as well, any help would be much appreciated,
thanks !