Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (58)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (13366)

  • Lego Mindstorms RSO Format

    14 juillet 2010, par Multimedia Mike — General

    I recently read a magazine article about Lego Mindstorms. Naturally, the item that caught my eye was the mention of a bit of Lego software that converts various audio file formats to a custom format called RSO that can be downloaded into a Mindstorms project to make the creation output audio. To read different sources, one might be left with the impression that there is something super-duper top secret proprietary about the format. Such impressions do not hold up under casual analysis of a sample file.

    A Google search for "filetype:rso" yielded a few pre-made sample that I have mirrored into the samples archive. The format appears to be an 8-byte header followed by unsigned, 8-bit PCM. More on the wiki. If FFmpeg could gain an RSO file muxer, that would presumably be a heroic feat to the Lego hacking community.

  • FFMPEG Install/enable 'libfdk_aac' after installed FFMPEG via PPA

    18 juillet 2017, par Cyberbob

    I have linux MINT 17.3 Kernel 4.4.0-81 all update available. (For different reasons I can’t move to newer version of ubuntu/mint)

    I have installed FFMPEG via PPA (NOT from compiling the source) :

    sudo add-apt-repository ppa:jonathonf/ffmpeg-3 -y
    sudo apt-get update
    sudo apt-get install -y ffmpeg

    Then I tried to install libfdk-aac with guide :
    https://trac.ffmpeg.org/wiki/CompilationGuide/Quick/libfdk-aac

    sudo apt-get install pkg-config autoconf automake libtool
    git clone https://github.com/mstorsjo/fdk-aac.git
    cd fdk-aac
    ./autogen.sh
    ./configure --enable-shared --enable-static
    make
    sudo make install
    sudo ldconfig

    But I’m still receive from FFMPEG : "unknown encoder ’libfdk_aac’"

    How can I check if "libfdk_aac’ is correctly installed and HOW CAN I ACTIVATE / ENABLE the ’libfdk_aac’ on FFMPEG ?

    If is not possible in my situation, and if I’m obliged to remove all ffmpeg and follow this :
    https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

  • How to convert to flac with a specific bitrate ?

    8 avril 2024, par Viktor Kushnir

    I want to convert aiff files to flac. On the output file I want to have :
Sample Rate - 44.1 kHz
Bits per sample - 16
Bitrate - 1411 kbps

    


    I use this command :

    


    ffmpeg -i A.aif -c:a flac -compression_level 0 -sample_fmt s16 -ar 44100 -b:a 1411 A.flac


    


    Output :

    


    Input #0, aiff, from 'A.aif':
  Duration: 00:03:18.80, start: 0.000000, bitrate: 1411 kb/s
  Stream #0:0: Audio: pcm_s16be, 44100 Hz, 2 channels, s16, 1411 kb/s
Stream mapping:
  Stream #0:0 -> #0:0 (pcm_s16be (native) -> flac (native))
Press [q] to stop, [?] for help
Output #0, flac, to 'A.flac':
  Metadata:
    encoder         : Lavf60.3.100
  Stream #0:0: Audio: flac, 44100 Hz, stereo, s16, 1 kb/s
    Metadata:
      encoder         : Lavc60.3.100 flac
size=   24993kB time=00:03:18.79 bitrate=1029.9kbits/s speed= 406x
video:0kB audio:24985kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.032387%


    


    Я пробовал разные варианты использования настройки -b:a. Но на выходе всегда bitrate=1029.9kbits/s

    


    Как можно получить flac bitrate=1411 ?