Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (94)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (11055)

  • fftools/ffmpeg_mux : distinguish between sync queue and muxer EOF

    9 février 2023, par Anton Khirnov
    fftools/ffmpeg_mux : distinguish between sync queue and muxer EOF
    

    Individual streams should be terminated in the former case, the whole
    muxing process in the latter.

    Reported-by : Gyan Doshi

    • [DH] fftools/ffmpeg_mux.c
  • lavc/vorbisdec : use intermediate variables

    19 septembre 2022, par Rémi Denis-Courmont
    lavc/vorbisdec : use intermediate variables
    

    The compiler cannot infer that the two float vectors do not alias,
    causing unnecessary extra loads and serialisation. This patch caches
    the two input values in local variables so that compiler can optimise
    individual loop iterations.

    • [DH] libavcodec/vorbisdec.c
  • FFMPEG loop to trim silence at beginning and end of file

    23 août 2021, par Juan Pablo

    I'm trying to take a folder that contains mp3 and wave files and trim the silence at the beginning and the end in all the individual files.

    


    for f in *.{mp3,wav}; do ffmpeg -i "$f" -af "silenceremove=start_periods=1:start_duration=1:start_threshold=-60dB:detection=peak,aformat=dblp,areverse,silenceremove=start_periods=1:start_duration=1:start_threshold=-60dB:detection=peak,aformat=dblp,areverse" "outputs/${f%.*}.mp3"; done


    


    I keep receiving an error that f was unexpected. Can someone tell me what I'm doing wrong ?