
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (78)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (9523)
-
Want to convert my 16:9 size MKV video to 4:3 size AVI video file
19 septembre 2012, par Bimal RekhadiyaI have a video in MKV format and it's size is 720x304 (16:9 ratio) size video.
I want to convert it to AVi format (using xvid video codec). The output file size should be 480x360 (4:3 ratio) and also want to keep the original (16:9) ratio so it should be cinemascope (black areas at top and bottom).
I am on Ubuntu linux OS so I can use mencoder, avconv(ffmpeg) or any tool that work on Linux.
I am trying this command :
avconv -i sample.mkv -vcodec libxvid -r 25 -b 1200 -aspect 4:3 -q 1 t.avi
But the problem is that the video is stretched to 4:3 and I want to keep original video's ratio and want to add black boxes at top and bottom so it will look cinemascope.
Please provide me command to do this.
-
Converted mp4 not displaying image which was added with FFMPEG [duplicate]
3 décembre 2015, par AviThis question already has an answer here :
-
ffmpeg PNG to mp4 - Black screen
1 answer
I am converting a mp3 to a mp4 and simultaneously adding an image to it using FFMPEG.
Here is the command I am using.
ffmpeg -loop 1 -i ../image.jpg -i "track 1.mp3" -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest -vf scale=800:400 "track 1".mp4
The image appears when the video is played in a web browser. However, it doesn’t appear when the video is played on Windows Media Player or on QuickTime.
Any ideas why ?
-
ffmpeg PNG to mp4 - Black screen
-
Filter the video while keeping the bitrate (FFmpeg) [migrated]
20 décembre 2013, par TimofeyFor experimental purposes, I need to filter my video (using
-vf
option) and change, say, brightness, but keep the same bitrate as in original video.Just for testing purposes, I change RGB values to make video completely black using line like this :
ffmpeg -i input.mp4 -vf lutrgb='r=0.0*val:g=0.0*val:b=0.0*val' output.mp4
So far, I tried to specify bitrate manually by adding
-b
,-minrate/maxrate
and-q
options to this line, but no matter what I do, FFmpeg keep reducing the br of the output video to just a few kilobytes.And my question is - if it's possible to keep bitrate on the same level even if if I change RGB values to be completely black (as an extreme case).