Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (49)

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

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4004)

  • ffmpeg - automatically chopped ?

    9 avril 2021, par thevoipman

    I have an ISO file that I would like to encode it out to mp4 in parts so it's easier to upload to youtube. I am not sure how it handles with chapters etc in this iso file. I have tried

    



    ffmpeg -i file.iso newfile.mp4


    



    which works great however it's one large file.

    



    I have google and read some where that says if you put a % within the output file, it should automatically give you parts of the video based on the -t you set, so I went ahead and did this

    



    ffmpeg -i file.iso -t 30 newfile%.mp4 


    



    however, the above does not work as it only give me 30 seconds with the file name : newfile%.mp4

    



    Thanks for your time and hoping I can get some help with this. Thank you in advance !

    


  • ffmpeg - automatically chopped ?

    5 août 2012, par thevoipman

    I have an ISO file that I would like to encode it out to mp4 in parts so it's easier to upload to youtube. I am not sure how it handles with chapters etc in this iso file. I have tried

    ffmpeg -i file.iso newfile.mp4

    which works great however it's one large file.

    I have google and read some where that says if you put a % within the output file, it should automatically give you parts of the video based on the -t you set, so I went ahead and did this

    ffmpeg -i file.iso -t 30 newfile%.mp4

    however, the above does not work as it only give me 30 seconds with the file name : newfile%.mp4

    Thanks for your time and hoping I can get some help with this. Thank you in advance !

  • How to use ffmpeg to cut audio into overlapping segments ?

    8 novembre 2019, par Maryam Rahmani Moghaddam

    I have used the following code in python to cut an audio file to equal parts with a length of 5 seconds :

    import subprocess
    command = "ffmpeg -i audio.wav -f segment -segment_time 5-c copy every_5_sec/out%03d.wav"
    subprocess.call(command, shell=True)

    But I need overlapping parts. In other words, I need an audio segment to contain one second of the previous and one second of the next audio segments.