Recherche avancée

Médias (91)

Autres articles (82)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5810)

  • Converting a video to a vertical video with blurred sidebars

    28 mars 2020, par vinay jv

    I was trying to convert a video to a vertical video with blurred sidebars in the android app. I tried the following code in the windows cmd command it works like a charm but when I tried it on android it just stuck in the processing part. Snapshot of my code for converting a video into vertical video``

    String[] command = {"-i", inputfile,"-filter_complex","[0:v]scale=-2:iw*16/9,boxblur=luma_radius=min(h,w)/20:luma_power=1:chroma_radius=min(cw,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,crop=w=ih*9/16",String.valueOf(outputFile)};

    Am I missing any codecs here like x264 ?

  • FFmpeg keep same video dimension if video height is less than x480

    6 juillet 2017, par Niks

    The following code im using for video converting :

    ffmpeg -i input.mkv -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k -movflags +faststart -s hd480 output.mp4

    I want to keep same video dimension for smaller videos. For example keep 640x360 dimension if video height is less than x480.

    Is ffmpeg such option ?

  • Video is not clear after using FFMPEG4ANDROID compress video

    22 juillet 2016, par J.Miller

    I am building an app where i need to compress video before uploading it to server. the video without compressing is about Five minutes,60M,Android video bit 2x1024x1024,640*480. Now I am using FFMPEG library to compress video http://androidwarzone.blogspot.co.il/2011/12/ffmpeg4android.html .The following is command commandStr = "ffmpeg -y -i " + url + " -strict experimental -vf crop=480:480:0:0 -s 480x480 -r 30 -aspect 1:1 -ab 44100 -ac 1 -ar 22050 -vcodec mpeg4 -b 300k " + demoVideoFolder + "out.mp4" ;. successful but not clear at all. here is my question : is there only way to compress video by reducing bitrate ? I hope to get video after compressing is as same as the original video. is anyone give me some advice ? thanks !