
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (50)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (4183)
-
FFMPEG, any video to 16:9
13 décembre 2019, par UniversalHelp me find a command or script that will convert any video to 16:9, h264 and 2500kbps. I have a server where people upload videos of different quality, size and length. It can be either 640x480 or 1216x2160. Ultimately, I need to get any resolution to 16:9 (with black borders, if needs) and bitrate without visible loss of quality, which will be acceptable for online broadcasting.
I have this command, but it does not check the resolution of the video. And if the video was 560x448 1000kbps and 700mb, then after conversion it will be 1280x720 3000kbps and 1.5gb, that’s not right.
ffmpeg -i 5.avi -vcodec libx264 -crf 23 -preset veryfast -vf scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1 -tune zerolatency highoutput.mp4
-
Can't figure out stream mapping/commands
11 avril 2020, par Jessie WilsonHelp with stream mapping/commands



I'm fairly new to FFMPEG. I've always encoded with GUI's. However, I've been setting up batch files to make some things easier for me !



I'm taking a source file that is1080p video



dts 5.1 1500 kb stream



with english subs.



I'm wanting to copy the video and take the DTS track, convert to AAC 2.0 at 192k and make a secondary audio track ac3 5.1 640k.



This is the command i'm trying to use but no matter how many times I run it the audio channels and or bitrates get mixed up.



for %%a in ("*.mkv") do ffmpeg -i "%%a" ^
-map 0:0 -map 0:1 -map 0:1 -map 0:2 ^
-c:v:0 copy ^
-c:a:0 aac -ac:0 2 -b:a:0 192k ^
-c:a:1 ac3 -ac:1 6 -b:a:1 640k ^
-c:s:0 copy ^
"\TEST%%~na.mkv"
pause




Any help would be appreciated !


-
any solution to Matlab VideoReader on compressed avi file on Mac ?
3 décembre 2016, par Peng JL-ZhulinI am working on some video gamma correction. And I used some sample avi uncompressed clips from online, everything works just fine.
But once I try to use our own .avi video 1280x800 20 second about 400mb, Matlab can not read file through ’VideoReader’.I’m really sure the problem is that my video is compressed avi. And I have tried the following to solve it :
- some say in mac os, download gstreamer 0.10 may help. I did, but problem remained.
- i tried to use ffmpeg to convert the compressed avi to uncompressed avi (i dont think i am supposed to do this tho). but the new uncompressed video became a mess.
So, I was thinking, when working on compressed avi file in MATLAB in mac, is there a godd routine that people follow ?
Thanks a lot.