Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (61)

  • 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 ;

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (4662)

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

    20 janvier, par 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 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 ! :)

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

    5 avril 2017, par 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.