Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (76)

  • List of compatible distributions

    26 avril 2011, par

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8786)

  • ffmpeg - converting one audio track of a multi-track mp4

    30 décembre 2023, par Shaun.M

    I'm having a few mp4 with two audio tracks,
an english one in aac and a french one in dts.

    


    Now I want to convert only the french dts to eac3 with a single ffmpeg command.

    


    I use

    


    ffmpeg -hide_banner -i input.mp4 ^
             -map_metadata -1 ^
             -map 0:0 -c:v copy ^
             -map 0:1 -c:a copy ^
             -map 0:2 -c:a eac3 -b:a 1536k ^
             -metadata:s:a:0 language=eng ^
             -metadata:s:a:0 title="Stereo" ^
             -metadata:s:a:1 language=fra ^
             -metadata:s:a:1 title="Stereo" ^
output.mp4


    


    This works quite nice, but it converts both audio tracks to eac3, instead of leaving the first one untouched ...
What's wrong in the command ?

    


    (ffmpeg version 2023-12-23-git-f5f414d9c4-full_build-www.gyan.dev under Windows 10)

    


  • Ffmpeg and php about

    30 septembre 2018, par ferit

    sorry for my english :)
    hello everyone i work poject on ffmpeg with php but i have little problem.
    i use this code,

    youtube-dl -f "mp4" -g "[youtubeurl]"

    output of command use also output as url="https://"

    ffmpeg -i "output" ...

    this command is running on the command line but when i used on
    php with exec or shel_exec(ffmpeg.exe -i "output" ...); not running.
    what is yours think why not working on php ?
    example i use this code

    exec("...",$output);
    var_dump($output);

    when i look this command everythink is okay but not as it appears
    OS:WİN10

    also shel_exec(ffmpeg.exe -i "folder/asd.mp4" ...); work.

    i think problem is i use url on my php code but on cmd everythink is normal

  • Add multiple overlapping audio files to a video [duplicate]

    15 juin 2024, par JTinkers

    Essentially, I'm trying to achieve this :
enter image description here

    


    The only problem with that is - I'm using ffmpeg programatically, meaning - there won't be any predefined sounds at predefined times, instead - I have code that generates these and executes ffmpeg with the following arguments :

    


    -f concat -r 60 -safe 0 -i {VIDEO_OUTPUT_PATH}/{fileName}.txt
{audioArgs}
-c:v libx264 -preset fast -crf 23 -vf \"scale=1080:1920,format=yuv420p\"
-c:a aac -b:a 192k
-af \"afade=t=out:st={totalSeconds - 3}:d=3\"
{mapArgs} 
-async 1 -movflags +faststart -t {totalSeconds} {outputPath}"


    


    Presumably, if there are 3 sounds (like on the image), mapArgs will be replaced with :

    


    -map 0 -map 1 -map 2 -map 3


    


    and audioArgs will be replaced with :

    


    -itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3


    


    However, it seems to be playing background music and the video only - no other sounds.