Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (94)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (15621)

  • configure : use no-narrowing for cuda-llvm compilation

    12 février 2021, par Matt Oliver
    configure : use no-narrowing for cuda-llvm compilation
    

    This fixes llvm compiler generating errors about narrowing conversion with
    recent releases.

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] configure
  • FFMPEG PHP Message : Unable to save frame

    30 avril 2020, par Hitesh Vala Ahir

    Hello I have try to take thumbnail through FFMPEG but get the error message like Message : Unable to save frame.

    &#xA;&#xA;

    PHP 7.0

    &#xA;&#xA;

    php-ffmpeg/php-ffmpeg : ^0.16.0

    &#xA;&#xA;

    Below is the code

    &#xA;&#xA;

    require &#x27;vendor/autoload.php&#x27;;&#xA;&#xA;&#xA;&#xA;$sec =1;&#xA;$movie = &#x27;video1581091620.mp4&#x27;;&#xA;$thumbnail = &#x27;thumbnail.png&#x27;;&#xA;&#xA;try{&#xA;$ffmpeg = FFMpeg\FFMpeg::create();&#xA;$video = $ffmpeg->open($movie);&#xA;$frame = $video->frame(FFMpeg\Coordinate\TimeCode::fromSeconds($sec));&#xA;$frame->save($thumbnail);&#xA;echo &#x27;<img src="http://stackoverflow.com/feeds/tag/&#38;#x27;.$thumbnail.&#38;#x27;" style='max-width: 300px; max-height: 300px' />&#x27;;&#xA;}catch(Exception $e) {&#xA;  echo &#x27;Message: &#x27; .$e->getMessage();&#xA;}&#xA;

    &#xA;

  • 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(''', '\'') ;&#xA;final command =&#xA;'-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $outputPath' ;

    &#xA;

      print(&#x27;Executing command: $command&#x27;);&#xA;&#xA;  final session = await FFmpegKit.execute(command);&#xA;  final returnCode = await session.getReturnCode();&#xA;  print(&#x27;here is errror Return code: $returnCode&#x27;);&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;