
Recherche avancée
Autres articles (98)
-
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 (...) -
Les sons
15 mai 2013, par -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6408)
-
ffmpeg batch convert from working Linux code to Windows
30 mai 2016, par iisacI have this code on my Linux :
for i in ./*.mkv; do \
ffmpeg -i "$i" -c:v libvpx-vp9 -pass 1 -b:v 5M -threads 8 -speed 4 \
-tile-columns 6 -frame-parallel 1 \
-an -y -f webm /mnt/TemppiKovo/HEVC_perseily && \
ffmpeg -i "$i" -c:v libvpx-vp9 -pass 2 -pix_fmt yuv420p -b:v 5M -threads 8 -speed 1 \
-tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 \
-c:a libopus -b:a 320k -f webm "${i%.mkv}-VP9.webm"
doneHow do I do exactly the same on Windows ?
-
Parsing the ffmpeg code for a small change
4 janvier 2015, par PrashanthReferring to the post
"Is there a way to filter out I/B/P frames in an MPEG Video stream and access the macroblock information ?".
User has specified the following commandffprobe -show_frames -pretty File.mpg | grep 'pict_type' > pict_type.txt
which writes the frame type to a text file.
Am trying to extract the different frame types into respective folder i.e., I frames in a folder named "Iframes" and so on... How can I change the above command to achieve this ? -
Node fluent-ffmpeg stream output error code 1
6 avril 2016, par HarangueFollowing the documentation exactly, I’m attempting to use a stream to write a video conversion to file.
var FFmpeg = require('fluent-ffmpeg');
var fs = require('fs');
var outStream = fs.createWriteStream('C:/Users/Jack/Videos/test.mp4');
new FFmpeg({ source: 'C:/Users/Jack/Videos/video.mp4' })
.withVideoCodec('libx264')
.withAudioCodec('libmp3lame')
.withSize('320x240')
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('end', function() {
console.log('Processing finished !');
})
.writeToStream(outStream, { end: true });This conversion works perfectly when I use .saveToFile(), but returns
An error occurred : ffmpeg exited with code 1
When I run this code. I’m on Windows 8.1 64 bit using a 64 bit ffmpeg build from here.