Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (90)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par 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 ;

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike 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 (...)

Sur d’autres sites (5885)

  • FFMPEG (libx264) "height not divisible by 2"

    3 octobre 2023, par Andy Hin

    I am trying to encode a .mp4 video from a set of frames using FFMPEG using the libx264 codec.

    



    This is the command I am running :

    



    /usr/local/bin/ffmpeg -r 24 -i frame_%05d.jpg -vcodec libx264 -y -an video.mp4


    



    I sometimes get the following error :

    



    [libx264 @ 0xa3b85a0] height not divisible by 2 (520x369)


    



    After searching around a bit it seems that the issue has something to do with the scaling algorithm and can be fixed by adding a -vf argument.

    



    However, in my case I don't want to do any scaling. Ideally, I want to keep the dimensions exactly the same as the frames. Any advice ? Is there some sort of aspect ratio that h264 enforces ?

    


  • Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    20 mars 2014, par user3441169

    I need to convert a video file from .flv to .mp4.

    When ever run the my application getting the exception.

    Please find the below my ffmpeg command along with error.

    Command :

    /usr/bin/avconv -y -i /home/veera/Desktop/videos/Prasad.Daily-2014-03-19.flv -vcodec libx264 -r 30000/1001 -b:v 250k -bt 250k -s 1280x720 -acodec libvo_aacenc -ar 32000 -ab 48k -crf 22 -profile:v baseline -level 1 -movflags +faststart -preset veryfast /home/veera/Desktop/videos/resized.mp4

    Output :

    ERROR>Stream mapping :

    ERROR> Stream #0:0 -> #0:0 (h264 -> libx264)

    ERROR> Stream #0:1 -> #0:1 (aac -> libvo_aacenc)

    ERROR>Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    ExitValue : 1

  • avcodec/aacps : Move initializing common stuff to aacdec_common.c

    24 septembre 2023, par Andreas Rheinhardt
    avcodec/aacps : Move initializing common stuff to aacdec_common.c
    

    ff_ps_init() initializes some tables for AAC parametric stereo
    and some of them are only valid for the fixed- or floating-point
    decoder, whereas others (namely VLCs) are valid for both.
    The latter are therefore initialized by ff_ps_init_common()
    and because the two versions of ff_ps_init() can be run
    concurrently, it is guarded by an AVOnce.

    Yet now that there is ff_aacdec_common_init_once() there is
    a better way to do this : Call ff_ps_init_common()
    from ff_aacdec_common_init_once(). That way there is no need
    to guard ff_ps_init_common() by an AVOnce any more.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/aacdec_common.c
    • [DH] libavcodec/aacps.c
    • [DH] libavcodec/aacps_common.c