Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (59)

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

  • FFmeg : How to apply one unique filter type with varying durations at different times in a video

    26 janvier 2023, par Faxopita

    I'd like to crop top and bottom black bars of a movie. Unfortunately, black bar thickness varies during movie runtime at specific times. So I use the following command to collect crop data at specific times in the movie :

    


    $ ffmpeg -ss 00:03:00 -i "$f" -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1


    


    Then, I execute again this command at a different start time (replacing, e.g. 00:03:00 by 00:43:17) to collect another crop data.

    


    Now, I'd like to use those crop data in a filter. First crop data to be applied for specific duration beginning from specific time and second crop data to be applied for another specific duration beginning from another specific time in the movie.

    


    I thought I could use something like :

    


    -vf="crop=3840:2016:0:72,enable=between(t,0,10),crop=2832:1600:1008:280,enable=between(t,10,50)"


    


    But not working.

    


  • Does anybody know about the ".ms" video format, and how I might be able to convert it ? [closed]

    2 octobre 2024, par Jim Miller

    I'm trying to deal with some very old video files from a Mac OS 8-era CD. They have a ".ms" file extension, and can be played with the old "Movie Player" distributed with OS 8. But Movie Player won't export them to .mp4 or anything currently useful, and I haven't found a modern-day player/converter (VLC, etc), on either Mac or Windows, that will open them. I could update my old testing Mac to QuickTime 3, but I've long ago misplaced my QT 3 Pro key(!), and the free version of QT 3 doesn't do exports. Those were the days... BTW, these ".ms" files are not the same as ".dvr-ms" files, so there's no help there.

    


    Any advice ? Maybe there are some settings for ffmpeg I've missed ? Thanks !

    


  • ffmpeg giving full path as parameter gives error

    15 juin 2015, par Taufiq Abdur Rahman

    This code works

    ffmpeg.exe -i 1.avi -vf "[in] scale=iw:ih, pad=2*iw:ih [left];movie=2.avi, scale=iw:ih, fade=out:300:30:alpha=1 [right]; [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output1.mp4

    I get an error running this.

    ffmpeg.exe -i "c:\test 14\1.avi" -vf "[in] scale=iw:ih, pad=2*iw:ih [left]; movie="c:\test 14\2.avi", scale=iw:ih, fade=out:300:30:alpha=1 [right]; [left][right] overlay=main_w/2:0 [out]" -b:v 768k "C:\test 15\Output.AVI"

    [Parsed_movie_2 @ 04183780] Failed to avformat_open_input ’C’
    [AVFilterGraph @ 02be04e0] Error initializing filter ’movie’ with args
    ’c :\test 14\2.avi’ Error opening filters !

    What am I doing wrong ?