Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (83)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5761)

  • Nomenclature #3934 (Nouveau) : ’recalcul’ devrait s’appeler ’recompile’

    22 avril 2017, par jluc -

    Le terme "recalcul" indique implicitement qu’il s’agit de la même chose qu’un "calcul", fait une nouvelle fois, mais ce n’est pas du tout le cas, puisque le "calcul" est la simple évaluation d’un squelette compilé, tandis que le "recalcul" demande la compilation elle-même du squelette, suivie de son "calcul".

    Le terme de "recalcul" est donc trompeur. On a pris l’habitude, mais ce mauvais nommage masque la réalité des phénomènes (comme la novlangue de ’1984’) et en retarde la découverte, au lieu de faciliter son accès.

    Partout où ce terme est employé, et surtout dans les boutons et pour le var_mode, il serait préférable d’employer le terme de "recompile" au lieu de "recalcul".

  • "Cannot find ffmpeg" error when using 'audioconcat'

    2 janvier 2020, par Mosukoshide

    I would like to concatenate three ’.oga’ sound files using audioconcat, however whenever I try to do so, I am met with this error :

    Error: Error: Cannot find ffmpeg
       at /root/user/node_modules/fluent-ffmpeg/lib/processor.js:136:22
       at /root/user/node_modules/fluent-ffmpeg/lib/capabilities.js:123:9
       at /root/user/node_modules/fluent-ffmpeg/lib/capabilities.js:116:11
       at /root/user/node_modules/fluent-ffmpeg/lib/utils.js:223:16
       at F (/root/user/node_modules/which/which.js:68:16)
       at E (/root/user/node_modules/which/which.js:80:29)
       at /root/user/node_modules/which/which.js:89:16
       at /root/user/node_modules/isexe/index.js:42:5
       at /root/user/node_modules/isexe/mode.js:8:5
       at FSReqWrap.oncomplete (fs.js:152:21)
    ffmpeg stderr: undefined

    I have already installed ffmpeg with the flags that were listed on the audioconcat npm page like this :

    npm i ffmpeg --enable-libass --enable-libmp3lame

    And the code I am trying to run looks like this :

                   audioconcat(audioFiles)
                   .concat(`main.oga`)
                   .on('start', function (command) {
                     console.log('ffmpeg process started:', command)
                   })
                   .on('error', function (err, stdout, stderr) {
                     console.error('Error:', err)
                     console.error('ffmpeg stderr:', stderr)
                   })
                   .on('end', function (output) {
                     console.error('Audio created in:', output)
                   })

    I’m not sure how to fix this problem...

  • Recursively running ffmpeg concat script in bash across multiple folders

    15 août 2022, par Sam Feldman

    I wrote a bash script that concatenates all video files in a folder using ffmpeg. I would like to be able to run this script recursively on multiple folders. My problem has been that I am unable to change into the directory of every new folder to run the script. This is required for my script to work. Does anyone know what I could accomplish this ?

    


        #!/bin/bash

for f in *; do echo "file '$f'" >> files.txt; done
for f in *; do echo "'$f'" >> filesdelete.txt; done
ffmpeg -f concat -safe 0 -i files.txt -c copy "${PWD##*/}".MP4
xargs -I{} rm -r "{}" < filesdelete.txt
rm files.txt
rm filesdelete.txt


    


    I start with the file structure below. The script runs in each subdirectory (dir1, dir2, dir3) and combines the files in each subdirectory into one video. For the script to run, it needs to cd into each directory.

    


    root
├── dir1
│   ├── video1.mp4
│   ├── video2.mp4
│   └── video3.mp4
├── dir2
│   ├── video1.mp4
│   └── video2.mp4
└── dir3
    ├── video1.mp4
    └── video2.mp4


    


    The end result should look like the structure below.

    


    root
├── dir1
│   └── concat.mp4
├── dir2
│   └── concat.mp4
└── dir3
    └── concat.mp4