
Recherche avancée
Autres articles (77)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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
Sur d’autres sites (5894)
-
how can I link FFmpeg and OpenCV by building from source code in my c++ project ? [closed]
27 juin 2020, par abid ahsanI've gone through so many Cmake and Other tutorials to link libraries correctly but things are really convoluted and I can't find the best to get on with my work. I want to start a c++ project using FFmpeg and OpenCV and I want a link library using only Cmake without any package manager. I want to keep these 3rd party libraries in my project directory so that, I can clone my repo from Github and build easily without any dependency. What is the best way to do link 3rd party libraries...


(sorry for my bad usage of English. I really need help)


-
ffmpeg gif watermark played 1 times
5 mai 2014, par user3605000I try to insert gif watermark in ffmpeg, but gif image played 1 times, and then i have just static image. I need the animation to play all the time.
ffmpeg -i rtmp://x.x.x.x -vf "movie=logo.gif [logo]; [in][logo] overlay=10:10 [out]" -c:v libx264 -an -f flv rtmp://x.x.x.x
How can I achieve this ? Sorry for my bad english
-
FFMPEG - convert video with multiple audio and subtitles
3 juillet 2022, par Armitage2kI have a MKV video file with 1x video track, 3x audio tracks and 2x subtitle tracks.


Now, I use the code below convert the video to
x265
but sadly have no control over which audio and subtitles to convert. Can someone advise how I can tweak the statement to use audio track #0:3 and subtitle #0:4 ?

ffmpeg -i INPUT.mkv -c:v libx265 -c:a copy -x265-params crf=25 OUTPUT.mkv


This is what the
.mkv
file contains :

Stream #0:0(jpn): Video: h264 (High), yuv420p(progressive), 1280x692 [SAR 1:1 DAR 320:173], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
 Stream #0:1(eng): Audio: aac (LC), 48000 Hz, stereo, fltp (default)
 Metadata:
 title : English 2.0 channel AAC (Original)
 Stream #0:2(eng): Audio: aac (LC), 48000 Hz, stereo, fltp
 Metadata:
 title : English 2.0 channel AAC (New)
 Stream #0:3(jpn): Audio: aac (LC), 48000 Hz, stereo, fltp
 Metadata:
 title : Japanese 2.0 channel AAC
 Stream #0:4(eng): Subtitle: ass (default)
 Metadata:
 title : Signs/Karaoke [Kametsu]
 Stream #0:5(eng): Subtitle: ass
 Metadata:
 title : Re-styled [Kametsu]
 Stream #0:6: Attachment: ttf
 Metadata:
 filename : nyala.ttf
 mimetype : application/x-truetype-font
 Stream #0:7: Attachment: ttf
 Metadata:
 filename : fontastique.ttf
 mimetype : application/x-truetype-font
 Stream #0:8: Attachment: ttf
 Metadata:
 filename : ARIALNB.TTF
 mimetype : application/x-truetype-font
 Stream #0:9: Attachment: ttf
 Metadata:
 filename : BorisBlackBloxx.ttf
 mimetype : application/x-truetype-font
 Stream #0:10: Attachment: ttf
 Metadata:
 filename : CODE2000.TTF
 mimetype : application/x-truetype-font
 Stream #0:11: Attachment: ttf
 Metadata:
 filename : CronosPro-Semibold.ttf
 mimetype : application/x-truetype-font
Stream mapping:
 Stream #0:0 -> #0:0 (h264 (native) -> hevc (libx265))
 Stream #0:1 -> #0:1 (copy)
 Stream #0:4 -> #0:2 (ass (ssa) -> ass (ssa))



Thank you very much