Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (30)

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

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5701)

  • Complex, how to -o, -mv or similar into this code ? [closed]

    13 décembre 2020, par Sounds Good

    Trying to change location of output file
Using Windows>Ubuntu app>Shell/Cmd>Bash (because Windows alone code does not work at all)
Using Ffmpeg/Youtube-dl/Sed together
It works on its own :

    


    ffmpeg $( youtube-dl -f bestvideo+bestaudio --youtube-skip-dash-manifest -g https://www.youtube.com/watch?v=zSyNOO_gvUY | sed "s/.*/-ss 04:09 -to 04:15 -i &/") -map 0:v -map 1:a -c:v libx264 -c:a aac name.mp4

    


    Bash starts as : :/mnt/c/Users/Machine$

    


    Fallowing just few of many problems I tried to figure out for this :

    


    should I use / or \ to "subfolder"

    


    Start from / or C or Desktop etc.

    


    does -o need to be configured and if so how

    


    placements after Youtube-dl or in the ending by keeping name.mp4 or not, or changing it to
'-o %(title)s.%(ext)s' (title change needed as well thought)

    


    help.

    


  • ffmpeg time unit explanation and av_seek_frame method

    3 septembre 2013, par user325320

    What does time_base mean in ffmpeg ? document(here) says it is "frames per second".
    and I see in a real example that :

    AVFormatContext->streams[video_index]->time_base == 1 / 30000

    But video's AVCodecContext->time_base == 1001 / 60000

    This makes me quite confused, and I don't understand them.

    The second question is about av_seek_frame method.
    If seeking via time stamp (last parameter is AVSEEK_FLAG_BACKWARD or 0),
    the seek is started from current position read by av_seek_frame ?
    or from the start of the file ? or from the start position of decoding after last av_seek_frame call ?

  • Green pixelated issue when applying -vf flag to ffpmeg hls transcoding

    13 octobre 2023, par The Mask

    I'm trying to create chunks of multiple bitrates to play them smoothly across various devices and bandwidth.
But the ffmpeg command output is creating green pixelated video. If I remove the -vf flag then the issue dissapears.

    


    Resolutions are 720p,480p,360p.

    


    FFMpeg cmd for 720p :

    


    ffmpeg -i input.mp4 -force_key_frames expr:gte(t,n_forced*2) -vf "scale=720:-2,format=yuv420p" -c:v libx264 -b:v 1000k -preset medium -profile:v main -sc_threshold 0 -f hls -hls_time 5 -hls_playlist_type vod -hls_segment_type fmp4 -hls_segment_filename file_%03d.m4s -y file.m3u8


    


    This is only happening in the case of fmp4 and not with .ts file.pixelated video