Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (82)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

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

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

  • The built ffmpeg.exe is not working as expected

    29 avril 2021, par user1939578

    In my c++ application, I want to use ffmpeg lib statically.

    


    I downloaded the ffmpeg-3.4.1 source and built the statically linked ffmpeg using MINGW, Yasm and VS2015 Command prompt as follows,

    


      

    1. Downloaded the msys2-x86_64-20161025.exe
    2. 


    3. On opening the MINGW command prompt, install the required gcc tool using command "pacman -S make gcc diffutils"
    4. 


    5. Renamed C :\msys64\usr\bin\link.exe to C :\msys64\usr\bin\link_orig.exe
    6. 


    7. Downloaded the yasm 32 bit exe and set it's path to PATH environment variable. ("%PATH% ;D :\ffmpeg")
    8. 


    9. Run VS2015, and open MINGW- C :\msys64\msys2_shell.cmd -use-full-path
    10. 


    11. On opening MingW, change pwd to ffmpeg. Run ./configure then make the make install.
    12. 


    


    The configuration is used : ./configure —prefix="build" —toolchain=msvc —arch=x86 —enable-yasm —enable-asm —disable-shared —enable-static

    


    It is built successfully. I got the bin folder having ffmpeg.exe and ffprobe.exe. The size of ffmpeg.exe is 18 Mb. Also the 7 libs as .a file.

    


    I guess I have to convert.a files to .lib and use in application ?

    


    I wanted to confirm if I have built everything correctly. So I tried to convert a .webm file to mp4 using the built ffmpeg.exe. I found that the size of output file is very large and quality is too bad. The input.webm file size was only 15 Mb and output.mp4 file size was about 188 Mb.

    


    Then I downloaded the statically link ffmpeg application from https://ffmpeg.zeranoe.com/builds/. I see the size of ffmpeg.exe is about 35 Mb and It works fine. For same .webm file, it created .mp4 file only 44 Mb and quality is also ok. I figured out that it is built with lots of external libs.

    


    Are external libs creating the difference or my built ffmpeg application is not right ? Do I need all those libs in my application too in order to get similar output ?

    


    screenshot output.mp4 from built ffmpeg.exe(15 Mb)
screenshot output.mp4 from built ffmpeg.exe(15 Mb)

    


  • PyCharm terminal not detecting ffmpeg even after succesful installtion on Windows

    26 avril 2020, par Mandar

    I am working on Windows 10 and PyCharm 2019.2.6 Community Edition. I have followed all the steps for installing FFmpeg on windows. I'm currently working on a project in PyCharm. When I enter ffmpeg -h in command prompt, it works fine. However, when I enter the same command in PyCharm's terminal, it shows 'ffmpeg' is not recognized as an internal or external command,
operable program or batch file. I have added ffmpeg/bin to path as well.