Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (30)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

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

Sur d’autres sites (6266)

  • Concat three videos with one audio

    27 septembre 2018, par Михаил Безуглый

    Thank you for coming here. I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :

    ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4

    Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track, duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video. 1) Do I need to crop the audio to the length that is obtained by merging all three videos ? 2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?

  • FFMPEG Concat failing - System cannot find the file specified

    16 janvier 2017, par geekman

    I’m a PC. I just reversed a video, and want to combine the original file and the reversed file into one new output.mp4 file

    I’m using code copied directly from the ffmpeg wiki

    ffmpeg -i input1.mp4 -i input2.webm \
    -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]" \
    -map "[v]" -map "[a]" <encoding options="options"> output.mkv
    </encoding>

    This is my version :

    ffmpeg -i C:\xampp\htdocs\reviews\uploads\0115171331.mp4 -i C:\xampp\htdocs\reviews\uploads\R0115171331.mp4 \
    -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]" \
    -map "[v]" -map "[a]"  C:\xampp\htdocs\reviews\output.mp4

    And when I run it, it just gives me :

    The system cannot find the file specfied.

    Again, my other ffmpeg commands worked, and these files (except for output) do exist. I’ve double checked.

    Any idea what could be going wrong ?

  • ffmpeg combine multiple FHD videos with concat option, but output is HD

    9 mars 2021, par Zawazawa

    I'm trying to combine multiple 1920x1080 videos(.MTS) with concat option, but output resolution is 1280x720.

    &#xA;

    How can I combine multiple videos with keeping resolution ?

    &#xA;

    Script is below.

    &#xA;

    ffmpeg -safe 0 -f concat -i content_dir.txt -c:v copy -c:a copy -map 0:v -map 0:a output.MTS

    &#xA;

    and the content of input text is below

    &#xA;

    file &#x27;1.MTS&#x27;&#xA;file &#x27;2.MTS&#x27;&#xA;file &#x27;3.MTS&#x27;&#xA;file &#x27;4.MTS&#x27;&#xA;

    &#xA;

    the information of source videos is below.

    &#xA;

    video codec h264_nvenc&#xA;audio codec ac3&#xA;

    &#xA;

    the output of command prompt is below.

    &#xA;

    Input #0, concat, from &#x27;E:\VideoMaker3\tmp_videos_o3_1\content_dir.txt&#x27;:&#xA;  Duration: N/A, start: 0.000000, bitrate: 192 kb/s&#xA;    Stream #0:0: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], 15 fps, 15 tbr, 90k tbn, 30 tbc&#xA;    Stream #0:1(eng): Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s&#xA;

    &#xA;

    Thank you.

    &#xA;

    Add

    &#xA;

    This problem was caused by a little mistake. One of the input videos was 1280x720, so the resolution of the output was not FHD.&#xA;Thank you guys who gave me a comment.

    &#xA;