Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (103)

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

  • Converting Gif to mp4 where the mp4 is longer than animated gif ?

    19 octobre 2017, par VladoPortos

    Is there a way to tell ffmpg to convert animated gif to mp4 that is longer than run time of the animated gif ? Les say the gif is 4 sec long setup to be repeated as animated gifs tend to be, but I need 10 sec mp4 out of it. How would I do it in ffmpg. My current line for converting looks like this :

    ffmpeg -i $i.gif -c:v libx264 -pix_fmt yuv420p -crf 4 -b:v 300K -vf scale=320 :-1 -movflags +faststart $i.mp4 ; done

    Thanks.

  • FFMPEG : How do I set the transparency color of an animated GIF for overlaying on a video ?

    8 novembre 2017, par Jonathan Leger

    I have a video clip that I’ve converted to an animated GIF with ffmpeg. I would like to overlay that animated GIF onto a video clip. The problem is I can’t figure out how to set the transparency color of the GIF. I want the solid black background of the GIF to be transparent.

    ffmpeg -i video.mp4 output.gif

    That’s what I’m doing to created the animated GIF. Again, looks great. I just need to add black (#000000) as the transparent color of the GIF.

    Thanks !

  • Upload part of a video files to server

    10 septembre 2014, par Peter Lur

    I want to make a webpage where you can upload a video to the server (let say using a File Input HTML TAG). I would like to know if it’s possible in ANY languages to upload only small parts of the video files without uploading the whole file first and then splitting the file.

    Let me give you an example of what I am trying to achieve. I am trying to create a service where one upload a long & big video file and I give them 10 samples segment of the video file as a result.

    Let say I have a 1 hours long & /1 Gig size video (avi) file.

    I would like to get a sample of 10 segments of 1 minutes spread across the entire file uploaded to the server.

    I know that I could upload the whole file and then split it but uploading a 1G file would be way long for the user.

    I want to know if upfront there is a way to choose what part of the file need to be uploaded so I could upload only specific segments and then re-construct the files to make them readable.

    I know this is more of a subjective question and it may not be well fitted for Stack Overflow but I really need to figure out how to do that.