Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (32)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5022)

  • aarch64 : use ’#’ for whole line asm comments

    30 mai 2014, par Janne Grunau
    aarch64 : use ’#’ for whole line asm comments
    

    Both gnu as and clang treat lines starting with ’#’ as comments if they
    aren’t consumed by the C-style preprocessor.
    Using ’//’ does not work with clang since comments are removed before
    macro expansion.

    • [DBH] libavutil/aarch64/asm.S
  • How to increase line-height of text using drawtext with FFMPEG ?

    21 octobre 2020, par Romualdo Arrechea Hernández

    I'm using the current code to create a video with some text of several lines. When executed I'm receiving a video with the text joined vertically because of lacking space. How do I do to add line-height space ?

    



    ffmpeg -i videoInput.mp4 \
       -vf drawtext="./font/Roboto/Roboto-Bold.ttf: \
           text='testing text \ntesting text \ntesting text':\
           fontcolor=yellow:\
           fontsize=36:\
           box=1:\
           boxcolor=black@0.5: \
           boxborderw=160:\
           x=(w-text_w)/2:\
           y=(h-text_h)/2"\
    -codec:a copy \
    videoOutput.mp4


    


  • Exit FFMPEG when a line freezes

    21 juin 2021, par user15966041

    I have a ffmpeg bat file for retrieving streams through rtsp

    


    bat file

    


    ffmpeg -xerror -loglevel error -stimeout 1111111 -rtsp_transport tcp -v verbose -i "rtsp://admin:admin1234@10.8.0.14:81/cam/realmonitor?channel=1&subtype=1 "  -vf scale=1024:576 -vcodec libx264  -sc_threshold 0 -f hls    -hls_flags delete_segments    -hls_time 2  -segment_time 2 -hls_list_size 2 C:\Apache24\htdocs\smartmine\ipcam\video_1\stream.m3u8  




    


    The problem im facing is that, after ffmpeg had run for a few hours, the speed decreases and the processing of the video stops and stays on that single line. FFMPEG

    


    Is there any way to exit the ffmpeg when this is happening. I have tried a lot of methods, but none of them worked out. Thanks a lot