Recherche avancée

Médias (91)

Autres articles (59)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9015)

  • How to directly download ffmpeg output without saving it in the server in PHP Codeigniter

    19 mai 2017, par Jeeva

    I’ve a video which is converted and then i want to output it as a download file. is there any way to do so. below is a small example.

    $video = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_no_audio.mp4";
    $audio = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_audio.mp3";
    $cmd = FCPATH.'ffmpeg/bin';

    $this->load->helper('download');
    $data = file_get_contents(shell_exec($cmd.'\ffmpeg -i '.$video.' -i '.$audio.' -c:v copy -c:a copy '.$cmd.'\output.mp4 -y 2>&1'));
    force_download('download_file.mp4',$data);exit;
  • How do I run ffmpeg m3u8 download on iso when moved to background ?

    20 juillet 2022, par user12719663

    I am trying to download an m3u8 playlist in my ioS App using the following ffmpeg command line :
-i ""+url[0].absoluteString+"" -i ""+url[1].absoluteString+"" -c copy "+downloadsDirURL.absoluteString
This works fine when the iPad is open but as soon as it has been closedand goes into Background the process stops. I have tried including the command option -nostdin without success. Is it at all possible to execute this in background mode ?

    


  • How to download an https live stream m3u8 file on mac ?

    16 octobre 2022, par Raghav

    How do I download an m3u8 file from live streaming source on a mac. I do not want to lose any frame or bitrate or compromise on quality at all. I want audio and video to be in perfect sync like they are on the browser and want to save file as mkv or mpv extension. I browsed the internet and found out about ffmpeg but I do not know the exact way to do that without compromising on quality

    


    Would really love any help here