Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (108)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9647)

  • Ffmpeg won't copy excerpt of video correctly

    5 mai 2022, par JR Jr.

    I am using a DOS batch to automate and copy excerpts of various high definition videos (mkv's with more than 1GB each).
The script is very convenient and runs fast and fine, but Ffmpeg is not doing its job correctly (it seems Murphy's law is inexorably enthralled into technology, things never come easy, which is why I love and hate it).

    


    Anyway, to cut a long story short, each time the batch job runs, a code like below is executed (pardon me the indiscrete folder name, it's about the 90's TV show, it's not porn !).

    


    call "C:\ffmpeg\bin\ffmpeg.exe" -y -i "D:\100\Sexo\S01\SATC - S01E03 - Bay of Married Pigs.mkv" -ss 00:18:05 -to 00:19:15 -codec copy "002-SATC - S01E03 - Bay of Married Pigs-00_18_05-00_19_15.mp4"


    


    The problem is that the first 6 seconds or so of the resulting video has no video, only audio with a frozen image that only starts to move after about 6 seconds, which is a huge defect, not to mention very annoying (a big let down, after all my meticulous scripting work :(). And this happens for most of the files, except a few ones.

    


    Even though this is copying and changing the format from mkv to mp4, per another thread on this site (https://askubuntu.com/questions/396883/how-to-simply-convert-video-files-i-e-mkv-to-mp4), this is not re-encoding, so this is not the issue. Actually, the same problem occurs even if I don't change the format from mkv to mp4.

    


    Even though I foresee a "there's no way to fix this", let me ask : is there a way to fix this ? Hopefully there is a way.

    


  • Adobe connect video : FLV to MP4 (export, convert)

    4 mai 2022, par Guillaume Chevalier

    I would like to convert an adobe connect video from .flv in the downloaded zip to .mp4. I have already done the steps explained in this question and answer, however I get .flv files organised like this inside the .zip :

    



    enter image description here

    



    Moreover, I know that ffmpeg can merge video and sound files together as well as concatenating resulting clips directly from the command-line which could be quite useful : https://www.labnol.org/internet/useful-ffmpeg-commands/28490/

    



    I can't ask the owner of the video to make it available as an .mp4 from within the adobe connect admin interface. Briefly, I would like to listen to those videos in x2 speed in VLC (just like what I do when listening to random math classes on YouTube - I put ON the x2 speed). The amount of time I would gain to watch adobe connect videos in x2 speed is MASSIVE.

    



    I think I am not the only one that would like to do this. There are a lot of questions on forums about downloading adobe connect videos, but the .flv format mixed with some .xml is generally a killer when the host does not make the videos properly available in .mp4.

    



    Dealing with the order of the .flv files is a puzzle. At least, I would not care to flush the chat away and leave some details like that behind, that would help to reconstruct the videos. Any scripts to automate the process would be useful.

    


  • How to rpt stream between two different Laptop [closed]

    19 février 2024, par Faruk

    I want make some test for rtp. I connected Ubuntu Laptop and Windows Laptop with ethernet cable. I want to stream from one computer and run it with VLC from the other.

    


    I did two test for this :

    


    First test(on Ubuntu)

    


      

    1. I streamed with this command : ffmpeg -re -i ~/Videos/test.mp3 -acodec pcm_s16be -ar 44100 -ac 2 -payload_type 10 -f rtp rtp://127.0.0.1:8080
    2. 


    3. I started VLC on Ubuntu and I enter rtp://127.0.0.1:8080 to Open Network Stream
    4. 


    


    This worked.

    


    Second Test

    


      

    1. I connected two Laptops via ethernet cable. Main laptop is Ubuntu and the other one windows.
    2. 


    3. Windows laptop IP address is : 10.42.0.167 (I tested internet and windows laptop can connect to internet)
    4. 


    5. I streamed with this command : ffmpeg -re -i ~/Videos/test.mp3 -acodec pcm_s16be -ar 44100 -ac 2 -payload_type 10 -f rtp rtp://10.42.0.167:8080
    6. 


    7. I checked data on Ubuntu with Wireshark and data is going. I did this test on Windows laptop and data is coming.
    8. 


    9. I started VLC on Windows laptop and I enter rtp://10.42.0.167:8080 to Open Network Stream but VLC can nor play stream audio.
    10. 


    


    What is the reason why the stream can not play on VLC that a Windows laptop even though data is received ?

    


    How can I achieve this ?

    


    Thanks.