Recherche avancée

Médias (91)

Autres articles (87)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • 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 (11501)

  • Merge pull request #1589 from Arkni/spacing-style-issues

    26 septembre 2015, par staabm
    Merge pull request #1589 from Arkni/spacing-style-issues
    

    [WIP] Spacing style issues

  • Issues with ffmpeg image options

    5 janvier 2023, par Aenye_Cerbin

    I've some issues with combining multiple image options in ffmpeg.
My sample command with all options I want to change :

    


    ffmpeg -y -i sample.jpg -qscale:v 2 -pix_fmt rgb24 -vf scale=640:480 eq=brightness=0.5:contrast=0.5:saturation=0.5 -f png output.png


    


    I've several issues with this command and have been trying to rewrite it for a while, here is what I found :

    


      

    1. after -vf I cannot specify both scale and eq, if I use only one it will work.
    2. 


    3. I cannot for some reason use -f png option.
    4. 


    


    For 1. I got such results (for both removed -f png option) :

    


      

    • If I have both scale and eq :
      [NULL @ 0000024581fd1a80] Unable to find a suitable output format for 'eq=brightness=0.5:contrast=0.5:saturation=0.5' eq=brightness=0.5:contrast=0.5:saturation=0.5: Invalid argument
    • 


    • If I remove scale or eq it works
    • 


    


    Is there any way to combine scale with options such as brightness and contrast. If I want to add another effects such as : colorchannelmixer how to add it ?

    


    Why am I getting this error with -f png option, how can I specify the format ?

    


  • lavc/qsvenc : fix hevc vps extradata issues

    25 mars 2019, par Zhong Li
    lavc/qsvenc : fix hevc vps extradata issues
    

    cbs trace qsv vps header failed due to some reasons :
    1. vps_temporal_id_nesting_flag is not set but spec required it must to
    be 1 when vps_max_sub_layers_minus1 is equal to 0.
    2. vps_num_hrd_parameters is not set and written.
    3. other issues in ff_hevc_encode_nal_vps() (fixed in pervious commit_id : 520226b683).

    Reproduce : ffmpeg -hwaccel qsv -v verbose -c:v h264_qsv -i bbb_sunflower_1080p_30fps_normal.mp4 -vframes 1
    - c:v hevc_qsv -bsf:v trace_headers -f null -

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/qsvenc_hevc.c