Recherche avancée

Médias (91)

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7002)

  • Calculate PSNR and MSE for individual frames using ffmpeg

    26 juin 2015, par Mayank Agarwal

    I have an avi file.i am converting avi file to .mp4 codec H.264 and ain second case to .mp4 file codec H.265.Now i want to calculate the PSNR/MSE/MSAD between the ref file(avi file) and the converted mp4 file using ffmpeg.Came across ffmpeg command line filters for PSNR and SSIM calculation but it gives the average PSNR value not the PSNR value frame by frame.Also i want to do it using code and not using command line.Read several examples in demuxing.c it is separating the whole file into frames in av_read_frame before calling decode
    but how can i convert pkt to frame and able to calculate PSNR or MSE values.

    Regards
    Mayank

  • Revision 3ba9dd4165 : Enable inter predictor for rectangular block size Combine superblock inter pred

    12 avril 2013, par Jingning Han

    Changed Paths : Modify /vp9/common/vp9_reconinter.c Modify /vp9/common/vp9_reconinter.h Modify /vp9/decoder/vp9_decodframe.c Modify /vp9/encoder/vp9_encodeframe.c Modify /vp9/encoder/vp9_rdopt.c Enable inter predictor for rectangular block size Combine superblock inter predictors into a (...)

  • How to extract specific audio track (track 2) from mp4 file using ffmpeg ?

    3 mai 2019, par flash

    I am working on a mp4 file (36017P.mp4) in which I want to extract Track 2 -[English] using ffmpeg.

    enter image description here

    I tried with the following command on terminal but it seems to extract Track 1 - [English] :

    ffmpeg -i 36017P.mp4 filename.mp3

    Problem Statement :

    I am wondering what changes I need to make in the ffmpeg command above so that it extract Track 2 -[English] from mp4 file.