Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (94)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (10612)

  • avcodec : add g732_1 parser

    18 décembre 2018, par Paul B Mahol
    avcodec : add g732_1 parser
    
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/g723_1_parser.c
    • [DH] libavcodec/parsers.c
    • [DH] libavcodec/utils.c
  • ffmpeg making flashing / blinking text

    16 septembre 2022, par samusugiru

    I'm trying to use ffmpeg to add blinking / flashing text to a short movie file.

    


    The code attached works for blinking text every 10th frame BUT the text only comes up for a single frame, so it's not very readable. I'd like it to hold for, say, 4 frames. I wonder if theres some kinda fancy combo using between as well as enable ?

    


    I'm semi new to this so my brain stopped when trying to come up with a solution.

    


    ffmpeg -i input.mov -vf "drawtext=text='TEXTY':enable= (not (mod(n\,10)) )" output.gif


    


  • Need help combining commands in to a script to run in Ubuntu

    17 juin 2020, par user298294

    I have a bunch of video files with DTS audio that I need to convert to AC3. I have found commands that can do different parts of the task but I'm not sure how to put it all together to make a script that works. I have found the following script that will convert the audio from all my files to AC3 however I would prefer for it to only convert the DTS audio files to AC3. The script is as follows.

    



    shopt -s globstar
for f in **/*.mkv; 
do 
    fname="${f##*/}"
    ffmpeg -i "$f" -c:v copy -c:s copy -c:a ac3 "/some/directory/$fname" &&
    mv "/some/directory/$fname" "$f"
done


    



    I have also found this command that will return what sort of audio codec the mkv file is using.

    



    `ffprobe -v error -select_streams a:0 -show_entries stream=codec_name -of default=nokey=1:noprint_wrappers=1 input.mkv`


    



    So I'm wondering how I can combine the two to create a script that will do what I want it to do. I'm guessing I can add an if function using ffprobe at the beginning of the script ? Something like this...

    



    shopt -s globstar
for f in **/*.mkv; 
do 
    fname="${f##*/}"
    if ffprobe -v error -select_streams a:0 -show_entries stream=codec_name -of 
       default=nokey=1:noprint_wrappers=1 "$f" | egrep "DTS"; then
       ffmpeg -i "$f" -c:v copy -c:s copy -c:a ac3 "/some/directory/$fname" &&
       mv "/some/directory/$fname" "$f"
    fi
done


    



    Are there any problems with that ? I haven't written scripts since I was in high school playing around with my graphics calculator because I was bored so any help would be greatly appreciated.