Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (85)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5731)

  • Unable to stream swf file with ffserver

    12 août 2014, par user993766

    I’m trying to stream swf w/ flv video & mp3 audio & have had some issues. I believe my ffmpeg command line is fine, I think the problem is with my ffserver configuration. If I comment out the audio configuration, I get video output fine. If I have both, I only get audio - no video. However, upon stopping my input stream, audio will stop and video will start playing(at a faster speed than normal). Saving my ffmpeg to a file & viewing on mplayer yields both audio & video playing at the correct rate.

    Before posting an entire output dump, can anyone tell me if anything is blatantly wrong with my code ?

    FFMPEG is taking in an MPEG2 TS from a digital video tuner, transcoding to flv & mp3 :

    ffmpeg -i /dev/dvb/adapter0/dvr0 -c:v flv -r 15 -c:a mp3 -b:a 128k -ac 1 -ar 44100 http://localhost:8090/feed1.ffm

    My ffserver conf file is :

    Port 8090
    BindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 16000
    CustomLog -

    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 5M
    </feed>

    <stream>
    Feed feed1.ffm
    Format swf

    AudioCodec libmp3lame
    AudioBitRate 128k
    AudioChannels 1
    AudioSampleRate 44100
    #AVOptionAudio flags +global_header

    #AVOptionVideo flags +global_header
    VideoCodec flv
    VideoFrameRate 15
    VideoBufferSize 80000
    VideoBitRate 100
    VideoQMin 1
    VideoQMax 5
    VideoSize 720x480
    PreRoll 0

    </stream>

    I’ve tried all kinds of permutations, adjusting QMax, video size, framerate & VideoBufferSize. Nothing seems to work. Any & all help appreciated !

  • getting ffmpegthumbnailer to work on heroku

    28 novembre 2013, par scientiffic

    Has anyone gotten ffmpegthumbnailer to work on heroku ? The only documentation I can find online is here :

    Using Heroku Vulcan to build lib with dependency

    And it seems like it was never answered.

    As I try to install ffmpegthumbnailer, I get the error :

    checking for FFMPEG... no
    configure: error: Package requirements (libavutil libavformat libavcodec >= 52.26.0 libswscale) were not met:

    No package &#39;libavutil&#39; found
    No package &#39;libavformat&#39; found
    No package &#39;libavcodec&#39; found
    No package &#39;libswscale&#39; found

    Consider adjusting the PKG_CONFIG_PATH environment variable if you
    installed software in a non-standard prefix.

    Alternatively, you may set the environment variables FFMPEG_CFLAGS
    and FFMPEG_LIBS to avoid the need to call pkg-config.

    I do have ffmpeg installed, though, which I can check with heroku which ffmpeg, which returns vendor/ffmpeg/bin/ffmpeg

    I tried adding environment variables FFMPEG_CFLAGS and FFMPEG_LIBS :

    FFMPEG_CFLAGS:   bin:vendor/ffmpeg/include:vendor/libav/include
    FFMPEG_LIBS:     vendor/ffmpeg/lib:vendor/libav/lib
    LD_LIBRARY_PATH: vendor/ffmpeg/lib:/usr/local/lib
    PATH:            bin:vendor/ffmpeg/bin:vendor/bundle/ruby/1.9.1/bin:/usr/local/bin:/usr/bin:/bin

    How do I get my Heroku app to recognize my installation of ffmpeg when I install ffmpegthumbnailer ?

  • ffmpeg - convert image sequence to video with reversed order

    28 mars 2018, par 0__

    Looking at the docs, it is not apparent to me whether ffmpeg would allow me to convert an image sequence to a video in reverse order, for example using this sequence :

    frame-1000.jpg
    frame-999.jpg
    frame-998.jpg
    ...
    frame-1.jpg

    Is it possible to give a "step direction" for the frame indices ?