Recherche avancée

Médias (91)

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (3124)

  • use ffmpeg in android studio2.0 can not find file

    29 avril 2016, par kemp

    I successfully generated android folder with arm/lib and arm/include files
    like this :
    enter image description here

    And then I created one Android.mk file in /Users/whyus/Library/Android/sdk/ndk-bundle/sources/ffmpeg/android/arm one Android.mk in my android project (/Users/whyus/Downloads/FFmpeg/app/build/intermediates/ndk/debug/)
    and my gradle is like this :
    enter image description here

    but when I build the c file,it can not find the include head

  • How to concatenate mp4 file and an avi file in python ?

    9 avril 2020, par programmer pro

    I am trying to concat a mp4 audio file and an avi audio file in python. I am currently using pydub to do this. I am running this code :-

    



    My file name is combine.py and my python version is 3.7.6

    



    from pydub import AudioSegment

part1 = AudioSegment.from_file('part1.mp4', format='mp4')
part2 = AudioSegment.from_file('part2.avi', format='avi')

combine = part1 + part2

combine.export('combine.mp4', format='mp4')




    



    But, i am getting this error :-

    



    Traceback (most recent call last):&#xA;  File ".\combine.py", line 4, in <module>&#xA;    part2 = AudioSegment.from_file(&#x27;part2.avi&#x27;, format=&#x27;avi&#x27;)&#xA;  File "C:\Users\User\AppData\Local\Programs\Python\Python37\lib\site-packages\pydub\audio_segment.py", line 665, in fro&#xA;m_file&#xA;    info = mediainfo_json(orig_file)&#xA;  File "C:\Users\User\AppData\Local\Programs\Python\Python37\lib\site-packages\pydub\utils.py", line 288, in mediainfo_j&#xA;son&#xA;    for token in extra_info[stream[&#x27;index&#x27;]]:&#xA;KeyError: 1&#xA;</module>

    &#xA;&#xA;

    I am not understanding why i am getting this error. &#xA;Please help me.

    &#xA;

  • How to randomly select a file with batch-file ?

    15 septembre 2021, par Mena

    I'm new with ffmpeg, and I tried to find the Answers but didn't help.

    &#xA;

    I have 4 Audio file name : audio1.mp3 , audio2.mp3 , audio3.mp3 , audio4.mp3&#xA;and i want to merg those mp3 to those mp4 one by one with loop.&#xA;Here my code bath file that's i tried.

    &#xA;

    for %%a in ("*.mp4") do ffmpeg -i "%%a" -i ("*.mp3") -map 0:v -map 1:a -c:v copy -shortest "C:\Users\Admin\Desktop\MyOutputVideo\%%~na.mp4" pause&#xA;

    &#xA;

    Here what I expect to be like this :

    &#xA;

    |-----------VIDEO1-----------|&#xA;|-----------AUDIO1.mp3-----|&#xA;|-----------VIDEO2-----------|&#xA;|-----------AUDIO2.mp3-----|&#xA;|-----------VIDEO3-----------|&#xA;|-----------AUDIO3.mp3-----|&#xA;|-----------VIDEO4-----------|&#xA;|-----------AUDIO4.mp3-----|&#xA;|-----------VIDEO5-----------|&#xA;|-----------AUDIO1.mp3-----|&#xA;|-----------VIDEO6-----------|&#xA;|-----------AUDIO2.mp3-----|&#xA;

    &#xA;