Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (69)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8448)

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

    


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

    


    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


    


    Here what I expect to be like this :

    


    |-----------VIDEO1-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO2-----------|
|-----------AUDIO2.mp3-----|
|-----------VIDEO3-----------|
|-----------AUDIO3.mp3-----|
|-----------VIDEO4-----------|
|-----------AUDIO4.mp3-----|
|-----------VIDEO5-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO6-----------|
|-----------AUDIO2.mp3-----|


    


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

  • 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