Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (61)

  • Mise à disposition des fichiers

    14 avril 2011, par

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

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

    PHP 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 QQMusic

    So I am using the youtube-dl command line program within Java with simple command line execute function and coupling it with ffmpeg to convert to mp3. Now the thing I am having trouble with it the fact that after I get the .mp4 file from youtube-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 and step 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 timofischerprojects

    Is 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 Hodol

    I'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 :

    


      

    1. Is there any way to see the progress of 1-pass ?
    2. 


    3. Is there any way to speed up the process ?
    4. 


    


    Thank you,