Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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

Autres articles (71)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (4800)

  • Automatically assign a name to a file being saved

    13 janvier 2017, par J.D Alford

    I"m using ffmpeg to create video clips. I want to automate the process and save the clips without manually giving names to each file being saved. Here is the code I have. It will create and save the clip but only with an extension and not a name.

    @echo off
    cd /d % dp0

    set /p place="Enter location : " %=%

    set /p time="Enter time : " %=%

    for /F %%a in (’dir /b *.mp4’) do set FileName=%% na

    ffmpeg -i "%place%" -ss %time% -codec copy -t 10 %FileName%.mp4

    I’m sure there’s a simple solution but I can’t figure it out. Any help would be appreciated

  • creating thumbnail image through ffmpeg.exe

    18 septembre 2017, par Aniruddha Das

    I am creating thumbnail image(small size) from a big image. for same images it unable to create the thumbnail. if i move the image from one place to another it works.

    case :

    if image x is created in year 2000 and i tried to extract thumbnail from that and let i failed. then i moved the same image to another place and again try to extracted the thumbanil and it successfully extracted the thumbnail. even if i am again transforming the same image to the same place it is working.

    Edit : The command is :

    C:/xampp/htdocs/jcert6/seyretfiles/tools/converter/ffmpeg.exe
      -i "\\myip\knowledge base\videos\user_62\RHSSNet_Image_Library\images\Touchport_II\CD302_14_TPII_17in_PPR_Scanner.jpg"
      -y -f mjpeg -s 72x92 -vframes 1
      -an c:/xampp/htdocs/jcert6/seyretfiles/uploads/thumbnails/user_62/user_62_tz2jliomkfunsrhd1291976903_0.jpg –

    While debugging, I found that if any images do not have created date is not processed by the ffmpeg and generate error image codec parameter.

    is it possible to process images without having a create date in ffmpeg ???

  • Aforge FFMpeg DLL Location Issue

    4 novembre 2013, par Sam35

    I'm using AForge FFMPEG libraries for video compression in .Net.Currently I've put the ffmpeg & Aforge libraries in the location which the application(.exe) exists.

    I need to put these libraries in a common place.i've tried to put these libraries inside system32 folder. It is not working.

    Is there any ways to put the Aforge & FFMpeg Libraries in a common place other than application(.exe) directory ?