Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (85)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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 (...)

  • Gestion de la ferme

    2 mars 2010, par

    La 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"

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (10099)

  • No response from FFMPEG from inside php (works in command line)

    28 mai 2020, par Donal.Lynch.Msc

    So I have this executable working fine in a Windows 10 dev environment :

    



    $cmd = 'C:/ffmpeg/bin/ffmpeg.exe -i video.mp4 -i audio.mp3 -c:v copy -c:a aac output.mp4';
exec($cmd, $output)


    



    However when I move it into the Ubuntu staging environment and change the path to :

    



    /usr/bin/ffmpeg


    



    there is no response from it.
The following works in the ubuntu terminal

    



    ffmpeg -v, ffmpeg -i, php -v, ... 


    



    but there is no response from it from inside php.
Am I missing something here ?

    



    I've also tried adding sudo to the above command which seems to make no difference.
(Yes I know I should be developing in the same environment as the staging/prod servers but it's not an option in this specific case).

    


  • FFmpeg won't convert file when ran from Siri Shortcuts

    1er septembre 2022, par Piipperi800

    I can't seem to initialize FFmpeg from Siri Shortcuts, it just gets stuck in size= OKB time=00:00:00.00 bitrate=N/A speed= Ox despite FFmpeg using CPU cycles and creating a 3.9 MB file.

    


    I've ran pretty much the exact same command directly from Terminal, and as seen in the screenshot, it runs fine. The only difference is that the Siri Shortcuts one uses variables. Which is an interesting one because when I tried running the command in a blank shortcut without those variables, it runs fine... What the heck could be going wrong ?

    


    Picture of the issue

    


  • FFmpeg-wasm colorbalance filter always create washed out image, how to fix this ?

    15 août 2022, par Pieter-Jan Delbecke

    I'm using FFmpeg wasm in the browser (React.js).
When I want to adjust the colors of a video using the colorbalance videofilter it always produces a washed out image.

    


    await ffmpeg.run("-i", "test.mov", "-vf", "colorbalance=-0.4:-0.2:0.2:-0.4:-0.2:0.2:0:0:0.0", "-pix_fmt", "yuv420p", "test.mp4");


    


    I'm usig the exact same command as in FFmpeg in my terminal (where it works correctly)

    


    ffmpeg -i test.mov -vf colorbalance=-0.4:-0.2:0.2:-0.4:-0.2:0.2:0:0:0.0 -pix_fmt yuv420p output02.mp4


    


    Has someone experienced the same issue ?
Washed-out image attached