Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (66)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (5595)

  • C# Adding generic text to a video file

    14 juillet 2016, par Ozan Ayten

    I would like to add a Generics Text (like the texts you see when a movie ends, it slides down or up in a slow pace) to a video file. Hardsubbed.

    I’ve been experimented with few api but couldn’t manage to find a solution. Is this possible ? Is there a way to do it without the task getting too complicated ?

    As a side note : I want to add generic text like the Windows Movie Maker does. But I want to do it programmatically of course.

  • Overlaying video with text - ffmpeg speed

    12 février 2017, par Sebadc

    I’m developing an app that has a functionality similar to Snapchat’s, in which you can add text to an existing video and save it on your phone.

    I got this to work using ffmpeg’s "-drawtext" filter. The problem is that I’m getting a noticable delay (20 seconds or so) when adding text to videos, even though they are not too big (around 10 seconds length).

    Can anyone point me in the right direction on how to reduce this delay ? Taking Snapchat as reference, they overlay high quality videos with text with little to no delay.

    I’ve read about extracting the video’s frames and overlaying them manually, but shouldn’t that take longer ?

    Thank you for your help.

  • how i can save overlay text box with a video in gallery by using ffmpeg ?

    10 septembre 2024, par Umair Manzoor

    final escapedOverlayText = overlayText.replaceAll(''', '\'') ;
final command =
'-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $outputPath' ;

    


      print('Executing command: $command');

  final session = await FFmpegKit.execute(command);
  final returnCode = await session.getReturnCode();
  print('here is errror Return code: $returnCode');


    


    that those section of code where this ffmpeg returns the following error
I/flutter ( 6329) : here is errror Return code : 1
I/flutter ( 6329) : FFmpeg failed with return code : 1

    


    i am trying to save the video with overlay text data in the gallery.