Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (34)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (3248)

  • Evolution #4346 : Extraire la gestion des catégories de SPIP et SVP (action 1)

    11 juin 2019, par Eric Lupinacci

    Après vérification dans le core il n’y a que :

    • info_plugin qui manipule la balise categorie de plugin.xml mais le test est inoffensif et pourra être supprimé plus tard.
    • info_paquet ne fait aucune référence à l’attribut categorie qui est traité de façon standard. Son absence éventuelle sera donc indolore.
    • il reste juste categorie="outil" en attribut dans le paquet.xml de SPIP qui pourra être supprimé aussi dans une prochaine étape.
  • Révision 115450 : Fix #4272 : ne pas supprimer les vignettes de documents dans l’action de suppres...

    21 mai 2019, par bruno@eliaz.fr
  • Using && in Windows FileAssociation Action Commandline

    31 août 2017, par GavinBrelstaff

    I can use the && conjunction from within a standard Windows CMD shell to run two commands on the same line as such :

    "C:\Program Files (x86)\ffmpeg\ffmpeg.exe" -i "%1" -write_xing 0 -ac 2 -ar 24000 -ab 48k -id3v2_version 3 -write_id3v1 1 "%1".mp3 && DEL /Q "%1"
    • by which I delete the input file after having successfully converted it into mp3 output file using ffmpeg

    But the same line of code crashes when I insert it in to the appropriate RegEdit location e.g. :

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Applications\foobar2000.exe\shell\mp3\command]
    @="\"C:\\Program Files (x86)\\ffmpeg\\ffmpeg.exe\" -i \"%1\" -write_xing 0 -ac 2 -ar 24000 -ab 48k -id3v2_version 3 -write_id3v1 1 \"%1\".mp3 && DEL /Q \"%1\" "

    while it worked fine before I added the trailing && clause. You run it by a right click context menu item.

    Is there any way to achieve this preferably without creating additional BAT/CMD files. I tried placing ( ) brackets around the entire line but then it seemed to change scope and no longer find the input file.