
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (57)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (...)
Sur d’autres sites (6728)
-
Convert video to exactly the same stream type of other video in ffmpeg
14 avril 2014, par user1750371Maybe this is a silly question, didn't manage to find a clear answer anywhere.
I need to use ffmpeg to convert a given video to exactly the same format another video has, including bitrate, video and audio codecs... everything. The goal is to concat both videos into a single file, independently of the original formats.
Is there an easy way to do this or do I have to build a complex command line input specifying all parameters ?
The concat demuxer is not enough... maybe something with filter_complex ?
Thanks and sorry for the bother.
-
FFMPEG trim video resulting not moving videos and black video with audio
13 juin 2023, par RafliiiI tried to trim my video based on start and end time with the following code :


ffmpeg -ss 02:06:30.500 -to 02:06:32.417 -i movie.mp4 -c copy output.mp4


The output video is not moving video and some of them are black videos with audio. What should I do ?




What should I do ?


-
How to put watermak on video with FFMPEG,without resizing the watermark because of video resolution ?
22 mai 2014, par Shahbaz YounisI’m looking for a way that the watermark picture does not get resized,if the video resolution is high or less. Right now I have this problem, if I upload a video like 720p the watermark is really small and when I upload a video that is 240p the watermark is really big. I would just like it to be only one size. Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where I put it ? Here’s the code I’m using right now
if ($ffmpeg_ver == "old") {
$watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
} else {
$watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
}