Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (108)

  • 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 ;

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

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

Sur d’autres sites (9955)

  • How to increase the audio length using FFMPEG ?

    22 janvier 2016, par Rama Lingam

    I have the MP3 audio file output.mp3 with 00:00:01 length.
    I want to convert the audio file to output_test.mp3 with 00:00:50 length.
    The audio file should be play repeat at end of length 00:00:50. How to do it ?

    $imgDir     = 'upload/2016/01/tmp_81332';
    $ffmpeg     = '/usr/bin/ffmpeg';

    // Convert Audio Length Path
    $convAudioPath  = $imgDir."/output.mp3";
    $convAudioPath_test = $imgDir."/output_test.mp3";

    exec("$ffmpeg -i $convAudioPath -vcodec copy -acodec copy -ss 00:00:00.000 -t 00:00:50.000 $convAudioPath_test");

    Advise any idea !

  • Bulk trim multiple videos all to the same specified length [closed]

    20 janvier 2024, par Retsied

    I'm looking for a way to bulk trim multiple (100+) videos of varying length all to the same specified length. Anyone have any ideas ? I've looked into ffmpeg, has anyone accomplished this ?

    


  • How to shrink/expand a video file length in UNIX

    26 mars 2015, par Maria Feena

    I need to shrink/expand a video file (mp4, avi) length using command line tools,

    say the original file have 1 min length and output file should have length of 1:10 min or 0:50 min. I would like to keep other aspects of the video as it is.

    I would like to do same thing on mp3 file too. there are many files so I need to do it all in command line only.

    help me please.