Recherche avancée

Médias (1)

Mot : - Tags -/university

Autres articles (63)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5728)

  • Anomalie #4306 : Erreur détection code mal formé

    6 mars 2019, par jluc -

    décidément la balise code se rebelle. En pseudo html c’est :

    code 
       /onglet
    /code
    cadre
       $onglet2 = ($quoi == ’actifs’ ? ’plugins_actifs’ : ’admin_plugin’) ;Retour ligne automatique
    /cadre
    

    Ou sinon voir là : https://contrib.spip.net/ecrire/?exec=article&id_article=5117

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