
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (60)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 2013Puis-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, parPour 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 KhanI 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 :




Screenshot 2 :




-
Revision 44eb577cf7 : invalid_file_test : convert test param from tuple to struct fixes visual studio
12 juillet 2014, par James ZernChanged Paths :
Modify /test/invalid_file_test.cc
invalid_file_test : convert test param from tuple to structfixes 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 literalChange-Id : I27286ce341b2f7a09b6202caffd6b72f64fd2234
-
ffmpeg video CodecContext picture height can't be changed
19 août 2015, par Kaidul IslamI am writing h264 encoded video data into
mov
container using ffmpeg. Initially I created video stream usingavformat_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
andpCodecCtx->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; // 352The 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: 352Why the height can’t be overridden ? What to do ? Thanks in advance !