Recherche avancée

Médias (91)

Autres articles (12)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (3810)

  • 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

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

  • 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/}
       &lt; /dev/null ffmpeg -i "$a" "${b[@]/%flac/ogg}"
       #echo "${b[@]/%flac/ogg}"