Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

Sur d’autres sites (10226)

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