Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • fftools/ffprobe : Factor writing common side data types out

    1er juin, par Andreas Rheinhardt
    fftools/ffprobe : Factor writing common side data types out
    

    Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffprobe.c
  • How to divide my video horizontally using ffmpeg (without any other side-effects) ?

    1er février 2021, par Mayank Thapliyal

    I am processing my video(640 X 1280 dimensions). I want to divide my video horizontally into 2 separate videos(each video will now be 640 X 640 in dimensions),then combine them horizontally (video dimension will be now 1280 X 640)in a single video. I did the research on the internet and my issue was solved and not solved at the same time

    &#xA;

    I made a batch file and add these commands in it :-

    &#xA;

    ffmpeg -i input.mp4 -filter_complex "[0]crop=iw:ih/2:0:0[top];[0]crop=iw:ih/2:0:oh[bottom]" -map "[top]" top.mp4 -map "[bottom]" bottom.mp4&#xA;ffmpeg -i top.mp4 -i bottom.mp4 -filter_complex hstack output.mp4&#xA;

    &#xA;

    Yes,my task got solved but many other issues also came out of it :-

    &#xA;

    1.) My output video has NO audio in it. No idea why there is no audio in the end results

    &#xA;

    2.) My main video file (on which I am doing all this) is 258 MB in size. But the result was only 38 MB in size. No idea what is happening ? And even worse,I closely looked at the video,results were pretty same (only animation were not as smooth in output file as compared to input file)

    &#xA;

    3.) It is taking too much time(I know that computing takes some time but maybe there may be some way/sacrifice to make the process much quicker)

    &#xA;

    Thanks in advance for helping me

    &#xA;

  • can i set set language of a subtitle to english forced

    22 avril 2020, par Ginso

    i have a file with 4 subtitles : german, english, german forced, and english forced. However they are shown as

    &#xA;&#xA;

    title 1 [English]&#xA;title 2 [German]&#xA;title 3 [English]&#xA;title 4 [German]&#xA;

    &#xA;&#xA;

    i woud like to make the forced ones recognizable as such. Of course i could set -metadata:s:s:3 title="English forced" but then it would be shown as English forced [English] and i wonder if i could also set the language somehow so that it is called &#xA;title 3 [English forced] or similar ?

    &#xA;