Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (107)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (8544)

  • How To Run Multiple Code ffmpeg in Macbook Terminal Using bat file ?

    26 juillet 2021, par ChhengRavy

    I have a problem to run bat file in Macboook Terminal. I created file bat that has code below.

    


    ffmpeg -i input1.mp4    -vf hflip -c:a copy output1.mp4
ffmpeg -i input2.mp4    -vf hflip -c:a copy output2.mp4
ffmpeg -i input3.mp4    -vf hflip -c:a copy output3.mp4


    


    If I run that bat file in window Command Promt I will get three outputs(output1,output2,output3). It work fine.

    


    But If I run it in terminal Mackbook by drag that file to terminal I get only output3. I don't know why in Macbook It works only the last code.

    


    Please Anyone knows about this help me. I was stuck a few days already.

    


    Thank you so much for your help.

    


  • FFmpeg exit with error code 1 when using .bat file

    30 avril 2022, par Taqi Vaheed

    I use a .bat file to batch attach audio tracks to movies. Everything was good but in last days the ffmpeg stopped working correctly. When I restart the pc it work again but after some task the error come back. I tried to reinstall the windows but the problem does not solved.

    


    here is my ffmpeg code :

    


    for %%a in ("*.mp4*") do ffmpeg -y -i "%%a"^
 -itsoffset 0^
 -i %%~na.mp3 -i cover.jpg^
 -map 2 -map 0:v:0 -disposition:0 attached_pic^
 -map 1:a:0 -disposition:a:0 default^
 -map 0:a:0 -disposition:a:1 none -sn^
 -metadata title=""^
 -metadata:s:a:0 handler_name="Persian"^
 -metadata:s:a:1 handler_name="English"^
 -metadata:s:v:0 handler_name="English"^
 -metadata:s:a:0 language=per^
 -metadata:s:a:1 language=eng^
 -c copy "Final\%%~na.mp4"


    


  • Get ffmpeg source code at a specific revision

    14 octobre 2012, par satuon

    I know how to do it with SVN, but they've moved to Git.

    The command for getting the newest version as described on their site is

    git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg

    What would be the appropriate arguments for getting a specific revision ?