
Recherche avancée
Autres articles (44)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (5660)
-
Anomalie #4210 (En cours) : Indiquer l’adresse du svn ou du git sur la page d’accueil de core.spip...
1er novembre 2018, par b bDepuis la page d’accueil ici https://core.spip.net/#Aide le lien mène vers cette page https://core.spip.net/projects/spip/wiki qui semble bien contenir l’info que tu cherches.
-
ffmpeg and grep not working to extract mean_volume value
31 octobre 2019, par JsonI have a list of mp3 files and i want to set all
mean_volume
to the same db value using a script, so I enter the command for detecting the value (https://trac.ffmpeg.org/wiki/AudioVolume) and I try togrep
the value but it fails and instead prints all the output from theffmpeg
command. Any thoughts ?
Also triedtr
instead ofgrep
. The command I used is :ffmpeg -i sample.mp3 -filter:a volumedetect -f null /dev/null | grep 'mean_volume'
-
Monitoring ffmpeg two-passes encoding
31 décembre 2024, par HodolI'm new in FFMPEG.


According to the official guide, https://trac.ffmpeg.org/wiki/Encode/VP9 I use the following command to convert a large h.264 file :


ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 1 -an -f null /dev/null
ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 2 -c:a libopus output.webm



However, the pass-1 takes too long time and it does not log progress. With
-report
option I can see something is in progress but I don't know how long I should wait.

Here's questions :


- 

- Is there any way to see the progress of 1-pass ?
- Is there any way to speed up the process ?






Thank you,