Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6332)

  • FFmpeg on Windows - Background converting

    30 juin 2016, par Dave

    I’m having real trouble in getting FFMPEG to convert in the background *Note that when I upload videos and through php the convert works but just sits there and I’m unable to navigate around my website until its finished.

    I don’t run Linux and don’t really have intentions of doing so. And I have windows 7 so unable to use the dev/null/ &. I did try that after reading the very few tutorials online, most of which are outdated due to the depreciated FFmpeg-php and it did absolutely nothing.

    The bit of code that I currently have to convert is as follows !

       $ffmpeg="C:/FFMPEG/bin/ffmpeg.exe";
       shell_exec("$ffmpeg -i ".$folder.$final_file." ".$destination_mp4." ");

    so my question would be. What are the right commands to allow a windows user to convert in php within the background successfully, whilst the video converts ?

  • How to install ffmpeg and an app together on a Mac ?

    30 juin 2016, par Patrick

    I have an electron app built and packaged for macOS in a .app file. The app requires ffmpeg to be installed on the end-user’s computer to be used.

    Currently, I’ve had to manually install ffmpeg on each end-user’s computer to run the app.

    I want to distribute the app online with an easy installer for both ffmpeg and the app. I’ve seen .dmg files which allows you to drag the .app into the applications folder easily, but the ffmpeg dependency is still absent in the installation process.

    How can I install ffmpeg and the app together on a mac ?

    Perhaps including the ffmpeg build in the .app content is a solution as well.
    This may not be possible though because a relevant question mentions there are only abstractions of the ffmpeg CLI instead of something that can directly use ffmpeg.

  • concatenating multiple url's with ffmpeg

    8 mai 2021, par JohnTerry

    I am trying to concat multiple urls with ffmpeg. let's say i have 4 urls which i want to concat and instead of adding those urls into files.txt manually, I want them to add them automatically.

    


    the command i am using is-

    


        file = "/home/xyz/Desktop/abc/files.txt"
    out = "/home/xyz/Desktop/abc/output.mp4"
    cmd = "ffmpeg -f concat -protocol_whitelist file,http,https,tcp,tls,crypto -safe 0 -i {} -c copy {}".format(file,out)
    os.system(cmd)


    


    now is there any way to put the online urls in files.txt automaticlly ?