
Recherche avancée
Autres articles (70)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (13326)
-
ffmpeg alpha channel of images lost
4 mai 2021, par gilad sUsing the following command I make images appear partially transparent. This seems to work as expected.


convert original.jpg -alpha set -background none -channel A -evaluate multiply 0.2 +channel image_01.png
 convert original.jpg -alpha set -background none -channel A -evaluate multiply 0.2 +channel image_02.png



After the images are created I use ffmpeg to turn them into a video :


ffmpeg -i image_%02d.png -pix_fmt yuv420p -c:v libx264 result.mp4



The resulting video doesn't include the partial transparency. The images appear just like the original. It seems the alpha channel of the images is lost.


-
How to disable non-1st Audio Streams/Tracks in FFmpeg for mp4 files
21 avril 2018, par DipeshMy end goal is to create a single FFmpeg command that will convert my h264.DTS.mkv files to a format that is compatible with my AppleTV, whilst preserving the original quality.
I’m almost there, however I have not been able to figure out how to disable streams/tracks.
So far I have got :
ffmpeg -i FILE \
-y -strict experimental \
-map 0:0 -map 0:1 -map 0:1 -map 0:1 -map 0:2 \
-c:0 copy -c:1 aac -ac:a 2 -c:2 ac3 -ac:a 6 -c:3 copy -c:4 mov_text \
OUTPUTThis produces an output file that looks like :
- H264 video track (enabled) [copied from original]
- AAC 2 channel audio track (enabled)
- AC3 6 channel audio track (enabled)
- DTS 6 channel audio track (enabled) [copied from original]
- subtitle track (enabled)
The problem is I need it to look like :
- 1 H264 video track (copied from original) (enabled)
- 1 AAC 2 channel audio track (enabled)
- 1 AC3 6 channel audio track (disabled)
- 1 DTS 6 channel audio track (copied from original) (disabled)
- 1 subtitle track (enabled)
Hence I need to know how I can disable the non-1st Audio Streams/Tracks.
From what I have read, this is part of the track header atom at the location "tkhd.flags". But I have not been able to figure out how to set this via command line arguments.
Any help would be greatly appreciated.
-
How to disable non-1st Audio Streams/Tracks in FFmpeg for mp4 files
16 décembre 2016, par DipeshMy end goal is to create a single FFmpeg command that will convert my h264.DTS.mkv files to a format that is compatible with my AppleTV, whilst preserving the original quality.
I’m almost there, however I have not been able to figure out how to disable streams/tracks.
So far I have got :
ffmpeg -i FILE \
-y -strict experimental \
-map 0:0 -map 0:1 -map 0:1 -map 0:1 -map 0:2 \
-c:0 copy -c:1 aac -ac:a 2 -c:2 ac3 -ac:a 6 -c:3 copy -c:4 mov_text \
OUTPUTThis produces an output file that looks like :
- H264 video track (enabled) [copied from original]
- AAC 2 channel audio track (enabled)
- AC3 6 channel audio track (enabled)
- DTS 6 channel audio track (enabled) [copied from original]
- subtitle track (enabled)
The problem is I need it to look like :
- 1 H264 video track (copied from original) (enabled)
- 1 AAC 2 channel audio track (enabled)
- 1 AC3 6 channel audio track (disabled)
- 1 DTS 6 channel audio track (copied from original) (disabled)
- 1 subtitle track (enabled)
Hence I need to know how I can disable the non-1st Audio Streams/Tracks.
From what I have read, this is part of the track header atom at the location "tkhd.flags". But I have not been able to figure out how to set this via command line arguments.
Any help would be greatly appreciated.