Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (58)

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

  • mxfdec : Break out parts of mxf_read_header() into separate functions

    28 octobre 2014, par Tomas Härdin
    mxfdec : Break out parts of mxf_read_header() into separate functions
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mxfdec.c
  • ffmpeg sync parts of video or exclude intersection frames

    25 octobre 2014, par NadY

    I have two video files that make part of a bigger one, but both parts contain a portion that repeats itself.
    Eg. v1 : 00m-16m ; v2 : 10m-20m ; the part that repeats in both videos it’s 10m-16m

    Is there a way I could recreate the big video by automatically detect the intersection and exclude it from one of the videos ? Or can I find the time interval of the intersection ?

    Thanks !

  • no audio while using ffmpeg to extract parts of video

    16 septembre 2014, par BrewGold

    I have a short video clip in .MPG file recorded using video camera. I want to extract 30 seconds of the clip so I used the following command :

    ffmpeg -i INPUTFILE.MPG  -ss 00:00:10  -t %00:00:30 -c:v copy -c:a copy PART1.MPG

    I have also tried the following command :

    ffmpeg -i INPUTFILE.MPG  -ss 00:00:10  -t %00:00:30 -vcodec copy -acodec copy PART1.MPG

    The function works but resulted video clip does not have any audio. Am I missing something ?

    Thank you and appreciate your help