Recherche avancée

Médias (91)

Autres articles (48)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • 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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7458)

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

  • Create video from series of images using android

    15 septembre 2014, par Farrakh Javed

    I’m trying to write an android application in which we allow user to create video from series of images.
    I did lot of investigation like C/C++ libraries FFMPEG, X264. These can be used using NDK, but i dont know how to use it via NDK, i also did investigation but did not get about this.
    I find another library JCodec It is java based. I tried different codes of JCodec but did not get any success. Below are Links related to JCodec :

    this,
    this and this.

    Now can anyone guide me about this question and can i have some suggestion how to implement this feature.