Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (84)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (6929)

  • how to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy

    18 juin 2015, par Intrepid Uliyar

    how to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy

    i need to install ffmpeg for generating thumbnail images, it’s working fine in localhost(Windows), but not work in Linux(i don’t know server platform). i have refer some website.in that they put like exe are not execute in linux server, we need to install ffmpeg programmatically. can anyone give me suggestion.i have refer some website. but that’s not useful.

    my code

    $video = "../../".$down_path;
       $rand=mt_rand(111111,999999);
       //where to save the image
       $image1 = "../../completed_project/thumb/".$rand.'ss.jpg';
       $image2 = "../../completed_project/thumb/".$rand.'uu.jpg';
       $image3 = "../../completed_project/thumb/".$rand.'rr.jpg';

       $thumb_image1 = "completed_project/thumb/".$rand.'ss.jpg';
       $thumb_image2 = "completed_project/thumb/".$rand.'uu.jpg';
       $thumb_image3 = "completed_project/thumb/".$rand.'rr.jpg';

       //time to take screenshot at
       $interval1 = 2;
       $interval2 = 4;
       $interval3 = 5;
       //screenshot size
       $size = '320x240';

       //ffmpeg command
       $cmd1 = "$ffmpeg -i $video -deinterlace -an -ss $interval1 -f mjpeg -t 1 -r 1 -y -s $size $image1 2>&1";
       $cmd2 = "$ffmpeg -i $video -deinterlace -an -ss $interval2 -f mjpeg -t 1 -r 1 -y -s $size $image2 2>&1";  
       $cmd3 = "$ffmpeg -i $video -deinterlace -an -ss $interval3 -f mjpeg -t 1 -r 1 -y -s $size $image3 2>&1";  
       $return = `$cmd1`.`$cmd2`.`$cmd3`;
       print_r($cmd1);

    Output Like this

    ffmpeg.exe -i ../../completed_project/606560114793SK_PROMO-45s.mp4 -deinterlace -an -ss 2 -f mjpeg -t 1 -r 1 -y -s 320x240 ../../completed_project/thumb/362796ss.jpg 2>&1
  • How to use the Source Code instead of a specific OS App with a Python Project [closed]

    28 septembre 2021, par Lara Saka

    If I want for example to install ffmpeg to use AudioSegment Library(which convert Audio to text). When you open their website you will see download for windows, apple, linux and a source code I want to use the ffmpeg in the Project regardless of the operating system by using the source code of the ffmpeg !

    


    How Can I do that ?

    


    ffmpeg download web site

    


    Thanks in advance..

    


  • What does "copy" do in a ffmpeg command line ?

    14 juillet 2016, par PsyberAlyen

    I know that it copies something but other than that what does it do (to what extend it affects the output file) ? Is it a switch or option ? Why does it not have a hyphen before the word itself ?

    I see from other questions that it can copy streams without transcode but what are other possibility that I can manipulate it ?

    I have done ffmpeg --help but I don’t see any documentation about it. Is there a website I can read more about it ?