Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (52)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • FFMPEG in Windows 7 : merge mp4 files from different folders in a batch

    22 avril 2014, par user3406207

    I would like to concatenate 3 mp4 videos into one avi video for every folder of a directory, with FFMPEG on Windows 7.

    I have started this way :

    ffmpeg -f concat -i mylist.txt -c copy E:\EA2014\EX14R\EX14R.avi

    with mylist.txt being :

    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GOPR0001.MP4'
    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP010001.MP4'
    file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP020001.MP4'

    This works fine. Now, I would like to automate it because I have lots of those folders full of videos to merge.
    I tried with this to start with :

    printf "file '$s'\n" .E\EA2014\EX14R\DCIM\100GOPRO\*.MP4 >> mylist.txt

    But it tells me that

    "printf is not recognized as an internal or external command, operable program or batch file"

    Is it because I work in Windows ? Anyone could help me achieve it in another way ?

    Needless to say that I am a newbie !

    Thanks !

  • python ffmpeg and pydub on windows

    11 mars 2016, par Yonatan Kreiner

    I am trying to import the ffmpeg and pydub to my python script.
    I downloaded the ffmpeg for windows from https://ffmpeg.zeranoe.com/builds/
    and put the bin folder in the system path.
    I can use it from the CMD but I need to import it to the script
    for the pydub library to work.
    I had tried to execute

    AudioSegment.from_mp3("something.mp3").export("somethingElse.wav", format="wav")

    without importing it but It throws FileNotFoundException.
    Any suggestions ?

  • ffmpeg command not working with Windows XP when files have spaces

    25 février 2014, par user1665130

    I have a wpf application program for video audio merging using a command line tool ffmpeg.
    I can successfully merge files in Windows 7. But when I try to run my program on Windows XP it shows errors.

    Here I include my command line code.

    ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\ Vishnu Aravind\new.avi

    I made some research on this and i find out that if the input filenames and output filenames contain extra spaces in them, normally ffmpeg won't take it. Suppose if I edit my above code to

    ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\VishnuAravind\new.avi

    this will successfully execute.

    How to solve if I want the output to be saved to a folder whose folder name contains an extra space ?