Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (64)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10675)

  • Anomalie #4832 (Nouveau) : Passer les bulles de gifs animées sur les syndications en erreur en SVG...

    23 juin 2021

    Il reste des gifs pas très jojo sur le plugin.
    À remplacer par https://www.florin-pop.com/blog/2019/03/css-pulse-effect/ par exemple.

  • ffmpeg Fade-in stuck at first frame

    14 janvier 2017, par Pradeep Varadharajan

    I am trying to apply a fade-in effect at the start of a video and a fade-out effect at the end of a video.

    The fade-out effect works as I expect. However the fade-in doesn’t. I am noticing that at the starting, when the video is supposed to be black before fading in, the initial frame shows up vaguely and is stuck till the fade duration ends. The Audio fade-in seems to work correctly however.

    ffmpeg -i infile.mp4 -strict experimental -y -vf "fade=t=out:st=28:d=2, fade=t=in:st=2:d=2" -af "afade=t=out:st=28:d=2, afade=t=in:st=2:d=2" fade_in.mp4

    Can someone please help me understand what I am doing wrong here ?

    According to ffmpeg documentation for this filter, the below example is supposed to make the first 5.5 seconds black, then fade in for 0.5 seconds :

    fade=t=in:st=5.5:d=0.5
  • How can we reduce the size of audio file after uploading ?

    8 novembre 2019, par Arjun Pujari

    I have used this command in the terminal to install the package : composer require pbmedia/laravel-ffmpeg. The package is successfully downloaded, but I don’t know how to use it. I don’t even know if this package can also reduce the audio file size or not.

    Anyone know any other library or package ?

       
           <form action="{{route('upload')}}" method="post" enctype="multipart/form-data">
               Select Audio to upload:
               <input type="file" />
               <input type="submit" value="upload MP3" />
           </form>
       


    &lt;?php

    Here is my controller. Write basic code for save file :

    namespace App\Http\Controllers;

    use Illuminate\Http\Request;
    use Pbmedia\LaravelFFMpeg\FFMpeg;

    class FileCompress extends Controller
    {  
       public function compressFile(Request $request)
       {
             $uploadFileName = mt_rand().time(). '.' . $file->getClientOriginalExtension();
             $filetype = substr($file->getClientMimeType(), 0, strpos($file->getClientMimeType(), "/"));

           if($filetype == 'video'){

             $localpath =  public_path().'/videos/'.$uploadFileName;
            //code for video file compress.
           }else{
             //code for audio file compress.
           }
       }
    }

    But I need to reduce the audio file size when a file is uploaded or reduce the file size immediately after the file upload. How can i do that ?