Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (100)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (12075)

  • 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

    


  • Why is the streaming fps is so large (about 600) when I do ffmpeg streaming a video file through udp ?

    3 juillet 2014, par user1914692

    Ubuntu 12.04. ffmpeg version git-2013-03-26-1741fec Copyright (c) 2000-2013 the FFmpeg developers

    The command I use is :

    ffmpeg -i output_20140630.avi  -f mpegts udp://192.168.1.56:1234

    The streaming fps is about 600, shown in the same terminal.

    If I use the command :

    ffmpeg -i output_20140630.avi  -f mpegts udp://236.0.0.1:200

    Then it is fine. And I can use the command below to play the streamed video :

    ffplay udp://236.0.0.1:2000