
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (64)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (8160)
-
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 !
-
Does simple rescaling from 1080p to frame height of 720 lead to 720p ?
12 août 2015, par nburkI want to convert a 1080p to 720p and also lower resolutions eventually.
I have been using
ffmpeg
for all my video processing activities so far, and would simply approach this task using the following command :ffmpeg -i tos.mov -vf scale=-1:720 tos_0x720.mov
I understand that this will rescale my video to a new frame size having 720 pixels set as a fixed height and the width dynamically calculated.
What I am not sure about are the implications regarding the quality factors of the video when using
ffmpeg
this way.- Is it valid to assume that running this command will output a perfect HD 720p quality video ?
- What would be a benefit of using dedicated video conversion software to accomplish my goal compared to running the above command ?
-
libavcodec/qsvenc.c : Fix for too agressive height alignment during frame encoding...
9 juillet 2015, par Ivan Uskov