Recherche avancée

Médias (91)

Autres articles (32)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (4403)

  • How to put watermak on video with FFMPEG,without resizing the watermark because of video resolution ?

    22 mai 2014, par Shahbaz Younis

    I’m looking for a way that the watermark picture does not get resized,if the video resolution is high or less. Right now I have this problem, if I upload a video like 720p the watermark is really small and when I upload a video that is 240p the watermark is really big. I would just like it to be only one size. Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where I put it ? Here’s the code I’m using right now

    if ($ffmpeg_ver == "old") {
                       $watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
               } else {
                       $watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
               }
  • Android video encoding with fr and resolution manipulation

    24 février 2017, par apSTRK

    I want to be able to take a video recorded with an Android device and encode it to a new Resolution and Frame Rate using my app. The purpose is to upload a much smaller version of the original video (in size), since this will be videos 30 min long or more.

    So far, I’ve read of people saying FFmpeg is they way to go. However, the documentation seems to be lacking.

    I have also considered using http opencv http://opencv.org/platforms/android.html

    Considering I need to manipulate the video resolution and frame rate, which tool do you think can do such things better ? Are there any other technologies to consider ?

    An important question is, since this will be long videos, is it reasonable to do the encoding in an android device (Consider power resources, time, etc.)

    Thanks in advance !

  • FFMPEG, transcoding resolution error

    6 mai 2014, par Sajith Dilshan Jamal

    I am trying to convert a file using ffmpeg using the following command :

    ffmpeg input.flv -strict experimental -s 360x288 output.3gp

    I get the below error :

    The specified picture size of 360x288 is not valid for the H.263 codec.
    Valid sizes are 128x96, 176x144, 352x288, 704x576, and 1408x1152. Try H.263+

    The problem here is that i don’t use a command line to execute the commands, but through another program that I am coding,

    So if I am to only use the above specified resolutions, is there a command for ffmepeg so that given a codec, to retrieve the possible resolutions so that I can select the optimal one to convert with, not just for the above codec, but all codecs supported by ffmpeg.

    I have seen the documentation page of ffmpeg and the supported video resolutions but that is not what I am looking for, that is the resolutions that ffmpeg supports, not the resolutions the codec supports,

    I am looking for a command that will give me the resolutions that a given code will support

    thanks,