Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (75)

  • 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 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (9324)

  • Create 1080p videos with javacv and ffmpeg or alternate lib

    20 novembre 2012, par 501 - not implemented

    is there a option in JavaCV to capture 1080p videos from images ?
    If i use the FFmpegFrameRecorde, i only find 480p.

    Or is there a alternate library for Java ?
    I want to use it to create a video from kind of pictures (with zooming and rotating effects)

    greetings

    //EDIT

    Okay,
    now i've tested a very simple code :

       FrameRecorder  recorder = FFmpegFrameRecorder.createDefault("out.avi", 1920, 1080);
       recorder.start();
       recorder.record(iplImage);
       recorder.stop();

    and it's works ! But the file is very large (10sec around 300MB...)

    Now i want to add a codec like xvid. I've get the following eyxception :

    com.googlecode.javacv.FrameRecorder$Exception: codec not found

    But i've installed the xvid paket. Must i add the codec in a special folder like the ffmpeg bin ?

  • avutil/timecode : Avoid undefined behavior with large framenum

    28 novembre 2020, par Michael Niedermayer
    avutil/timecode : Avoid undefined behavior with large framenum
    

    Fixes : signed integer overflow : 2147462079 + 2149596 cannot be represented in type 'int'
    Fixes : 27565/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5091972813160448

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/timecode.c
  • How to concat two videos of different format with stretching the videos

    25 juillet 2020, par Xnox

    I want to concat two videos together but in doing so, the second video is being stretched. Here is my code

    &#xA;

    $command = "ffmpeg -i ../unprocessed/{$temp_name} -vf \"[in]drawtext=fontsize=47:fontcolor=white:fontfile=&#x27;../fonts/Nunito/nunito.ttf&#x27;:text=&#x27;{$name}&#x27;:x=10:y=(h) - 120, drawtext=fontsize=35:fontcolor=white:fontfile=&#x27;../fonts/Amiri/amiri.ttf&#x27;:text=&#x27;{$second}&#x27;:x=10:y=(h) - 80, drawtext=fontsize=30:fontcolor=white:fontfile=&#x27;../fonts/Amiri/amiri.ttf&#x27;:text=&#x27;{$hospital}&#x27;:x=10:y=(h-40)[out]\" -y ../unprocessed/{$edited}";&#xA;    system($command);&#xA;    unlink("../unprocessed/{$temp_name}");&#xA;&#xA;    $video_1 = $_POST["video1"];&#xA;    $video_2 = $edited;&#xA;&#xA;    try{&#xA;&#xA;      //generating intermediate files&#xA;      $intermediate1 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";&#xA;      $command = "ffmpeg -i ../unprocessed/{$edited} -qscale 0 -r 25 ../unprocessed/{$intermediate1}";&#xA;      system($command);&#xA;      unlink("../unprocessed/{$edited}");&#xA;&#xA;      $intermediate2 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";&#xA;      $command = "ffmpeg -i ../admin/videos/{$video_1} -qscale 0 -r 25 ../unprocessed/{$intermediate2}";&#xA;      system($command);&#xA;&#xA;      $outputfile_temp = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";&#xA;&#xA;      $command = "ffmpeg -i \"concat:../unprocessed/{$intermediate1}|../unprocessed/{$intermediate2}\" -c copy ../merged_videos/{$outputfile_temp}";&#xA;      system($command);&#xA;      unlink("../unprocessed/{$intermediate1}");&#xA;      unlink("../unprocessed/{$intermediate2}");&#xA;&#xA;      $outputfile = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";&#xA;      $command = "ffmpeg -i ../merged_videos/{$outputfile_temp} ../merged_videos/{$outputfile}";&#xA;      system($command);&#xA;      unlink("../merged_videos/{$outputfile_temp}");&#xA;

    &#xA;