Recherche avancée

Médias (91)

Autres articles (25)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (2910)

  • running a .bat file using python

    26 octobre 2020, par Marius Blees

    I am working on a Youtube to mp4 converter and I currently have two webm files(one containing the audio and one containing the video) and a .bat programm that converts them into a webm file with audio and video. I tryed to open the .bat file using this code :

    


    import subprocess

subprocess.Popen(['C:/Users/mariu/Desktop/Youtube/a3.bat'])


    


    But when I run the code I get this Error :

    


    C:\Users\$$$\source\repos\Youtube Downloader\Youtube Downloader>ffmpeg -i 
C:/Users/$$$/Desktop/Youtube/1.webm -i C:/Users/$$$/Desktop/Youtube/2.webm -c copy 
C:/Users/$$$/Desktop/Youtube/output.webm
The command "ffmpeg" is either wrong or could not be found. (translated from german)


    


    The .bat programm works when I simply execute it but it doesnt when using Python. I have also tryed to use os.system("path") but that also didn't work. Help would be appreciated.

    


  • Is there is any Free/Open source libraries for compressing the video file /reducing file size of video file in android ?

    18 février 2015, par Manu

    My application deals video sharing. Here i need to reduce the size of videos/ compress the video, so that i can minimize the data upload/download. I went through many threads and most of the threads suggesting FFMPEG. I could integrate it with my application and it is working exactly how i want it to be. But now i came to know that it’s a commercial library, and i just have 15 days of trial period. :(

    Any other alternatives ? Free/open source libraries which satisfies my requirements ?

  • write to file and use ffmpeg simultaneously to convert current file

    15 avril 2015, par Zakukashi

    Here’s my use-case :
    User uploads a video file.avi (2GB) to my server, the server slowly writes the bytes to a file. Can I use ffmpeg in a way that it will tail the file being written and convert it to a new file.mp4 ? I tried using the normal approach from file.avi to file.mp4 but after some time ffmpeg says read error. Im assuming that it runs out of bytes to convert thus beating the upload speed. Can I just have it tail the file ?