
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (104)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (13775)
-
How to convert MKV movies 5.1 audio tracks to 2.0 (Stereo) but keep the original ones
9 avril 2018, par aur0nTo solve a problem I had where 5.1 movies had really quite dialogues, I’m using FFMPEG to convert every audio track of my MKV movies to an 2.0 track with audio normalization, leaving video and subtitles intact.
Here’s what the command looks like :
for /r %%i in (*.mkv) do (
@ffmpeg.exe -hide_banner -v 32 -stats -y -i "%%i" -map 0:v -map 0:a -map 0:s? -c:s copy -c:v copy -acodec ac3 -ac 2 -ar 48000 -ab 640k -af %aproc2% -f matroska "%%~ni [Stereo].mkv"
)What I’d like to do now is having these converted audio track added to the MKV among the 5.1 tracks, and not replacing the originals, which I may want in future.
I’m not really an expert of FFMPEG, so I’m looking for some help.
-
Revision 6ff4f19269 : Remove a unused sub-pixel search The original iterative search was replaced by
19 décembre 2013, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_mcomp.c
Modify /vp9/encoder/vp9_mcomp.h
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Remove a unused sub-pixel searchThe original iterative search was replaced by subpel_tree search,
and was not used anymore.Change-Id : I998b38e1cb0ee359a08b2410d0766dbf183ab071
-
FFMPEG Scan and Convert Movie files and Delete Original - reclusively
29 mai 2021, par Frodo BagginsI have folders within folders that have movie files, some of them are .mp4, .avi or .mov/.MOV. I need to re-compress them into H264 High Quality (Lets say, 10MBPS) and delete the originals when complete. I have the following code, but this is for audio and I don't know where to go from here. I am using Mac terminal.


for i in *.ogg; do ffmpeg -i "$i" -b:a 320000 "${i%.*}.mp3"; done