Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5293)

  • x86/af_afir : fix processing the last element

    3 janvier 2019, par James Almer
    x86/af_afir : fix processing the last element
    

    ff_fcmul_add_sse3() is now identical to the C version.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/x86/af_afir.asm
  • vf_fieldorder : log when processing is skipped

    22 octobre 2013, par Vittorio Giovara
    vf_fieldorder : log when processing is skipped
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavfilter/vf_fieldorder.c
  • Is there any way that I can speed up the ffmpeg processing time

    20 mai 2020, par Ahmed Al-Rayan

    I am facing a problem with the processing process. I use a real joint server in a digital hosting package of $ 10 and use cloud service from Amazon s3. The problem is when uploading a video, whatever the size of the video, whether its size is 1 megabyte or 2 Giga. After the upload process, the processing process starts to upload, there is no problem But when the processing process takes a very long time so that I cannot complete it, what is the solution to that, is there a problem for me or is this process normal ?&#xA; I use laravel-ffmpeg and through laravel queue I am cutting the video into several qualities I will attach the code to you below.

    &#xA;&#xA;

    public function handle()&#xA;{&#xA;    //180p&#xA;    $lowBitrate1 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(613);&#xA;    //270p&#xA;    $lowBitrate2 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(906);&#xA;    //360p&#xA;    $midBitrate1 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(1687);&#xA;    //540p&#xA;    $midBitrate2 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(2227);&#xA;    //720p&#xA;    $highBitrate1 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(4300);&#xA;    //1080&#xA;    $highBitrate2 = (new X264(&#x27;aac&#x27;))->setKiloBitrate(7917);&#xA;&#xA;FFMpeg::fromDisk(&#x27;s3&#x27;)&#xA;    ->open($this->movie->path)&#xA;    ->exportForHLS()&#xA;    ->onProgress(function ($percent) {&#xA;        $this->movie->update([&#xA;            &#x27;percent&#x27; => $percent&#xA;        ]);&#xA;    })&#xA;    ->setSegmentLength(10)// optional&#xA;    ->addFormat($lowBitrate1)&#xA;    ->addFormat($lowBitrate2)&#xA;    ->addFormat($midBitrate1)&#xA;    ->addFormat($midBitrate2)&#xA;    ->addFormat($highBitrate1)&#xA;    ->addFormat($highBitrate2)&#xA;    ->toDisk(&#x27;s3&#x27;)&#xA;    ->save("public/Movies/{$this->movie->id}/{$this->movie->id}.m3u8");&#xA;}//end of handle&#xA;

    &#xA;