Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (55)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 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

Sur d’autres sites (8257)

  • format dav not convert [closed]

    5 décembre 2020, par Raphael Figueiredo

    I have this file that comes from of an unknown brand, however when I use the code that I am used to normally use in other models it does not work, appears format dav detected only with low score of 1 misdetection possible.
I use the following code :

    


    forfiles / s / M * .dav / C "cmd / c ffmpeg -i @file -vf setpts = 2.0 * PTS @ fname.avi -n"

    


    video download link

    


    https://drive.google.com/file/d/1fwQMA8gYu8pLwW5JJ2_MccWx7U3FDC3f/view?usp=sharing

    


    enter image description here

    


  • How to get FFmpeg/sox working on heroku flask app ?

    6 mars 2019, par Arjun Akkiraju

    I am trying to convert an mp3 audio file from .mp3 format and multi-channel audio to a .flac format and single-channel audio in my python flask app. I am currently using the python wrapper for ffmpeg called ffmpy. Here is my code.

    from ffmpy import FFmpeg
    ff = FFmpeg(
           #executable = '/ffmpeg-20190304-db33283-macos64-static/bin/ffmpeg',
           inputs = {<input />: None},
           outputs = {'<output>': ['-ac 1']}
      )
      ff.run()</output>

    We have faced quite a few errors with this code segment when deploying the flask app to heroku (The code seems to work fine locally). The error I am running into is a ffmpy.FFExecutableNotFoundError: Executable 'ffmpeg' not found execption. To fix this, I tried downloading the ffmpeg build and set that as my executable (see the comment in my code above). I dragged that into my project directory and added the code above but the same error was throwing, except it said : ffmpy.FFExecutableNotFoundError: Executable 'ffmpeg-20190304-db33283-macos64-static/bin/ffmpeg not found. The name of the file was the executable not found in case that was unclear. We then tried adding buildpackages from the following two github repos : https://github.com/HYPERHYPER/heroku-buildpack-ffmpeg and https://github.com/integricho/heroku-buildpack-python-ffmpeg but neither buildpack solved the issue. When we ran heroku run bash and typed ffmpeg we got a command not found error. I then tried to install it with apt-get install ffmpeg on the heroku bash but that also failed. This is my requirements.txt file.

    Flask==1.0.2
    Flask-Cors==3.0.4
    gcloud==0.18.3
    google-api-core==1.7.0
    google-auth==1.6.2
    google-cloud-core==0.29.1
    google-cloud-speech==0.36.3
    google-cloud-storage==1.14.0
    google-resumable-media==0.3.2
    googleapis-common-protos==1.5.6
    gunicorn==19.9.0
    matplotlib==2.2.2
    lib==3.0.0
    grpcio==1.13.0rc3
    SpeechRecognition==3.8.1
    watson-developer-cloud==2.8.0
    wordcloud==1.5.0
    Werkzeug==0.14.1
    python-docx==0.8.10
    sox==1.3.7
    redis==3.2.0
    requests==2.21.0
    rq==0.13.0
    ffmpeg==1.4
    ffmpeg-python==0.1.17
    ffmpy==0.2.2
    sox==1.3.7

    ` We also tried to run a subprocess with the command sox :

    import subprocess

    subprocess.call(['sox', , '-r', '44100', '

    This kept saying sox: not found and thus I pivoted to ffmpeg. If there is a more efficient way to do this conversion please let me know as I’m new to both python and heroku. Any help is appreciated.

  • FFMPEG in worker role

    26 février 2014, par user3227615

    I am trying to create worker role solution where it reads the content from the blob and use the FFMPEG and convert the video files on from MP4 to AVI. whenever i deploy the worker role solution in the cloud the VM changes, then how to setup a FFMPEG on the machine where i am going to deploy and the command through cmd ?