Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (72)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (13574)

  • Need help transcoding Red5 RTMP stream to MPEG2-TS

    5 février 2014, par reyniraron

    Me and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8.

    I use Flash Media Live Encoder to broadcast to Red5's oflaDemo application and the stream works great, except for the fact that I want the stream to work with iOS.
    I am developing an app for it, but I still need to convert my stream to Apple's HTTP Live Streaming protocol for it to work.
    Can anybody help me convert the RTMP stream to MPEG2-TS, because that's the format that mediastreamsegmenter supports ? I already have Apple's HTTP Live Streaming Tools installed on the server, so the segmenter's not a problem.

    FFmpeg doesn't work, at least not with the code I found here. With it a always get an "Operation not permitted" error. Xuggler doesn't work, not even with a Linux box.
    Can anybody please help me ? I'd really, really appreciate it.

    -Reynir Aron

  • using FFmpeg converter from .mov format from portrait to landscape mode

    30 juin 2014, par Sohail Yasmin

    I have a critical problem. I am sharing the details with you.

    Problem : - I have a video file in .mov format, taken from the IPhone. This video is in portrait mode, I want to play this video on the webpage in landscape mode and vice versa.

    Please suggest me, should I convert my video from portrait to landscape mode using FFMPEG. Does FFMPEG provide this conversion feature ? If yes, Please send the exe and the command line for converting portrait video into landscape mode and vice versa.
    i am using these commands

    ffmpeg -i "Inputname.mov" -acodec libvorbis -ac 2 -ab 96k -ar 44100 -b 345k output.webm
    ffmpeg -i "Inputname.mov" -b 1500k -vcodec libx264 -vpre slow -vpre baseline -g 30 output.mp4

    ffmpeg -i "Inputname.mov" -b 1500k -vcodec libtheora -acodec libvorbis -ab 160000 -g 30 output.ogv

    any one can help to solve this issue

  • Stream .mov to .flv with ffmpeg

    30 mars 2018, par Wise Colt

    When I run the following code, the flv file is being created. But it does not play. (File size 0 kB)

    var ffmpeg = require('fluent-ffmpeg');
    var fs = require('fs');

    var write = fs.createWriteStream('output.flv');
    var stream = fs.createReadStream('video.mov');

    ffmpeg(stream).format('flv').pipe(write, {end: true});

    It works when I change the code like this :

    var ffmpeg = require('fluent-ffmpeg');
    var fs = require('fs');

    var write = fs.createWriteStream('output.flv');

    ffmpeg('video.mov').format('flv').pipe(write, {end: true});

    I’m looking for a way to convert a .mov file to a .flv file using ffmpeg and createReadStream. Support.

    Notes : .mov files created with iPhone / iPad