Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (53)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5875)

  • Bash script to convert music from one directory into another

    26 octobre 2014, par SinTrans

    I’ve modified this script from the arch forums : https://wiki.archlinux.org/index.php/Convert_Flac_to_Mp3#With_FFmpeg

    I’m trying to find specific file types in a directory structure, convert them to another music file type, and place them in a "converted" directory that maintains the same directory structure.

    I’m stuck at stripping the string $b of its file name.

    $b holds the string ./converted/alt-j/2012\ an\ awesome\ wave/01\ Intro.flac

    Is there a way I can remove the file name from the string ? I don’t think ffmpeg can create/force parent directories of output files.

    #!/bin/bash
    # file convert script
    find -type f -name "*.flac" -print0 | while read -d $'\0' a; do
       b=${a/.\//.\/converted/}
       < /dev/null ffmpeg -i "$a" "${b[@]/%flac/ogg}"
       #echo "${b[@]/%flac/ogg}"
  • Unknown Codec error at ffserver

    23 mai 2016, par Potato

    I installed ffmpeg following this page, https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    As you see I enabled x264.
    But when I run ffserver, I get

    /etc/ffserver.conf:16: Unknown VideoCodec: libx264
    /etc/ffserver.conf:24: Unknown AudioCodec: libfaac

    My conf file is

    HTTPPort 8080
    RTSPPort 8090
    HTTPBindAddress 0.0.0.0
    RTSPBindAddress 0.0.0.0
    MaxClients 1000
    MaxBandwidth 1000000

    <feed>
    Launch ffmpeg -f v4l2 -i /dev/video0 -f alsa -ac 1 -i hw:1
    FileMaxSize 400K
    </feed>

    <stream>
    Format rtp
    Feed feed1.ffm
    VideoCodec libx264
    VideoFrameRate 24
    VideoBitRate 100
    VideoSize 320x240
    #AVPresetVideo default
    #AVPresetVideo baseline
    AVOptionVideo flags +global_header

    AudioCodec libfaac
    AudioBitRate 32
    AudioChannels 1
    AudioSampleRate 22050
    AVOptionAudio flags +global_header
    </stream>

    Well, what can I do more.

  • Compile FFmpeg with openssl for macOS

    23 juin 2017, par H. Wilson

    Hi I would like to ask how to compile ffmpeg with openssl for macOS.

    When I type https in ffmpeg to download / encode webstream from the website I always get an error

    "https protocol not found, recompile FFmpeg with openssl, guntls. or securetransport enabled"

    whilst http does work (some websites didn’t allow http as I got an error "HTTP error 403 Forbidden though)

    https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX

    I have read the link above but I am unsure about the process as I don’t use homebrew to install ffmpeg but built myself.

    I am the very beginner using ffmpeg and any help would be appreciated..
    I hope somebody could show me its process to compile ffmpeg with openssl.

    For further advice, I am wondering if the function of ffmpeg I built myself is same as the static one here : ttps ://ffmpeg.zeranoe.com/builds/

    I built ffmpeg for mac by this website : http://ericholsinger.com/install-ffmpeg-on-a-mac

    Thanks in advance