Recherche avancée

Médias (91)

Autres articles (57)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10027)

  • How can I compile FFmpeg for Windows using only libmp3lame ? [closed]

    15 février 2024, par Neil S

    I want to compile the latest version of FFmpeg using only the latest version of libmp3lame on Windows if it's possible. How can I do this ? I've searched online and on here but their does not seem to be any solutions for Windows. The reason I'm asking about this is because I'd like to keep the file size small. I haven't tried any scripts or anything as I have no experience doing this. Thanks for any guidance...

    


  • mov : parse @PRM and @PRQ metadata tags

    3 décembre 2014, par Vittorio Giovara
    mov : parse @PRM and @PRQ metadata tags
    

    These tags describe the product and quicktime library version respectively.
    They originate from Adobe Premiere, but also some other programs use them.
    Contrary to other tags, they contain ’raw’ data which is not to be
    interpreted as iso639 or mac strings.

    Based on a patch by Peter Ross <pross@xvid.org>.

    • [DH] libavformat/mov.c
  • Maintaining Subtitles after FFMpeg cut

    13 juin 2022, par Andrea Di Pinto

    I am cutting a video using FFMpeg but I can't "force" FFMpeg to maintain the subtitles during the cutting.

    &#xA;

    Now, I have a file video .mkv from which I want to trimmer the first second, the reason is simply that the audio is advanced of exactly one second, and the only solution I found is trimming the video and the subtitles of one second.

    &#xA;

    So I proceeded with the "usual" code to cut the file :

    &#xA;

    ffmpeg -i input.mkv -ss 00:00:01 -c copy -t 01:48:03 output.mkv   &#xA;

    &#xA;

    But the problem is that the final product is always just the video and one of the many audio tracks (for the audios is not a problem since I can repeat the process for each audio track and merge all together with MKVToolNix), BUT no subtitles.

    &#xA;

    So I'm wondering if there is a way to cut subtitles, or equivalently to cut the video maintaining the subtitles.

    &#xA;