Recherche avancée

Médias (91)

Autres articles (60)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (11162)

  • Crop layout for Videos using touch for a Video Editor like Video Show or Filmora Go in android studio [closed]

    26 août 2020, par Rayhan Khan

    I am new to the android studio (Java) and video editing application. I am developing a video editor in android studio with FFMpeg Library.

    


    I want to create a crop layout with a rectangle layer on top of it to measure the details like :

    


    

crop video width : 900
crop video height : 500
left distance (x value) : 190
top distance (y value) : 110

                                    1280
****************************************************************************
*FULL VIDEO                           |                                    *
*                                    110                                   *
*                                     |                                    *
*            **************************************************            *
*            *                       900                      *            *
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*----190-----*                     CONTENT                500 *----190-----* 720
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*            *                                                *            *
*            **************************************************            *
*                                     |                                    *
*                                    110                                   *
*                                     |                                    *
****************************************************************************


    


    Please help. Thank you.

    


    Screenshot 1 :

    


    Image 1

    


    Screenshot 2 :

    


    Image 2

    


  • Revision 44eb577cf7 : invalid_file_test : convert test param from tuple to struct fixes visual studio

    12 juillet 2014, par James Zern

    Changed Paths :
     Modify /test/invalid_file_test.cc



    invalid_file_test : convert test param from tuple to struct

    fixes visual studio 9 + apple clang builds where the template type is
    interpreted as char[] rather than const char* :

    ::f1_’ : cannot specify explicit initializer for arrays
    error : array initializer must be an initializer list or string literal

    Change-Id : I27286ce341b2f7a09b6202caffd6b72f64fd2234

  • ffmpeg video CodecContext picture height can't be changed

    19 août 2015, par Kaidul Islam

    I am writing h264 encoded video data into mov container using ffmpeg. Initially I created video stream using avformat_new_stream and set video stream codec context’s attributes like this -

    // .......
    // .....
    pCodecCtx->bit_rate = VIDEO_BIT_RATE;
    pCodecCtx->width = 176;
    pCodecCtx->height = 244;
    pCodecCtx->pix_fmt = STREAM_PIX_FMT;    

    Then when I’ve received the first video frame, I tried to change the pCodecCtx->width and pCodecCtx->height to parsed W/H from SPS frame.

    SpsParser().GetPictureDimSpsFrame(pData, m_nPictureWidth, m_nPictureHeight);
    AVCodecContext* pCodecCtx = m_pVideoStream->codec;
    pCodecCtx->width = m_nPictureWidth; // 288
    pCodecCtx->height = m_nPictureHeight; // 352

    The video width has been changed successfully but the height can’t be overridden. When I tried to see the media file properties using mediainfo dump.mov, it showed :

    Width: 288 // well, changed
    Height: 244 // not changed
    Original height: 352

    Why the height can’t be overridden ? What to do ? Thanks in advance !