Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (83)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (8793)

  • Issues with file created using FFMPEG

    31 mars 2020, par amateur

    I am a newbie to ffmpeg but currently using it Powershell to cut video clips from an mp4 file. What I am looking to do is cut a segment from a video and create a new mp4 file with such. I run the following command, see following example for one clip created. Run this multiple times with different start times and duration's through out the source file :

    



    -ss 00:02:42.9060000 -i "C:\Users\User\Desktop\MySourceVideo.mp4" -t 00:00:07.2800000 -c:v copy "C:\Users\User\Desktop\MyClip.mp4" -y -v quiet


    



    Source file is mp4, with H264 video codec, AAC video codec.

    



    While it creates the clips, I run it at different times in the source video creating multiple cut mp4 videos. When I look to play the newly created mp4 files, for some clips I find some inconsistencies, such as :

    



      

    • Playing the file for first few seconds just has black scream
    • 


    • Playing the file for first few seconds has video moving very fast and then normal again
    • 


    



    Some clips are perfect, others have the above issues. I would appreciate if my command could be checked in case I am missing a parameter or any further insight could be given ?

    


  • How to create .so (Shared Object library file) from .c (C file) for Arm Processor ?

    2 juillet 2013, par Navjot Bedi

    I wanted to create a Prebuilt Shared library .so from .c file for ARM processor. Kindly give me some steps to do this and also how to include and access its functions in android.

  • ffmpeg - merge multiple audio file with the single video file at specific time

    2 septembre 2021, par Dishant Mewada

    I have multiple audio files speech_01.mp3, speech_02.mp3 etc. with 5 seconds duration. I want to merge these audio files with a single video file (video.mp4), at every 6 seconds step.

    


    I have tried

    


    ffmpeg -y -i video.mp4 -itsoffset 6 -i speech_01.mp3 -itsoffset 12 -i speech_02.mp3 -filter_complex amix -map 0:v -map 1:a -map 2:a -c:v copy -async 1 -c:a aac -strict experimental output.mp4


    


    For some reason, this method only merges the first audio file.

    


    Thanks.