Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (59)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13267)

  • ffmpeg bash script to generate thumbnails for all videos in a folder

    17 novembre 2017, par smokeyone

    I found this bash script via google and would like to modify it slightly to generate jpg thumbnails from a desktop folder call indie. All my mts files are named by their exact time taken and ffmpeg is installed.

    This is the original script :

    for f in *.mov; do
       ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mov}.jpg";
    done

    I changed it to this :

    for f in Desktop/indie/*.mts; do
       ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mts}.jpg";
    done

    I am hoping someone can tell me where I have gone wrong (my terminal output just says no such file).

    Thanks

  • How do I get ffmpeg to encode all files in one directory to another directory ? My directory names and filenames all have spaces and periods in them

    26 avril 2023, par Vihung

    I am using the Terminal on a Mac.

    


    Per another question, I am doing

    


    for i in ./01.\ Original\ Recording/*.m4a; do ffmpeg -i "$i" -b:a 64k ./02.\ Compressed/"$(basename $i)"; done


    


    (as you can see, there are spaces in the directory names as well as in the filenames)

    


    The output files are being put in the right directory (02.\ Compressed).

    


    Unfortunately, they come out named as 01.?Original?.m4a (first part of directory name and rest of file name with spaces substituted by ?)

    


  • Generate video thumbnails without opening file explorer on Linux [closed]

    20 juillet 2024, par jaantamy

    I noticed that thumbnails of videos are generated when I open my file explorer (Thunar).
I guess it uses external package such as tumbler and/or ffmpegthumbnailer
But I don't know how to check the code of tumbler to execute it by myself from my command line terminal, without opening my Thunar file explorer...
Any idea ?
I know I could use the command ffmpeg but it asks to choose when to do the screenshot in the video with the statement -ss, but I don't want to choose it arbitrary, I prefer when tumbler chooses the right moment (maybe the middle of the video ?) to do it.
Thanks for your help

    


    ffmpeg -i -ss 00:00:30 -frames:v 1 -s 120x240 output_file.jpg