Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (67)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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 (7373)

  • How to convert 1920x1200 HD video from MOV to MP4 without change of the original size [on hold]

    25 août 2013, par user2618501

    I 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 Knossos

    I 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 roberutsu

    I 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".