Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (65)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4035)

  • 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

    


  • 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 ?)

    


  • 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