
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (61)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (8268)
-
Java - handing file deletion
2 janvier 2016, par QQMusicSo I am using the
youtube-dl
command line program within Java with simple command line execute function and coupling it withffmpeg
to convert to mp3. Now the thing I am having trouble with it the fact that after I get the.mp4
file fromyoutube-dl
, when I convert it into a.mp3
, it will create a completely separate file.So the way it is now :
1. Get `.mp4`
2. Get `.mp3`
3. delete `.mp4'The issue I am facing now is that if the user was to stop the program while it was between
step 1
andstep 2
, then they would be left with the.mp4
file which is not wanted. So is there a way to delete certain files once the user exits the process, whether it being from safely ending the program (this one should be easy), ending the process, or closing the computer ? -
HowTo Video processing in the browser. FFmpeg ? [closed]
7 mars 2021, par timofischerprojectsIs there any way to embed ffmpeg in browser via PHP/JS to process in browser from user video ? The videos should not be uploaded but processed directly on the user's PC.


Background :
I wrote a program in VB.net that allows you to swap the audio track on videos. But since I also have users who want to use the program on their MAC, I had the idea to solve the whole thing in the browser.


Thanks for all the answers !


-
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,