
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (86)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (9316)
-
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 ??


-
avcodec/avuienc : Use ff_alloc_packet()
5 juillet 2015, par Michael Niedermayer -
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 !