Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7009)

  • Using find / for how do I remove the original file extension for the output file name ?

    2 septembre 2022, par burntscarr

    When using find or for to run things on multiple files, how would I make something not keep the file extension ?

    


    For example if using ffmpeg on multiple files to convert from DTS to WAV I would run one of the following :

    


    find . -name "*.dts" -exec ffmpeg -i "{}" -c:a pcm_s24le "{}.wav" \;

    


    or

    


    for f in ./*.dts; do ffmpeg -i "$f" -c:a pcm_s24le "$f.wav"; done

    


    Both of these make files that end in .dts.wav rather than just .wav

    


    My goal is to find out what I would add/change to make the "{}.wav" or "$f.wav" not include the .dts part for the output file name. (and several other examples with various extensions)

    


    This happens automatically when using the cli version of flac, the output file automatically removes .wav and has .flac instead, when no output file is specified.
(Ex : flac -8 *.wav would create .flac files next to the .wav files, but they aren't .wav.flac, they're just .flac)

    


  • Use hadoop to fastly encode my videos

    30 mars 2015, par wanna know

    I’m developping a VOD plateform which get videos with the size > 2Gb so the conversion take too long and i want to use hadoop and ffmpeg to fastly encode my videos , is that possible ? Thank you

  • cutting video using ffmpeg cannot produce videos with specified length

    22 juin 2021, par david

    I have some mp4 videos and I want to split them into 2-second videos. my GOP is 2 Sec. for this aim I use the following command :

    


    ffmpeg -i input.mp4 -c copy -map 0 -segment_time 00:00:02 -f segment -reset_timestamps 1 output%03d.mp4


    


    but after splitting, my new videos have different duration times. some of them are 4 Sec, one of them is 3.67 Sec. why the duration time is different from the thing I specified in command ? my command is wrong ?
is it possible to split based on frame number ? for example each 120 frame ?