Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (8191)

  • Fade out using ffmpeg and -i file ?

    21 novembre 2022, par gTcV

    I'm aware that I can achieve a fade-out effect using ffmpeg command line options (see e.g. here). Is this also possible using a -i file ?

    


    "-i file" is almost surely not the correct term for what I have in mind, so let me elaborate a bit on that. What I mean by "-i file" is a file of the following form :

    


    # input.txt

file song_1.mp3
inpoint  00:00:00.000
outpoint 00:01:13.870

file song_2.mp3
inpoint  00:02:49.500
outpoint 00:03:17.620


    


    I then pass this file to ffmpeg using the -i option (which is why I call this technique "-i files").

    


    ffmpeg -f concat -i input.txt -c copy output.mp3 -y


    


    So what I would like to be able to do is to change input.txt to something like the following.

    


    # input_with_fade.txt

file song_1.mp3
inpoint  00:00:00.000
outpoint 00:01:13.870
fade_out 00:01:10.000

file song_2.mp3
fade_in  00:02:54.500
inpoint  00:02:49.500
outpoint 00:03:17.620


    


  • Fix mp4 file downloaded with rtmpdump

    18 octobre 2014, par Mega-X

    Some days ago I’ve downloaded a mp4 file using rtmpdump but, unluckily, I didn’t know about the --live option which I needed to put in order to download that mp4 correctly. So now I have a mp4 file which jumps back and I cannot download that another time since it is not online anymore. How can I fix the corrupt mp4 file ? I’ve tried with ffmpeg -i old_file.mp4 new_file.mp4 but the file is still corrupted.

  • ffmpeg - set metatag to .ts file

    23 septembre 2013, par Febin

    i have a .mp4 video, that is recorded in iphone4s.This video file contains 'Rotate - 180' metadata.

    When i am converting the .mp4 file to .ts using ffmpeg. I lost the 'Rotate' meta tag.

    The ffmpeg command that i have used is given below.

    ffmpeg -i input_file.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb output_file.ts

    is there any one know how to set 'Rotate' meta data to a .ts file ?

    or

    any other way to copy all meta datas in the input .mp4 file to output .ts file

    Thank you