Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (31)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4738)

  • How to make ffmpeg delete the original file after changing containers ? (using a send to bat file)

    12 mars 2020, par Bloggy

    I’m currently using a bat file in my shell:sendto folder that allows me to right click MKV files and open a cmd window that uses ffmpeg to change containers and produces an mp4 in the same directory as the source file. It works great, but I’d like to automate the process of deleting the original MKVs after (successfully) changing containers, and skipping the recycle bin if possible.

    Right now my .bat file is like follows :

    "C:\ffmpeg\bin\ffmpeg.exe" -i %1 -codec copy "%~n1.mp4"

    I’ve looked it up already but could only find a similar question about batch processing an entire folder and without the sendto part, and I wasn’t sure how to make that work for me.
    So if someone could point me towards what to append to it to make it happpen, I’d appreciate it.

    Thanks ! :)

  • MAC's "say" command to MP3 [closed]

    13 mars 2015, par lx0741

    I want to read a very long text with the SAY mac’s command (say -f file.txt), and to record the output to file.mp3. I thought about using ffmpeg to record all of it, but then i’ll need to wait for all the reading process to complete..

    I don’t really need to listen to it, so if there is a way to directly have an mp3 file just by hitting enter, it would be great..

    There is also this project txt2mp3mac but i can’t use it in a shell script..

    Thanks..

    Update

    Check this gist for a script that does it

  • How to merge audio and video streams with Popen pipes

    22 mai 2017, par Absulit

    I need to merge two different sources, one has video, the other has audio. None of them are local files, data arrives via websocket blob.

    I have a Popen process for ffmpeg like this in Python

    ffmpeg_process = Popen('/root/bin/ffmpeg -i - -i -  -f flv out.flv, shell=True, stdin=PIPE)

    I’m aware that sending video to the first -i works like this :

    ffmpeg_process.stdin.write(data)

    So my question is, how do I send audio data to the second -i param via the stdin pipe ?