Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (54)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10123)

  • The batch does not work randomly when starting the loop

    13 octobre 2022, par Axl Alert

    Why doesn't it work in my code random ? I wrote setlocal EnableDelayedExpansion. But in the loop, random still does not work. Keep giving the same number

    


    setlocal EnableDelayedExpansion

set /A TrackNumber=!RANDOM! %% 3 + 1

FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO (

echo !TrackNumber!

ffmpeg -i "%%G" -i !TrackNumber!.mp3 -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -ac 2 -shortest .%%~nG.mp4

)


    


  • Ffmpeg concat do not work with mp4 videos in C#.Net [duplicate]

    16 juillet 2021, par Bhupendra S Rao

    I am trying A.mp4,B.mp4,C.mp4 files to be concated in sequence into D.mp4.

    


    I tried variety of concat commands but its not working well, and audio , video are not synch.
Also D.mp4 is going large in size and time.

    


    Pls provide a sample that can work on c#.Net.

    


    Thanks in Advance
Bhupendra

    


  • How do I get ffmpeg to work on my website ?

    20 septembre 2023, par Sam Cordin

    ffmpeg works on my local computer when I provide the absolute path for it or make it work globally by editing the environment variables.

    


    But on my website it doesn't work at all. I uploaded ffmpeg.exe, ffplay.exe, and ffprobe.exe to public_html/

    


    Here is my code :

    


    <?php
  ini_set ('display_errors', 1);
  ini_set ('display_startup_errors', 1);
  error_reporting (E_ALL);
  $image1 = "/home/mywebsitename/public_html/uploads2/1.png";
  $image2 = "/home/mywebsitename/public_html/uploads2/2.png";
  $ffmpeg = "/home/mywebsitename/public_html/ffmpeg";
  $command = $ffmpeg." -i ".$image1." -vf scale=100:-2 ".$image2;
  system($command);
?>


    


    It's supposed to make one image file mimic another, while having some differences in size and quality.

    


    I enabled the system function in my php.ini file which allowed it to work, and it doesn't give me an error on that anymore.

    


    I also changed the permissions of all the files and folders involved(uploads2 folder, 1.png, 2.png, the ffmpeg programs) to 777 which allows everything from read, write and execute.

    


    However, nothing outputted, and the files stayed the same. How do I get ffmpeg to work on my website ?