Advanced search

Medias (1)

Tag: - Tags -/censure

Other articles (62)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Soumettre améliorations et plugins supplémentaires

    10 April 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les formats acceptés

    28 January 2010, by

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

On other websites (9629)

  • ffmpeg: not found when running ffmpeg via php xampp (mac)

    28 August 2021, by Alex Styl

    I am trying to execute ffmpeg from php. I have installed ffmpeg locally on my mac via homebrew and I am able to run the commands I need via terminal.

    


    When I try to execute the following code:

    


    &lt;?php&#xA;    echo "Starting ffmpeg";&#xA;    $output = shell_exec("ffmpeg -i test.mp3 -codec:a libmp3lame -b:a 128k out.mp3 2>&amp;1");&#xA;    echo "<pre>$output</pre>";&#xA;?>&#xA;

    &#xA;

    I am receiving the following on my browser:

    &#xA;

    &#xA;

    Starting ffmpeg

    &#xA;

    sh: 1: ffmpeg: not found

    &#xA;

    &#xA;

    I am assuming that I somehow need to install ffmpeg to my xampp server but it is not obvious how to do that. After searching online I can find linux and Windows tutorials but I couldn't figure out something out by looking at them.

    &#xA;

    What I tried doing was to download the ffmpeg static build form https://ffmpeg.org/download.html#build-mac and placed it in the htdocs holder, and then tried to execute ffmpeg as if it was an executable (after changing chmod), but that gave me

    &#xA;

    &#xA;

    sh: 1: ./ffmpeg: Exec format error

    &#xA;

    &#xA;

    How would one go and install and then run ffmpeg on their xampp server?

    &#xA;

  • Can I use HTTP/2.0 for downloading HLS streams using FFmpeg?

    8 June 2024, by SpongeBed

    I am trying to download an HLS stream using FFmpeg. However, FFmpeg defaults to HTTP/1.1 for downloading content, and the video source's firewall blocks HTTP/1.1 connections. Consequently, FFmpeg cannot download the video.

    &#xA;

    I used the same headers as my browser to access the content and replicated the request using Insomnia. And again, my request was blocked when using HTTP/1.1.

    &#xA;

    I've searched everywhere but haven't found any information on how to change the HTTP version FFmpeg uses for requests.

    &#xA;

    Is there a way to configure FFmpeg to use HTTP/2.0 instead of HTTP/1.1?

    &#xA;

  • Merging audio and video files both in mp4 format in python [duplicate]

    24 January 2021, by Anuj Dhillon

    This is my first question here.

    &#xA;

    I am trying to write a script in python to download videos from reddit. In reddit both videos and audios are downloaded separately in mp4 format. I've managed to download both the audio and video files.

    &#xA;

    Now I want to merge these files together. I know it can be done in python with ffmpeg but I have no idea how it works when the audio is in mp4 format. Any help would be appreciated.

    &#xA;