
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 (73)
-
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 ;
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (9281)
-
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" ';
}