Recherche avancée

Médias (91)

Autres articles (74)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5312)

  • How to read errors when compiling from source code

    28 décembre 2022, par slyfox1186

    Goal :

    


    Compile multiple libraries from source code to ultimately install a fully compiled version of FFmpeg with desirable libraries attached.

    


    Problem :

    


    During the compilation, all libraries (seemingly) are successful until liblv2 is reached.

    


    Error output via terminal :

    


    building lv2 - version 1.18.10
=======================
Downloading https://lv2plug.in/spec/lv2-1.18.10.tar.xz as lv2-1.18.10.tar.bz2
... Done
Extracted lv2-1.18.10.tar.bz2
$ python3 ./waf configure --prefix=/home/jman/tmp/ffmpeg/ffmpeg-build/workspace --lv2-user
python3: can't open file '/home/jman/tmp/ffmpeg/ffmpeg-build/packages/lv2-1.18.10/./waf': [Errno 2] No such file or directory

Failed to Execute python3 ./waf configure --prefix=/home/jman/tmp/ffmpeg/ffmpeg-build/workspace --lv2-user


    


    Where I need guidance :

    


    python3: can't open file '/home/jman/tmp/ffmpeg/ffmpeg-build/packages/lv2-1.18.10/./waf': [Errno 2] No such file or directory


    


    My question :

    


    What does this part mean ?

    


    lv2-1.18.10/./waf'

specifically the part /./


    


    My best guess so far is it :

    


      

    1. obviously is looking for a directory it can't find (perhaps because it truly doesn't exist)
    2. 


    3. The missing 'waf' directory should be located inside either the "${PACKAGES}" or "${WORKSPACE}" directory.
    4. 


    


    The ${PACKAGES}" path in this script should = /home/jman/tmp/ffmpeg/ffmpeg-build/packages

    


    The ${WORKSPACE}" path in this script should = /home/jman/tmp/ffmpeg/ffmpeg-build/workspace

    


    The full build script :

    


    https://github.com/slyfox1186/ffmpeg-build-script/blob/master/scripts/build-ffmpeg

    


    I tried my best to make this worth sometimes time without giving too much info... sorry if I don't meet the expectations of this forum.

    


    Am I even close ?

    


  • ffmpeg using php exec on korean filename exit code 1

    8 avril 2019, par Marc

    I can’t convert a video file. Example :

    exec(ffmpeg -i 01.시대조감.wmv 0001.mp4 -hide_banner, $output, $exit_code);

    Just returns exit code -1

  • I need FFMPEG conversion code modification

    21 septembre 2023, par Hasbehas
    [
            "ffmpeg", "-y", "-hwaccel", "cuda", "-hwaccel_output_format", "cuda",
            "-i", input_file, "-i", "logo_blue_rectangleS.png",
            "-filter_complex", "[0:v]scale_cuda=w=1920:h=1080:format=yuv420p:interp_algo=lanczos,hwdownload[base];[base][1:v]overlay=(main_w-overlay_w)-35:(main_h-overlay_h)-25:enable='between(t,0,99999)',fps=fps=30,format=yuv420p",
            "-c:v", "h264_nvenc", "-c:a", "copy", output_file
        ]


    


    I have this code but the output result quality is really bad...

    


    Ideally, I dont want to give a size/res, whatever the input video resolution is, output should be the same, but I could not manage that bit...
Whats wrong with this code ? Why the output quality is so bad :(