Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (75)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8254)

  • Invalid too big FFmpeg Crop

    15 avril 2021, par cropperteam

    I have a video cropper working fine to all videos I tested, but a video from s20 ultra, gives me some error in FFmpeg, i don't really know if the video is oversize or not my source code https://github.com/rushidevmurari/RushiCropVideo/blob/213166834b0bc6ce83ab3f4ac494f261a57d7436/app/src/main/java/com/androworld/allinonevideoeditor/videocrop/VideoCropActivity.java

    


    I got these link but nothing good to my work Error when cropping video using FFMPEG

    


      [graph 0 input from stream 0:0 @ 0x7673807a4b40] sws_param option is deprecated and ignored
    [Parsed_crop_0 @ 0x7673807a4c80] Invalid too big or non positive size for width '3840' or height '1920'
    [Parsed_crop_0 @ 0x7673807a4c80] Failed to configure input pad on Parsed_crop_0
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #0:0
    Conversion failed!


    


    my command

    


    I/System.out: "-y" "-ss" "0" "-t" "31" "-i" "/storage/emulated/0/Download/20210227_175547.mp4" "-strict" "experimental" "-vf" "crop=w=3837:h=2160:x=1:y=-2070" "-r" "15" "-ab" "128k" "-vcodec" "mpeg4" "-acodec" "copy" "-b:v" "2500k" "-sample_fmt" "s16" "-ss" "0" "-t" "31" "/storage/emulated/0/VEditor/VideoCroper/20210227_175547-0-13.mp4"


    


    I/mobile-ffmpeg : Loading mobile-ffmpeg.

    


    my full log https://ghostbin.co/paste/s2qdw

    


  • PHP FFmpeg, upload video and let user select start and end offsets to trim the video

    9 novembre 2015, par Kunal

    This is what I need to do :

    1. User goes to the HTML web app (works on desktop and mobile)
    2. Uploads a video (depending on phone recording and bitrate, could be 100mb)
    3. Use FFMPEG to trim the video to 15 seconds only.

    Now for the 3rd part we need to let the user select the start and end offsets for the trimming. Maybe extract scenes and let them select ?

    Please help. Thanks in advance.

  • Stream two vides in a row over http?

    24 juillet 2014, par Zlatko

    I have two video files (mpg) and I want to stream them back to a client (mobile devices) but as one video : the first one appended to the second one.

    I know I can use ffmpeg to concat them :

    ffmpeg -i "concat:input1.mpg|input2.mpg|input3.mpg" -c copy output.mpg

    What I want is to avoid creating that concatenated file because I have potentially dozens of files to play, and I want to stream them and stop when the user closes the window and not create that one big output chunk.

    For what it’s worth, I plan to stream those with Node.js.