Advanced search

Medias (91)

Other articles (83)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

On other websites (7465)

  • How to copy ffmpeg conversion output to file name without previous file extension [duplicate]

    20 January, by Tim

    I am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.

    


    find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a 


    


    This command produces a new file as such: ..01_Loser.mp4.m4a

    


    but I need ..01_Loser.m4a

    


    I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks!

    


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

    12 March 2020, by 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 ! :)

  • How do I use FFMPEG to create a WAV file with the same name as the input (m4a) file?

    5 April 2017, by Joseph Polizzotto

    I want to use FFMPEG to search for all instances of .m4a files and convert them to .WAV files with the same name.

    For example, in my directory I have the following file:

    Foo.m4a

    After running FFMPEG, I want to have the following files in the same directory:

    Foo.m4a
    Foo.wav

    I have tried using

    ffmpeg -i *.m4a *.wav

    but this command will prompt me to write over all existing WAV files in the same directory (and keep their original file names) and will not save the converted .m4A file to a .WAV file with the same name.