
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (99)
-
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 ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (11172)
-
Bash Script to convert all flv file in a directory to mp3
11 août 2014, par UnbrandedTechThis is my code so far.
#!/bin/bash
#James Kenaley
#Flv to Mp3 directory converter
find /home/downloads -iname "*.flv" | \
while read I;
do
`ffmpeg -i ${I} -acodec copy ${I/%.flv/.mp3}`
echo "$I has been converted"
donebut its picking up white spaces in the names of the flv files and throws a error saying its not in the directory. how do make it use the whole file name and not the just the first word before the space ?
-
How to take a 2.1 file add some data and export as 2.1 file out back ?
28 novembre 2019, par Teja8484I have a source file called A.wav. It has 2.1 channels (Stereo and mono channel) in audacity. I was able to split the stereo into mono channels B and C using the following command. D.wav is the other mono channel.
ffmpeg -i A.wav -filter_complex "[0:a]channelsplit=channel_layout=stereo[left][right]" -map "[left]" B.wav -map "[right]" C.wav
After adding some noise to the files i want to export all the three mono files into the same 2.1 format as it was originally present. (B+C = stereo, D=mono) to one 2.1 file. I know this can be done with ffmpeg. But not able to get the right command.
-
How can I convert a webm file with alpha channel to a hevc encoded file that will play in safari on an IPad ?
21 septembre 2021, par Programming GuyI've got a webm file with transparency : https://itype.techforge.com.au/assets/videos/upshot/module1/NP_1A.webm


I'm trying to convert it into something that will play in the video element of a web page in the Safari browser on an IPad.


An example of a file that works is : https://rotato.netlify.app/alpha-demo/movie-hevc.mov


My attempts at doing this conversion have all failed. 3rd party apps seem to all lose the alpha channel.


On my mac I tried ffmpeg


ffmpeg -i input.webm -c:v hevc_videotoolbox -allow_sw 1 -alpha_quality 0.75 -vtag hvc1 output.mov



However, while this resulted in a file that reported a codec of MPEG-H Part2/HEVC (H.265) (hvc1) the resulting file still has a black background instead of a transparent one.


ffmpeg log : https://pastebin.com/DMM9y5PU