Recherche avancée

Médias (91)

Autres articles (66)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11086)

  • How to properly open libvpx for encoding in via avcodec_open2() ?

    10 juin 2014, par Edison

    With a valid AVCodec and a valid AVContext, when calling avcodec_open2() EINVAL (-22, Invalid arguments) is returned, it turns out the EINVAL is triggered via

       ret = avctx->codec->init(avctx);
       if (ret < 0) {
           goto free_and_end;
       }

    inside avcodec_open2().

    The same code that I have right now can open mpeg4 and h264 just fine.

    Are there any special option parameters that has to be set (e.g. for h263, image size has to be multiples of certain numbers) to open libvpx codec ?

  • Is there any open source HLS segmenter that supports Apple Low Latency HLS ? [closed]

    13 juillet 2021, par Marcus Wichelmann

    Currently I'm using FFmpeg to produce a HLS segmented stream to deliver some live content to our users. Now I'd like to reduce latency by using Apples latest Low Latency Standard which is unfortunately quite complex and the only standard that is supported on Apple devices.

    


    But I have not yet found any open source implementation of this. Do you know of any project that works on implementing the whole Apple LL-HLS standard including the latest #EXT-X-PRELOAD-HINT additions ?

    


    What do you use as segmenter for your low latency ABR streams ?

    


  • How to open a remote video using PHP-FFMpeg ?

    20 décembre 2019, par C.Ad

    I’m trying to create a web application using PHP (Laravel 5.8) where user can past link of any video found on the Internet (like Youtube, Dailymotion ... etc), then cut the video.

    Cutting the video the video both in front-end and back-end is easy to do, I’m using PHP-FFMPeg to do it in server side.

    My problem is that I couldn’t find a solution to open a remote video from my PHP script, i.e if user past this link "https://www.dailymotion.com/video/x6rh0" I would open it then make a clip.

    This my code :

       $ffmpeg = FFMpeg\FFMpeg::create();
       $url = "https://www.dailymotion.com/video/x6rh0";
       $video = $ffmpeg->open($url);
       $clip = $video->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(30), FFMpeg\Coordinate\TimeCode::fromSeconds(15));
       $clip->save(new FFMpeg\Format\Video\X264('libmp3lame', 'libx264'), public_path().'/videos/video2.avi');

    I’m using PHP Laravel framework.

    Please, how can I open a video from URL using PHP-FFMpeg, this is my question.