
Recherche avancée
Autres articles (31)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3851)
-
Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
13 juillet 2015, par Michael NiedermayerMerge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
* commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’ :
hevc_ps : make sure failing to decode an SPS always returns an errorConflicts :
libavcodec/hevc_ps.cSee : 15893adbdb6a7000f59207bcb88def6e7b4812b9
Merged-by : Michael Niedermayer <michael@niedermayer.cc> -
how to call avconv via shell_ exec in php ?
8 janvier 2018, par Blurry Scriptwhen I call a command to convert video from console linux its all working, but when I call the same command from
shell_exec
in php, it gives no errors it returns nothing.even tough I added sudo
2>&1
to redirect the output, for example this command :$res = shell_exec("avconv -i film.mkv 2>&1");
echo $res //nothing
exit; -
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