Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9843)

  • Why A .FLAC File Converted by FFMPEG Cause File Explorer Unresponse on Windows 10 [closed]

    20 juillet 2022, par Alex King

    My File Explorer Always showing "Working on it."
I've tried many resolutions.
First,I disconnect my NAS drive. seems fine.
I test many times on diffirient windows 10/11 versions.
I thought it was SMB problem on windows. But i was wrong.

    


    Today I'm using FFMPEG convert .wav to .flac.

    


    .\ffmpeg.exe -i $Source -c:a flac $Dest 


    


    Just simple like this. Blow my computer up.

    


    Even worse, explorer.exe crash after I'm trying to open FF output folder.

    


    It's not the poblem from "Quick access" or "Search Index".

    


    I'm now 100% percent confirm the flac files that ffmpeg made will cause file explorer crash.

    


    I can't solve it without knowing the reason.

    


    Might related to audio file tag vorbis ?

    


    This is my FFMPEG info

    


    ffmpeg version n5.0.1-4-ga5ebb3d25e-20220428 Copyright (c) 2000-2022 the FFmpeg developers

built with gcc 11.2.0 (crosstool-NG 1.24.0.533_681aaef)


    


  • doc/protocols/file : document general file protocol URL syntax

    4 janvier 2014, par Stefano Sabatini
    doc/protocols/file : document general file protocol URL syntax
    

    Also drop confusing ff* tools reference about exceptions to the
    file:FILENAME syntax, which is not ff* tool specific.

    With various edits by Alexander Strasser <eclipse7@gmx.net>.

    • [DH] doc/protocols.texi
  • How can I combine two audio file with one video file ?

    9 septembre 2019, par A Person

    I am trying to combine two audio files (left and right audio) with the video file. I need to make sure that the final output uses the audio files correctly so there is no lip sync issue. the audio file and video file have same time length.

    Im trying to use ffmpeg or ffastrans to do it but as i am new to this, im not sure about the commands and possibilities.

    I’ve Tried this code below but did not get the output i want.

    ffmpeg -i file1.mp3 -i file2.mp3 mix.mp4 -map 0:0 -map 1:0 -newaudio

    The expected output should take in the 3 files (2 audio and 1 video) and output a single video file that has audio and video in playback.