
Recherche avancée
Autres articles (59)
-
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 ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (8180)
-
How to convert 1920x1200 HD video from MOV to MP4 without change of the original size [on hold]
25 août 2013, par user2618501I have a 1920x1200, 50 fps MOV file that I want to convert to MP4. I tried several converters on Mac but all create a MP4 file with 1728x1080 resolution.
I also tried to convert the video using ffmpeg. This created a very small MP4 file with the desired size but with a horrible quality. I used
ffmpeg -i my.mov -r 50 1920.mp4
Is there some better way to convert MOV to MP4 while keeping the original resolution and quality ?
-
FFmpeg - C - Encoding video - Set aspect ratio
22 août 2013, par KnossosI am decoding a video from mp2 and encoding to mp4.
The original file :
Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9]
The resulting file :
Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 720x576 [SAR 1:1 DAR 5:4]
As you can see, the resolution has not changed, but the aspect ratio has.
My question, is how can I set these values (SAR and/or DAR) ?
-
From YUV to Y4M ffmpeg adapting
14 janvier 2014, par roberutsuI was used this command to convet some YUV videos in m4v, note that I was using a video in CIF format :
ffmpeg -s cif -r 30 -i video.yuv -vcodec mpeg4 -g 30 -bf 2 -sameq video.m4v
Now I downloaded a 720p movie and want to have the same paramethers
ffmpeg -r 30 -i video.y4m -vcodec libx264 -g 12 -bf 2 -sameq video.m4v
I erased "-s cif" because I read that the headers in y4m already have the resolution.
I'm getting the error "frame hate not found".